import * as React from "react"; import * as Constants from "~/common/constants"; import * as SVG from "~/common/svg"; import * as Actions from "~/common/actions"; import * as Strings from "~/common/strings"; import * as Window from "~/common/window"; import * as Validations from "~/common/validations"; import MiniSearch from "minisearch"; import SlateMediaObjectPreview from "~/components/core/SlateMediaObjectPreview"; import { css } from "@emotion/react"; import { LoaderSpinner } from "~/components/system/components/Loaders"; import { Boundary } from "~/components/system/components/fragments/Boundary"; import { PopoverNavigation } from "~/components/system/components/PopoverNavigation"; import { FileTypeIcon } from "~/components/core/FileTypeIcon"; const STYLES_MOBILE_HIDDEN = css` @media (max-width: ${Constants.sizes.mobile}px) { display: none; } `; const STYLES_BACKGROUND = css` position: fixed; left: 0; right: 0; bottom: 0; top: 0; width: 100%; height: 100%; background-color: rgba(223, 223, 223, 0.3); -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px); z-index: ${Constants.zindex.modal}; `; const STYLES_ICON_SQUARE = css` height: 48px; width: 48px; border-radius: 4px; border: 1px solid ${Constants.system.foreground}; background-color: ${Constants.system.white}; color: #bfbfbf; display: flex; align-items: center; justify-content: center; `; const STYLES_CONTAINER = css` width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; `; const STYLES_MODAL = css` position: relative; display: inline-flex; padding: 24px; border-radius: 4px; background-color: ${Constants.system.white}; box-shadow: 0 12px 48px 0px rgba(178, 178, 178, 0.3); width: 95vw; max-width: 800px; height: 85vh; max-height: 504px; `; const STYLES_PROFILE_PREVIEW = css` background-color: ${Constants.system.foreground}; background-size: cover; background-position: 50% 50%; height: 48px; width: 48px; border-radius: 4px; `; const UserEntry = ({ user }) => { return (
{user.data.name ? (
{user.data.name}
@{user.username}
) : (
@{user.username}
)}
); }; const STYLES_PROFILE_IMAGE = css` background-color: ${Constants.system.foreground}; background-size: cover; background-position: 50% 50%; flex-shrink: 0; height: 182px; width: 182px; margin-bottom: 12px; border-radius: 4px; `; const UserPreview = ({ user }) => { return (
{user.data.name ?
{user.data.name}
: null}
@{user.username}
{user.data.slates ? (
{user.data.slates.length} Slate{user.data.slates.length === 1 ? "" : "s"}
) : null}
); }; const STYLES_ENTRY = css` padding: 4px 0px; `; const STYLES_ENTRY_CONTAINER = css` display: grid; grid-template-columns: 62px minmax(0, 1fr); flex-direction: row; align-items: center; `; const STYLES_TEXT_ROWS = css` display: flex; flex-direction: column; `; const STYLES_TITLE = css` font-family: ${Constants.font.medium}; font-size: ${Constants.typescale.lvl1}; color: ${Constants.system.textGray}; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; word-wrap: break-word; word-break: break-all; `; const STYLES_SUBTITLE = css` font-size: ${Constants.typescale.lvlN1}; color: ${Constants.system.textGrayLight}; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; word-wrap: break-word; word-break: break-all; `; const SlateEntry = ({ slate, user }) => { return (
{slate.data.name || slate.slatename}
{user ?
{user.data.name || `@${user.username}`}
: null}
); }; const STYLES_PREVIEW_IMAGE = css` margin: 0 auto; height: 182px; width: 182px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; `; const STYLES_PREVIEW_TEXT = css` font-family: ${Constants.font.medium}; font-size: ${Constants.typescale.lvlN1}; color: ${Constants.system.textGray}; margin: 4px 16px; word-break: break-word; `; const STYLES_EMPTY_SLATE_PREVIEW = css` height: 182px; width: 182px; display: flex; align-items: center; justify-content: center; border: 1px solid ${Constants.system.bgGray}; `; const SlatePreview = ({ slate, user }) => { let preview; for (let obj of slate.data.objects) { if (obj.type && Validations.isPreviewableImage(obj.type)) { preview = obj; break; } } if (!slate && slate.data.objects && slate.data.objects.length) { preview = slate.data.objects[0]; } return (
{preview ? ( ) : (
)}
{user ? (
Created by: {user.data.name || `@${user.username}`}
) : null}
{slate.data.objects.length} File{slate.data.objects.length === 1 ? "" : "s"}
); }; const FileEntry = ({ file }) => { return (
{file.title || file.name || file.file}
{file.file ? (
{Strings.getFileExtension(file.file)}
) : file.name ? (
{Strings.getFileExtension(file.name)}
) : null}
); }; const FilePreview = ({ file, slate, user, viewerId }) => { return (
{user ? (
Owner: {user.data.name || `@${user.username}`}
) : null} {slate ? (
Slate: {slate.data.name || slate.slatename}
) : user?.id === viewerId ? (
In your files
) : null}
); }; const STYLES_DROPDOWN_CONTAINER = css` box-sizing: border-box; z-index: ${Constants.zindex.modal}; position: relative; width: 100%; `; const STYLES_DROPDOWN = css` box-sizing: border-box; display: flex; flex-direction: column; overflow: hidden; width: 50%; scrollbar-width: none; padding-bottom: 8px; height: calc(100% - 144px); overflow-y: scroll; ::-webkit-scrollbar { display: none; } @media (max-width: ${Constants.sizes.mobile}px) { width: 100%; } `; const STYLES_DROPDOWN_ITEM = css` box-sizing: border-box; margin-bottom: 8px; padding: 0 4px; border-radius: 4px; cursor: pointer; position: relative; `; const STYLES_INPUT = css` font-family: ${Constants.font.medium}; -webkit-appearance: none; width: 100%; height: 56px; background: ${Constants.system.bgGrayLight}; color: ${Constants.system.textGray}; display: flex; font-size: 14px; align-items: center; justify-content: flex-start; outline: 0; border: 0; box-sizing: border-box; transition: 200ms ease all; padding: 0 40px 0 0; text-overflow: ellipsis; white-space: nowrap; border-radius: 0 2px 2px 0; margin-bottom: 8px; letter-spacing: -0.1px; ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ color: ${Constants.system.textGrayLight}; opacity: 1; /* Firefox */ } :-ms-input-placeholder { /* Internet Explorer 10-11 */ color: ${Constants.system.textGrayLight}; } ::-ms-input-placeholder { /* Microsoft Edge */ color: ${Constants.system.textGrayLight}; } `; const STYLES_LOADER = css` width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; `; const STYLES_RETURN = css` position: absolute; right: 16px; top: 20px; color: ${Constants.system.textGrayLight}; font-size: ${Constants.typescale.lvlN1}; display: flex; align-items: center; `; const STYLES_FILTER_BUTTON = css` padding: 11px; border-radius: 4px; border: 1px solid ${Constants.system.bgGray}; color: ${Constants.system.textGray}; margin-right: 8px; display: flex; align-items: center; font-size: ${Constants.typescale.lvlN1}; cursor: pointer; letter-spacing: -0.1px; `; const STYLES_PREVIEW_PANEL = css` width: 50%; height: calc(100% - 120px); position: absolute; bottom: 0px; right: 0px; display: flex; align-items: center; justify-content: center; text-align: center; cursor: pointer; @media (max-width: ${Constants.sizes.mobile}px) { display: none; } `; const STYLES_BOTTOM_BUTTONS = css` color: ${Constants.system.textGrayLight}; font-family: ${Constants.font.medium}; font-size: ${Constants.typescale.lvlN1}; letter-spacing: -0.1px; position: absolute; bottom: 16px; left: 24px; `; const STYLES_INLINE_TAG_CONTAINER = css` height: 56px; background: ${Constants.system.bgGrayLight}; display: flex; align-items: center; margin-bottom: 8px; padding: 8px; border-radius: 2px 0 0 2px; `; const STYLES_INLINE_TAG = css` font-family: ${Constants.font.medium}; color: ${Constants.system.textGray}; font-size: 14px; display: flex; align-items: center; background: ${Constants.system.white}; height: 100%; padding: 0px 10px; letter-spacing: -0.1px; `; const STYLES_DISMISS_BOX = css` position: absolute; right: 12px; top: 16px; padding: 2px; cursor: pointer; color: ${Constants.system.textGray}; outline: 0; `; export class SearchModal extends React.Component { _input; _optionRoot; initialized = false; state = { modal: false, loading: true, defaultResults: [], results: [], inputValue: "", typeFilter: null, scopeFilter: null, selectedIndex: 0, }; componentDidMount = () => { window.addEventListener("show-search", this._handleShow); window.addEventListener("hide-search", this._handleHide); }; componentWillUnmount = () => { window.removeEventListener("show-search", this._handleShow); window.removeEventListener("hide-search", this._handleHide); this._handleHide(); }; _handleShow = async () => { this.setState({ modal: true }); await this.fillLocalDirectory(); this.setState({ loading: false }); if (!this.initialized) { await this.initializeSearch(); } this._input.select(); window.addEventListener("keydown", this._handleDocumentKeydown); }; _handleHide = () => { window.removeEventListener("keydown", this._handleDocumentKeydown); this.setState({ modal: false }); }; initializeSearch = async () => { this.debounceInstance = Window.debounce(() => { this._handleSearch(); }, 500); let defaultResults = this.props.viewer.slates; defaultResults = defaultResults.map((slate) => { return { id: slate.id, type: "SLATE", data: { slate: slate }, component: , preview: , }; }); this.setState({ defaultResults }); let networkIds = []; let slateIds = []; for (let sub of this.props.viewer.subscriptions) { if (sub.target_user_id) { networkIds.push(sub.target_user_id); } else if (sub.target_slate_id) { slateIds.push(sub.target_slate_id); } } // for (let sub of this.props.viewer.trusted) { // if (sub.target_user_id) { // networkIds.push(sub.target_user_id); // } // } // for (let sub of this.props.viewer.pendingTrusted) { // if (sub.owner_user_id) { // networkIds.push(sub.owner_user_id); // } // } this.networkIds = networkIds; this.slateIds = slateIds; }; fillLocalDirectory = () => { this.localSearch = new MiniSearch({ fields: ["name", "title"], storeFields: ["type", "data", "id"], extractField: (entry, fieldName) => { return fieldName.split(".").reduce((doc, key) => doc && doc[key], entry); }, searchOptions: { fuzzy: 0.15, }, }); let files = this.props.viewer.library[0].children.map((file, i) => { return { type: "DATA_FILE", id: file.id, name: file.title, title: file.file, data: { file: { ...file, url: Strings.getCIDGatewayURL(file.cid), }, }, }; }); this.localSearch.addAll(files); let privateSlates = this.props.viewer.slates.filter((slate) => !slate.data.public); let privateFiles = []; for (let slate of privateSlates) { privateFiles.push( ...slate.data.objects.map((file, i) => { return { type: "FILE", id: `${file.id}-${slate.id}`, name: file.name, title: file.title, data: { file, slate, }, }; }) ); } privateSlates = privateSlates.map((slate) => { return { ...slate, name: slate.slatename, title: slate.data.name, type: "SLATE", }; }); this.localSearch.addAll(privateSlates); this.localSearch.addAll(privateFiles); }; _handleDocumentKeydown = (e) => { let results; if (this.state.results && this.state.results.length) { results = this.state.results; } else if (!this.state.inputValue || !this.state.inputValue.length) { results = this.state.defaultResults; } else { return; } if (e.keyCode === 27) { this._handleHide(); e.preventDefault(); } else if (e.keyCode === 8) { if (this._input.selectionStart === 0) { this.setState({ typeFilter: null }); } } else if (e.keyCode === 9) { this._handleHide(); } else if (e.keyCode === 40) { if (results.length) { let index; if (this.state.selectedIndex < results.length - 1) { index = this.state.selectedIndex + 1; } else { index = 0; } let listElem = this._optionRoot.children[index]; let elemRect = listElem.getBoundingClientRect(); let rootRect = this._optionRoot.getBoundingClientRect(); if (elemRect.bottom > rootRect.bottom) { this._optionRoot.scrollTop = listElem.offsetTop + listElem.offsetHeight - this._optionRoot.offsetHeight - this._optionRoot.offsetTop; } else if (elemRect.top < rootRect.top) { this._optionRoot.scrollTop = listElem.offsetTop - this._optionRoot.offsetTop; } this.setState({ selectedIndex: index }); } e.preventDefault(); } else if (e.keyCode === 38) { if (results.length) { let index; if (this.state.selectedIndex > 0) { index = this.state.selectedIndex - 1; } else { index = results.length - 1; } let listElem = this._optionRoot.children[index]; let elemRect = listElem.getBoundingClientRect(); let rootRect = this._optionRoot.getBoundingClientRect(); if (elemRect.top < rootRect.top) { this._optionRoot.scrollTop = listElem.offsetTop - this._optionRoot.offsetTop; } else if (elemRect.bottom > rootRect.bottom) { this._optionRoot.scrollTop = listElem.offsetTop + listElem.offsetHeight - this._optionRoot.offsetHeight - this._optionRoot.offsetTop; } this.setState({ selectedIndex: index }); } e.preventDefault(); } else if (e.keyCode === 13) { if (results.length > this.state.selectedIndex && this.state.selectedIndex >= 0) { this._handleSelect(results[this.state.selectedIndex]); } e.preventDefault(); } }; _handleChange = (e) => { this.debounceInstance(e); this.setState({ inputValue: e.target.value }); }; _handleSearch = async (refilter = false) => { let searchResults = []; let results = []; let ids = new Set(); if (this.state.typeFilter !== "USER") { let filter; if (this.state.typeFilter === "FILE") { filter = { filter: (result) => { return result.type === "FILE" || result.type === "DATA_FILE"; }, }; } else if (this.state.typeFilter === "SLATE") { filter = { filter: (result) => result.type === "SLATE", }; } if (filter) { searchResults.push(this.localSearch.search(this.state.inputValue, filter)); } else { searchResults.push(this.localSearch.search(this.state.inputValue)); } for (let result of searchResults) { ids.add(result.id); } let autofill = this.localSearch.autoSuggest(this.state.inputValue); let count = 0; for (let i = 0; i < autofill.length; i++) { if (count >= 15) break; let results; if (filter) { results = this.localSearch.search(autofill[i].suggestion, filter); } else { results = this.localSearch.search(autofill[i].suggestion); } if (results && results.length && !ids.has(results[0].id)) { count += 1; ids.add(results[0].id); searchResults.push(results[0]); } } for (let item of searchResults) { if (item.type === "SLATE") { results.push({ id: slate.id, type: item.type, data: { slate: item }, component: , preview: , }); } else if (item.type === "FILE" || item.type === "DATA_FILE") { results.push({ id: item.data.file.id, type: item.type, data: { file: item }, component: , preview: ( ), }); } } } let res; if (!refilter) { let response = await Actions.search({ resourceURI: this.props.resourceURI, query: this.state.inputValue, type: this.state.typeFilter, }); this.setState({ unfilteredResults: response.data.results }); res = response.data.results; } else { res = this.state.unfilteredResults; } searchResults = this.processResults(res); for (let res of searchResults) { if (res.type === "USER") { let id = res.user.id; if (ids.has(id)) continue; ids.add(id); results.push({ id, type: res.type, data: res, component: , preview: , }); } else if (res.type === "SLATE") { let id = res.user.id; if (ids.has(id)) continue; ids.add(id); results.push({ id, type: res.type, data: res, component: , preview: , }); } else if (res.type === "FILE") { let id = res.user.id; if (ids.has(id)) continue; ids.add(id); results.push({ id, type: res.type, data: res, component: , preview: ( ), }); } } this.setState({ results, selectedIndex: 0 }); if (this._optionRoot) { this._optionRoot.scrollTop = 0; } }; processResults = (searchResults) => { let results = searchResults; if (this.state.scopeFilter === "MY") { results = results.filter((res) => { if (res.ownerId !== this.props.viewer.id) return false; return true; }); } else if (this.state.scopeFilter === "NETWORK" && this.networkIds && this.networkIds.length) { results = results.filter((res) => { if ( (res.type === "USER" && this.networkIds.includes(res.id)) || (res.type === "SLATE" && this.slateIds.includes(res.id)) || this.networkIds.includes(res.ownerId) ) { return true; } return false; }); } if (this.state.scopeFilter !== "MY") { results = results.sort((a, b) => { if (this.props.viewer.id && this.state.scopeFilter !== "MY") { if (a.ownerId === this.props.viewer.id && b.ownerId !== this.props.viewer.id) { return -1; } else if (a.ownerId !== this.props.viewer.id && b.ownerId === this.props.viewer.id) { return 1; } } if ( this.networkIds && this.state.scopeFilter !== "NETWORK" && this.state.scopeFilter !== "MY" ) { let aInNetwork = (a.type === "USER" && this.networkIds.includes(a.user.id)) || (a.type === "SLATE" && this.slateIds.includes(a.slate.id)) || this.networkIds.includes(a.ownerId); let bInNetwork = (b.type === "USER" && this.networkIds.includes(b.user.id)) || (b.type === "SLATE" && this.slateIds.includes(b.slate.id)) || this.networkIds.includes(b.ownerId); if (aInNetwork && !bInNetwork) { return -1; } else if (!aInNetwork && bInNetwork) { return 1; } } return 0; }); } return results; }; _handleSelect = async (res) => { if (res.type === "SLATE") { this.props.onAction({ type: "NAVIGATE", value: "NAV_SLATE", data: res.data.slate, }); } if (res.type === "USER") { this.props.onAction({ type: "NAVIGATE", value: "NAV_PROFILE", data: res.data.user, }); } if (res.type === "DATA_FILE") { await this.props.onAction({ type: "NAVIGATE", value: "NAV_DATA", fileId: res.data.file.id, }); } if (res.type === "FILE") { await this.props.onAction({ type: "NAVIGATE", value: "NAV_SLATE", data: res.data.slate, fileId: res.data.file.id, }); } this._handleHide(); }; _handleRedirect = async (destination) => { if (destination === "FMU") { let isProd = window.location.hostname.includes("slate.host"); this._handleSelect({ type: "FILE", data: { file: { id: "rick-roll" }, slate: { id: isProd ? "01edcede-53c9-46b3-ac63-8f8479e10bcf" : "60d199e7-6bf5-4994-94e8-b17547c64449", data: { objects: [ { id: "rick-roll", url: "https://slate.textile.io/ipfs/bafybeifcxjvbad4lgpnbwff2dafufmnlylylmku4qoqtlkwgidupwi6f3a", ownerId: "owner", name: "Never gonna give you up", title: "never-gonna-give-you-up.mp4", type: "video/mp4", }, ], }, ownerId: "owner", }, }, }); } this.props.onAction({ type: "SIDEBAR", value: destination, }); this._handleHide(); }; _handleFilterType = async (type) => { if (this._input) { this._input.focus(); } this.setState({ typeFilter: this.state.typeFilter === type ? null : type }, () => { this._handleSearch(); }); }; _handleFilterScope = async (scope) => { if (this._input) { this._input.focus(); } this.setState({ scopeFilter: scope, filterTooltip: false }); if (this.state.inputValue) { this._handleSearch(true); } }; _handleClearAll = () => { if (!this.state.inputValue || !this.state.inputValue.length) { this._handleHide(); } if (this._optionRoot) { this._optionRoot.scrollTop = 0; } if (this._input) { this._input.focus(); } this.setState({ inputValue: "", results: [], selectedIndex: 0, scopeFilter: null, typeFilter: null, }); }; render() { let selectedIndex = this.state.selectedIndex; let results = this.state.inputValue && this.state.inputValue.length ? this.state.results : this.state.defaultResults; return (
{this.state.loading ? (
) : (
{this.state.typeFilter ? (
{this.state.typeFilter === "SLATE" ? "Slates:" : this.state.typeFilter === "USER" ? "Users:" : this.state.typeFilter === "FILE" ? "Files:" : "Tags:"}
) : null}
{ this._input = c; }} />
this._handleFilterType("SLATE")} > Search slates
this._handleFilterType("USER")} > Search users
this._handleFilterType("FILE")} > Search files
this.setState({ filterTooltip: !this.state.filterTooltip }) } >
{this.state.filterTooltip ? ( this.setState({ filterTooltip: false })} > All ), onClick: () => this._handleFilterScope(null), }, { text: ( My stuff ), onClick: () => this._handleFilterScope("MY"), }, { text: ( My network ), onClick: () => this._handleFilterScope("NETWORK"), }, ]} /> ) : null}
{ this._optionRoot = c; }} css={STYLES_DROPDOWN} > {results.map((each, i) => (
{ selectedIndex === i || this.props.mobile ? this._handleSelect(each) : this.setState({ selectedIndex: i }); }} > {each.component} {selectedIndex === i ? (
Return
) : null}
))}
{results && results.length && selectedIndex < results.length && selectedIndex >= 0 ? (
{ if (selectedIndex >= 0 && selectedIndex < results.length) { this._handleSelect(results[selectedIndex]); } }} > {results[selectedIndex].preview}
) : null}
)}
this._handleRedirect("SIDEBAR_HELP")} > Contact Us this._handleRedirect("SIDEBAR_FAQ")} > FAQ this._handleRedirect("FMU")}> I'm Feeling Lucky
); } }