Page MenuHomePhabricator

D3825.id11830.diff
No OneTemporary

D3825.id11830.diff

diff --git a/web/modals/threads/thread-settings-modal.react.js b/web/modals/threads/thread-settings-modal.react.js
--- a/web/modals/threads/thread-settings-modal.react.js
+++ b/web/modals/threads/thread-settings-modal.react.js
@@ -13,22 +13,16 @@
import { createLoadingStatusSelector } from 'lib/selectors/loading-selectors';
import { threadInfoSelector } from 'lib/selectors/thread-selectors';
import { threadHasPermission, robotextName } from 'lib/shared/thread-utils';
-import { type SetState } from 'lib/types/hook-types.js';
import {
type ThreadInfo,
threadTypes,
assertThreadType,
- type ChangeThreadSettingsPayload,
- type UpdateThreadRequest,
- type LeaveThreadPayload,
threadPermissions,
type ThreadChanges,
} from 'lib/types/thread-types';
-import type { UserInfos } from 'lib/types/user-types';
import {
useDispatchActionPromise,
useServerCall,
- type DispatchActionPromise,
} from 'lib/utils/action-utils';
import { firstLine } from 'lib/utils/string-utils';
@@ -70,69 +64,6 @@
type BaseProps = {
+threadID: string,
};
-type Props = {
- ...BaseProps,
- +threadInfo: ThreadInfo,
- +changeInProgress: boolean,
- +viewerID: ?string,
- +userInfos: UserInfos,
- +dispatchActionPromise: DispatchActionPromise,
- +deleteThread: (
- threadID: string,
- currentAccountPassword: string,
- ) => Promise<LeaveThreadPayload>,
- +changeThreadSettings: (
- update: UpdateThreadRequest,
- ) => Promise<ChangeThreadSettingsPayload>,
- +onClose: () => void,
- +errorMessage: string,
- +setErrorMessage: SetState<string>,
- +accountPassword: string,
- +setAccountPassword: SetState<string>,
- +currentTabType: TabType,
- +setCurrentTabType: SetState<TabType>,
- +queuedChanges: ThreadChanges,
- +setQueuedChanges: SetState<ThreadChanges>,
- +namePlaceholder: string,
- +changeQueued: boolean,
- +onChangeName: (event: SyntheticEvent<HTMLInputElement>) => void,
- +onChangeDescription: (event: SyntheticEvent<HTMLTextAreaElement>) => void,
- +onChangeColor: (color: string) => void,
- +onChangeThreadType: (event: SyntheticEvent<HTMLInputElement>) => void,
- +onChangeAccountPassword: (event: SyntheticEvent<HTMLInputElement>) => void,
- +hasPermissionForTab: (thread: ThreadInfo, tab: TabType) => boolean,
- +deleteThreadAction: () => Promise<LeaveThreadPayload>,
- +onDelete: (event: SyntheticEvent<HTMLElement>) => void,
- +changeThreadSettingsAction: () => Promise<ChangeThreadSettingsPayload>,
- +onSubmit: (event: SyntheticEvent<HTMLElement>) => void,
- +mainContent: ?React.Node,
- +buttons: ?React.Node,
- +tabs: ?React.Node,
-};
-class ThreadSettingsModal extends React.PureComponent<Props> {
- constructor(props: Props) {
- super(props);
- }
-
- render() {
- return (
- <Modal name="Thread settings" onClose={this.props.onClose}>
- <ul className={css.tab_panel}>{this.props.tabs}</ul>
- <div className={css.modal_body}>
- <form method="POST">
- {this.props.mainContent}
- <div className={css.form_footer}>
- {this.props.buttons}
- <div className={css.modal_form_error}>
- {this.props.errorMessage}
- </div>
- </div>
- </form>
- </div>
- </Modal>
- );
- }
-}
const deleteThreadLoadingStatusSelector = createLoadingStatusSelector(
deleteThreadActionTypes,
@@ -459,40 +390,18 @@
}
return (
- <ThreadSettingsModal
- {...props}
- threadInfo={threadInfo}
- changeInProgress={changeInProgress}
- viewerID={viewerID}
- userInfos={userInfos}
- deleteThread={callDeleteThread}
- changeThreadSettings={callChangeThreadSettings}
- dispatchActionPromise={dispatchActionPromise}
- onClose={modalContext.clearModal}
- errorMessage={errorMessage}
- setErrorMessage={setErrorMessage}
- accountPassword={accountPassword}
- setAccountPassword={setAccountPassword}
- currentTabType={currentTabType}
- setCurrentTabType={setCurrentTabType}
- queuedChanges={queuedChanges}
- setQueuedChanges={setQueuedChanges}
- namePlaceholder={namePlaceholder}
- changeQueued={changeQueued}
- onChangeName={onChangeName}
- onChangeDescription={onChangeDescription}
- onChangeColor={onChangeColor}
- onChangeThreadType={onChangeThreadType}
- onChangeAccountPassword={onChangeAccountPassword}
- hasPermissionForTab={hasPermissionForTab}
- deleteThreadAction={deleteThreadAction}
- onDelete={onDelete}
- changeThreadSettingsAction={changeThreadSettingsAction}
- onSubmit={onSubmit}
- mainContent={mainContent}
- buttons={buttons}
- tabs={tabs}
- />
+ <Modal name="Thread settings" onClose={modalContext.clearModal}>
+ <ul className={css.tab_panel}>{tabs}</ul>
+ <div className={css.modal_body}>
+ <form method="POST">
+ {mainContent}
+ <div className={css.form_footer}>
+ {buttons}
+ <div className={css.modal_form_error}>{errorMessage}</div>
+ </div>
+ </form>
+ </div>
+ </Modal>
);
},
);

File Metadata

Mime Type
text/plain
Expires
Fri, Nov 8, 7:49 PM (20 h, 59 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2445247
Default Alt Text
D3825.id11830.diff (5 KB)

Event Timeline