diff --git a/web/modals/threads/thread-picker-modal.css b/web/modals/threads/thread-picker-modal.css new file mode 100644 index 000000000..8c231a4a0 --- /dev/null +++ b/web/modals/threads/thread-picker-modal.css @@ -0,0 +1,41 @@ +div.container { + display: flex; + flex-direction: column; + overflow: hidden; + margin: 16px; +} + +div.contentContainer { + overflow: scroll; + height: 448px; +} + +div.threadPickerOptionContainer { + display: flex; + align-items: center; + padding: 12px 16px; + cursor: pointer; +} + +div.threadPickerOptionContainer:hover { + background-color: var(--thread-hover-bg); + border-radius: 8px; +} + +div.threadSplotch { + min-width: 40px; + height: 40px; + border-radius: 10px; +} + +div.threadNameText { + color: var(--shades-white-100); + margin-left: 16px; +} + +div.noResultsText { + text-align: center; + color: var(--shades-white-100); + margin-top: 24px; + font-weight: 500; +} diff --git a/web/modals/threads/thread-picker-modal.react.js b/web/modals/threads/thread-picker-modal.react.js new file mode 100644 index 000000000..fb60aac0c --- /dev/null +++ b/web/modals/threads/thread-picker-modal.react.js @@ -0,0 +1,134 @@ +// @flow + +import invariant from 'invariant'; +import * as React from 'react'; +import { createSelector } from 'reselect'; + +import { threadSearchIndex } from 'lib/selectors/nav-selectors'; +import { onScreenEntryEditableThreadInfos } from 'lib/selectors/thread-selectors'; +import type { ThreadInfo } from 'lib/types/thread-types'; + +import Search from '../../components/search.react'; +import { useSelector } from '../../redux/redux-utils'; +import Modal, { type ModalOverridableProps } from '../modal.react'; +import css from './thread-picker-modal.css'; + +type OptionProps = { + +threadInfo: ThreadInfo, + +createNewEntry: (threadID: string) => void, + +onCloseModal: () => void, +}; + +function ThreadPickerOption(props: OptionProps) { + const { threadInfo, createNewEntry, onCloseModal } = props; + + const onClickThreadOption = React.useCallback(() => { + createNewEntry(threadInfo.id); + onCloseModal(); + }, [threadInfo.id, createNewEntry, onCloseModal]); + + const splotchColorStyle = React.useMemo( + () => ({ + backgroundColor: `#${threadInfo.color}`, + }), + [threadInfo.color], + ); + + return ( +