2020-08-31 21:19:46 +03:00
|
|
|
import * as React from "react";
|
|
|
|
import * as Constants from "~/common/constants";
|
|
|
|
import * as SVG from "~/common/svg";
|
|
|
|
import * as Actions from "~/common/actions";
|
2020-11-11 05:38:22 +03:00
|
|
|
import * as Strings from "~/common/strings";
|
2020-11-10 00:20:38 +03:00
|
|
|
import * as Window from "~/common/window";
|
2020-11-11 04:44:21 +03:00
|
|
|
import * as Validations from "~/common/validations";
|
2020-08-31 21:19:46 +03:00
|
|
|
|
|
|
|
import MiniSearch from "minisearch";
|
2020-11-10 00:20:38 +03:00
|
|
|
import SlateMediaObjectPreview from "~/components/core/SlateMediaObjectPreview";
|
2020-08-31 21:19:46 +03:00
|
|
|
|
2020-11-04 20:55:48 +03:00
|
|
|
import { css } from "@emotion/core";
|
2020-11-10 00:20:38 +03:00
|
|
|
import { LoaderSpinner } from "~/components/system/components/Loaders";
|
2020-08-31 21:19:46 +03:00
|
|
|
import { dispatchCustomEvent } from "~/common/custom-events";
|
2020-11-10 00:20:38 +03:00
|
|
|
import { Boundary } from "~/components/system/components/fragments/Boundary";
|
|
|
|
import { PopoverNavigation } from "~/components/system/components/PopoverNavigation";
|
|
|
|
import { FileTypeIcon } from "~/components/core/FileTypeIcon";
|
2020-08-31 21:19:46 +03:00
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
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%;
|
|
|
|
${"" /* display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center; */}
|
|
|
|
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;
|
2020-08-31 21:19:46 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
`;
|
|
|
|
|
2020-09-15 00:29:41 +03:00
|
|
|
const STYLES_CONTAINER = css`
|
2020-11-10 00:20:38 +03:00
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
2020-09-15 00:29:41 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
`;
|
2020-08-31 21:19:46 +03:00
|
|
|
const STYLES_MODAL = css`
|
2020-09-14 08:22:19 +03:00
|
|
|
position: relative;
|
2020-11-10 00:20:38 +03:00
|
|
|
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);
|
2020-08-31 21:19:46 +03:00
|
|
|
width: 95vw;
|
2020-11-10 00:20:38 +03:00
|
|
|
max-width: 800px;
|
|
|
|
height: 85vh;
|
|
|
|
max-height: 504px;
|
2020-08-31 21:19:46 +03:00
|
|
|
`;
|
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
const STYLES_PROFILE_PREVIEW = css`
|
2020-09-10 06:28:48 +03:00
|
|
|
background-color: ${Constants.system.foreground};
|
2020-08-31 21:19:46 +03:00
|
|
|
background-size: cover;
|
|
|
|
background-position: 50% 50%;
|
2020-11-10 00:20:38 +03:00
|
|
|
height: 48px;
|
|
|
|
width: 48px;
|
|
|
|
border-radius: 4px;
|
2020-08-31 21:19:46 +03:00
|
|
|
`;
|
|
|
|
|
|
|
|
const UserEntry = ({ item }) => {
|
|
|
|
return (
|
|
|
|
<div css={STYLES_ENTRY}>
|
2020-11-10 00:20:38 +03:00
|
|
|
<div css={STYLES_ENTRY_CONTAINER}>
|
|
|
|
<div style={{ backgroundImage: `url(${item.data.photo})` }} css={STYLES_PROFILE_PREVIEW} />
|
|
|
|
<div css={STYLES_TEXT_ROWS}>
|
|
|
|
{item.data.name ? (
|
|
|
|
<React.Fragment>
|
|
|
|
<div css={STYLES_TITLE}>{item.data.name}</div>
|
|
|
|
<div css={STYLES_SUBTITLE}>@{item.username}</div>
|
|
|
|
</React.Fragment>
|
|
|
|
) : (
|
|
|
|
<div css={STYLES_TITLE}>@{item.username}</div>
|
|
|
|
)}
|
|
|
|
</div>
|
2020-08-31 21:19:46 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
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;
|
2020-11-11 04:44:21 +03:00
|
|
|
border-radius: 4px;
|
2020-11-10 00:20:38 +03:00
|
|
|
`;
|
|
|
|
|
|
|
|
const UserPreview = ({ item, viewer }) => {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<div css={STYLES_PROFILE_IMAGE} style={{ backgroundImage: `url('${item.data.photo}')` }} />
|
|
|
|
{item.data.name ? <div css={STYLES_PREVIEW_TEXT}>{item.data.name}</div> : null}
|
|
|
|
<div css={STYLES_PREVIEW_TEXT}>@{item.username}</div>
|
|
|
|
{item.data.slates ? (
|
|
|
|
<div css={STYLES_PREVIEW_TEXT}>
|
|
|
|
{item.data.slates.length} Slate{item.data.slates.length === 1 ? "" : "s"}
|
|
|
|
</div>
|
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2020-08-31 21:19:46 +03:00
|
|
|
const STYLES_ENTRY = css`
|
2020-11-10 00:20:38 +03:00
|
|
|
padding: 4px 0px;
|
2020-08-31 21:19:46 +03:00
|
|
|
`;
|
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
const STYLES_ENTRY_CONTAINER = css`
|
2020-08-31 21:19:46 +03:00
|
|
|
display: grid;
|
2020-11-10 00:20:38 +03:00
|
|
|
grid-template-columns: 62px minmax(0, 1fr);
|
|
|
|
flex-direction: row;
|
2020-08-31 21:19:46 +03:00
|
|
|
align-items: center;
|
|
|
|
`;
|
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
const STYLES_TEXT_ROWS = css`
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-08-31 21:19:46 +03:00
|
|
|
`;
|
|
|
|
|
2020-09-01 02:09:57 +03:00
|
|
|
const STYLES_TITLE = css`
|
2020-11-10 00:20:38 +03:00
|
|
|
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};
|
2020-09-01 02:09:57 +03:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2020-11-10 00:20:38 +03:00
|
|
|
word-wrap: break-word;
|
|
|
|
word-break: break-all;
|
2020-09-01 02:09:57 +03:00
|
|
|
`;
|
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
const SlateEntry = ({ item, viewer }) => {
|
2020-08-31 21:19:46 +03:00
|
|
|
return (
|
|
|
|
<div css={STYLES_ENTRY}>
|
2020-11-10 00:20:38 +03:00
|
|
|
<div css={STYLES_ENTRY_CONTAINER}>
|
|
|
|
<div css={STYLES_ICON_SQUARE}>
|
|
|
|
<SVG.Slate height="24px" />
|
|
|
|
</div>
|
|
|
|
<div css={STYLES_TEXT_ROWS}>
|
|
|
|
<div css={STYLES_TITLE}>{item.data.name || item.slatename}</div>
|
|
|
|
{viewer ? (
|
|
|
|
<div css={STYLES_SUBTITLE}>{item.data.objects.length} Files</div>
|
|
|
|
) : item.owner && (item.owner.username || item.owner.data.name) ? (
|
|
|
|
<div css={STYLES_SUBTITLE}>{item.owner.data.name || `@${item.owner.username}`}</div>
|
|
|
|
) : null}
|
2020-08-31 21:19:46 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-10 00:20:38 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
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 0;
|
|
|
|
`;
|
|
|
|
|
|
|
|
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 = ({ item, viewer }) => {
|
|
|
|
let preview;
|
|
|
|
for (let obj of item.data.objects) {
|
2020-11-11 04:44:21 +03:00
|
|
|
if (obj.type && Validations.isPreviewableImage(obj.type)) {
|
2020-11-10 00:20:38 +03:00
|
|
|
preview = obj;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!item && item.data.objects && item.data.objects.length) {
|
|
|
|
preview = item.data.objects[0];
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<div style={{ textAlign: "center" }}>
|
|
|
|
<div css={STYLES_PREVIEW_IMAGE}>
|
|
|
|
{preview ? (
|
|
|
|
<SlateMediaObjectPreview
|
|
|
|
blurhash={preview.blurhash}
|
|
|
|
url={preview.url.replace("https://undefined", "https://")}
|
|
|
|
title={preview.title || preview.name}
|
|
|
|
type={preview.type}
|
|
|
|
/>
|
|
|
|
) : (
|
|
|
|
<div css={STYLES_EMPTY_SLATE_PREVIEW}>
|
2020-11-11 04:44:21 +03:00
|
|
|
<SVG.Slate height="80px" style={{ color: "#bfbfbf" }} />
|
2020-11-10 00:20:38 +03:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
{viewer || item.owner ? (
|
|
|
|
<div css={STYLES_PREVIEW_TEXT}>
|
|
|
|
Created by:{" "}
|
|
|
|
{viewer
|
|
|
|
? viewer.data.name || `@${viewer.username}`
|
|
|
|
: item.owner.data.name || `@${item.owner.username}`}
|
2020-08-31 21:19:46 +03:00
|
|
|
</div>
|
|
|
|
) : null}
|
2020-11-10 00:20:38 +03:00
|
|
|
<div css={STYLES_PREVIEW_TEXT}>
|
|
|
|
{item.data.objects.length} File{item.data.objects.length === 1 ? "" : "s"}
|
|
|
|
</div>
|
2020-08-31 21:19:46 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
const FileEntry = ({ item, viewer }) => {
|
|
|
|
let file = item.data.file;
|
|
|
|
let slate = item.data.slate;
|
2020-08-31 21:19:46 +03:00
|
|
|
return (
|
|
|
|
<div css={STYLES_ENTRY}>
|
2020-11-10 00:20:38 +03:00
|
|
|
<div css={STYLES_ENTRY_CONTAINER}>
|
|
|
|
<div css={STYLES_ICON_SQUARE}>
|
|
|
|
<FileTypeIcon type={file.type} height="24px" />
|
2020-08-31 21:19:46 +03:00
|
|
|
</div>
|
2020-11-10 00:20:38 +03:00
|
|
|
<div css={STYLES_TEXT_ROWS}>
|
|
|
|
<div css={STYLES_TITLE}>{file.title || file.name || file.file}</div>
|
2020-11-11 04:44:21 +03:00
|
|
|
{file.file ? (
|
|
|
|
<div css={STYLES_SUBTITLE} style={{ textTransform: "uppercase" }}>
|
|
|
|
{Strings.getFileExtension(file.file)}
|
|
|
|
</div>
|
|
|
|
) : file.name ? (
|
|
|
|
<div css={STYLES_SUBTITLE} style={{ textTransform: "uppercase" }}>
|
|
|
|
{Strings.getFileExtension(file.name)}
|
|
|
|
</div>
|
2020-11-10 00:20:38 +03:00
|
|
|
) : null}
|
2020-09-01 02:09:57 +03:00
|
|
|
</div>
|
2020-08-31 21:19:46 +03:00
|
|
|
</div>
|
2020-11-10 00:20:38 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const FilePreview = ({ item, viewer }) => {
|
|
|
|
let file = item.data.file;
|
|
|
|
let slate = item.data.slate;
|
|
|
|
return (
|
|
|
|
<div style={{ textAlign: "center" }}>
|
|
|
|
<div css={STYLES_PREVIEW_IMAGE}>
|
|
|
|
<SlateMediaObjectPreview
|
2020-11-11 04:44:21 +03:00
|
|
|
previewPanel
|
2020-11-10 00:20:38 +03:00
|
|
|
blurhash={file.blurhash}
|
|
|
|
url={
|
|
|
|
file.url
|
|
|
|
? file.url.replace("https://undefined", "https://")
|
|
|
|
: file.cid
|
|
|
|
? Strings.getCIDGatewayURL(file.cid)
|
|
|
|
: Strings.getCIDGatewayURL(Strings.getCIDFromIPFS(file.ipfs))
|
|
|
|
}
|
|
|
|
title={file.title || file.name || file.file}
|
|
|
|
type={file.type}
|
|
|
|
/>
|
2020-08-31 21:19:46 +03:00
|
|
|
</div>
|
2020-11-10 00:20:38 +03:00
|
|
|
{viewer || (slate && slate.owner) ? (
|
|
|
|
<div css={STYLES_PREVIEW_TEXT}>
|
|
|
|
Owner:{" "}
|
|
|
|
{viewer
|
|
|
|
? viewer.data.name || `@${viewer.username}`
|
|
|
|
: slate.owner.data.name || `@${slate.owner.username}`}
|
|
|
|
</div>
|
|
|
|
) : null}
|
|
|
|
{slate ? (
|
|
|
|
<div css={STYLES_PREVIEW_TEXT}>Slate: {slate.data.name || slate.slatename}</div>
|
|
|
|
) : viewer ? (
|
|
|
|
<div css={STYLES_PREVIEW_TEXT}>In your files</div>
|
|
|
|
) : null}
|
2020-08-31 21:19:46 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
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`
|
2020-11-11 04:44:21 +03:00
|
|
|
font-family: ${Constants.font.medium};
|
2020-11-10 00:20:38 +03:00
|
|
|
-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;
|
2020-11-11 04:44:21 +03:00
|
|
|
padding: 0 16px 0 0;
|
2020-11-10 00:20:38 +03:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2020-11-11 04:44:21 +03:00
|
|
|
border-radius: 0 2px 2px 0;
|
2020-11-10 00:20:38 +03:00
|
|
|
margin-bottom: 8px;
|
2020-11-11 04:44:21 +03:00
|
|
|
letter-spacing: -0.1px;
|
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
::placeholder {
|
|
|
|
/* Chrome, Firefox, Opera, Safari 10.1+ */
|
2020-11-11 04:44:21 +03:00
|
|
|
color: ${Constants.system.textGrayLight};
|
2020-11-10 00:20:38 +03:00
|
|
|
opacity: 1; /* Firefox */
|
|
|
|
}
|
|
|
|
:-ms-input-placeholder {
|
|
|
|
/* Internet Explorer 10-11 */
|
2020-11-11 04:44:21 +03:00
|
|
|
color: ${Constants.system.textGrayLight};
|
2020-11-10 00:20:38 +03:00
|
|
|
}
|
|
|
|
::-ms-input-placeholder {
|
|
|
|
/* Microsoft Edge */
|
2020-11-11 04:44:21 +03:00
|
|
|
color: ${Constants.system.textGrayLight};
|
2020-11-10 00:20:38 +03:00
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
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;
|
|
|
|
`;
|
|
|
|
|
2020-11-11 04:44:21 +03:00
|
|
|
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;
|
|
|
|
`;
|
|
|
|
|
2020-08-31 21:19:46 +03:00
|
|
|
export class SearchModal extends React.Component {
|
2020-11-10 00:20:38 +03:00
|
|
|
_input;
|
|
|
|
_optionRoot;
|
|
|
|
initialized = false;
|
|
|
|
|
2020-08-31 21:19:46 +03:00
|
|
|
state = {
|
2020-11-10 00:20:38 +03:00
|
|
|
modal: false,
|
2020-08-31 21:19:46 +03:00
|
|
|
loading: true,
|
2020-11-10 00:20:38 +03:00
|
|
|
defaultResults: [],
|
2020-08-31 21:19:46 +03:00
|
|
|
results: [],
|
|
|
|
inputValue: "",
|
2020-11-10 00:20:38 +03:00
|
|
|
typeFilter: null,
|
|
|
|
scopeFilter: null,
|
|
|
|
selectedIndex: 0,
|
2020-08-31 21:19:46 +03:00
|
|
|
};
|
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
componentDidMount = () => {
|
|
|
|
window.addEventListener("show-search", this._handleShow);
|
|
|
|
window.addEventListener("hide-search", this._handleHide);
|
2020-08-31 21:19:46 +03:00
|
|
|
};
|
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
componentWillUnmount = () => {
|
|
|
|
window.removeEventListener("show-search", this._handleShow);
|
|
|
|
window.removeEventListener("hide-search", this._handleHide);
|
|
|
|
this._handleHide();
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleShow = async () => {
|
|
|
|
await this.setState({ modal: true });
|
|
|
|
await this.fillLocalDirectory();
|
|
|
|
await this.setState({ loading: false });
|
|
|
|
if (!this.initialized) {
|
|
|
|
await this.initializeSearch();
|
|
|
|
}
|
|
|
|
this._input.focus();
|
|
|
|
window.addEventListener("keydown", this._handleDocumentKeydown);
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleHide = () => {
|
|
|
|
window.removeEventListener("keydown", this._handleDocumentKeydown);
|
|
|
|
this.setState({ modal: false });
|
|
|
|
};
|
|
|
|
|
|
|
|
initializeSearch = async () => {
|
|
|
|
this._input.focus();
|
|
|
|
this.debounceInstance = Window.debounce(() => {
|
|
|
|
this._handleSearch();
|
|
|
|
}, 500);
|
|
|
|
let defaultResults = this.props.viewer.slates;
|
|
|
|
defaultResults = defaultResults.map((slate) => {
|
|
|
|
return {
|
|
|
|
value: {
|
|
|
|
type: "SLATE",
|
|
|
|
data: slate,
|
|
|
|
},
|
|
|
|
component: <SlateEntry item={slate} viewer={this.props.viewer} />,
|
|
|
|
preview: <SlatePreview item={slate} viewer={this.props.viewer} />,
|
|
|
|
};
|
2020-08-31 21:19:46 +03:00
|
|
|
});
|
2020-11-10 00:20:38 +03:00
|
|
|
this.setState({ defaultResults });
|
|
|
|
let networkIds = [];
|
2020-11-11 04:44:21 +03:00
|
|
|
let slateIds = [];
|
2020-11-10 00:20:38 +03:00
|
|
|
for (let sub of this.props.viewer.subscriptions) {
|
|
|
|
if (sub.target_user_id) {
|
|
|
|
networkIds.push(sub.target_user_id);
|
2020-11-11 04:44:21 +03:00
|
|
|
} else if (sub.target_slate_id) {
|
|
|
|
slateIds.push(sub.target_slate_id);
|
2020-11-10 00:20:38 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
for (let sub of this.props.viewer.trusted) {
|
|
|
|
if (sub.target_user_id) {
|
|
|
|
networkIds.push(sub.target_user_id);
|
2020-08-31 21:19:46 +03:00
|
|
|
}
|
|
|
|
}
|
2020-11-10 00:20:38 +03:00
|
|
|
for (let sub of this.props.viewer.pendingTrusted) {
|
|
|
|
if (sub.owner_user_id) {
|
|
|
|
networkIds.push(sub.owner_user_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.networkIds = networkIds;
|
2020-11-11 04:44:21 +03:00
|
|
|
this.slateIds = slateIds;
|
2020-08-31 21:19:46 +03:00
|
|
|
};
|
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
fillLocalDirectory = () => {
|
|
|
|
this.localSearch = new MiniSearch({
|
2020-11-11 04:44:21 +03:00
|
|
|
fields: ["name", "title"],
|
2020-11-10 00:20:38 +03:00
|
|
|
storeFields: ["type", "data", "id"],
|
2020-10-31 02:12:20 +03:00
|
|
|
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,
|
2020-11-11 04:44:21 +03:00
|
|
|
name: file.title,
|
|
|
|
title: file.file,
|
2020-10-31 02:12:20 +03:00
|
|
|
data: {
|
|
|
|
file: {
|
|
|
|
...file,
|
|
|
|
url: `${Constants.gateways.ipfs}/${file.cid || file.ipfs.replace("/ipfs/", "")}`,
|
|
|
|
},
|
|
|
|
index: i,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
});
|
2020-11-10 00:20:38 +03:00
|
|
|
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",
|
2020-11-11 04:44:21 +03:00
|
|
|
id: `${file.id}-${slate.id}`,
|
|
|
|
name: file.name,
|
|
|
|
title: file.title,
|
2020-11-10 00:20:38 +03:00
|
|
|
data: {
|
|
|
|
file,
|
|
|
|
slate,
|
|
|
|
index: i,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
|
|
|
privateSlates = privateSlates.map((slate) => {
|
|
|
|
return {
|
|
|
|
...slate,
|
2020-11-11 04:44:21 +03:00
|
|
|
name: slate.slatename,
|
|
|
|
title: slate.data.name,
|
2020-11-10 00:20:38 +03:00
|
|
|
type: "SLATE",
|
|
|
|
};
|
2020-10-31 02:12:20 +03:00
|
|
|
});
|
2020-11-10 00:20:38 +03:00
|
|
|
this.localSearch.addAll(privateSlates);
|
|
|
|
this.localSearch.addAll(privateFiles);
|
|
|
|
};
|
|
|
|
|
|
|
|
// fillPersonalDirectory = () => {
|
|
|
|
// this.personalSearch = new MiniSearch({
|
|
|
|
// fields: ["slatename", "data.name", "username", "filename"],
|
|
|
|
// storeFields: ["type", "slatename", "username", "data", "id", "slates", "owner"],
|
|
|
|
// 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,
|
|
|
|
// filename: file.name || file.file,
|
|
|
|
// data: {
|
|
|
|
// file: {
|
|
|
|
// ...file,
|
|
|
|
// url: `${Constants.gateways.ipfs}/${file.cid || file.ipfs.replace("/ipfs/", "")}`,
|
|
|
|
// },
|
|
|
|
// index: i,
|
|
|
|
// },
|
|
|
|
// };
|
|
|
|
// });
|
|
|
|
// let slates = this.props.viewer.slates.map((slate) => {
|
|
|
|
// return { ...slate, type: "SLATE", owner: this.props.viewer };
|
|
|
|
// });
|
|
|
|
// this.personalSearch.addAll(slates);
|
|
|
|
// let userIds = [];
|
|
|
|
// this.personalSearch.addAll(this.props.viewer.pendingTrusted.map((trust) => trust.owner));
|
|
|
|
// userIds.push(...this.props.viewer.pendingTrusted.map((trust) => trust.owner.id));
|
|
|
|
// this.personalSearch.addAll(
|
|
|
|
// this.props.viewer.trusted
|
|
|
|
// .filter((trust) => !userIds.includes(trust.user.id))
|
|
|
|
// .map((trust) => trust.user)
|
|
|
|
// );
|
|
|
|
// userIds.push(...this.props.viewer.trusted.map((trust) => trust.user.id));
|
|
|
|
// this.personalSearch.addAll(
|
|
|
|
// this.props.viewer.subscriptions
|
|
|
|
// .filter((sub) => sub.target_user_id && !userIds.includes(sub.user.id))
|
|
|
|
// .map((sub) => sub.user)
|
|
|
|
// );
|
|
|
|
// this.personalSearch.addAll(files);
|
|
|
|
// };
|
|
|
|
|
|
|
|
_handleDocumentKeydown = (e) => {
|
|
|
|
let results;
|
|
|
|
if (this.state.results && this.state.results.length) {
|
|
|
|
results = this.state.results;
|
|
|
|
} else {
|
|
|
|
results = this.state.defaultResults;
|
|
|
|
}
|
|
|
|
if (e.keyCode === 27) {
|
|
|
|
this._handleHide();
|
|
|
|
e.preventDefault();
|
2020-11-11 04:44:21 +03:00
|
|
|
} else if (e.keyCode === 8) {
|
|
|
|
if (this._input.selectionStart === 0) {
|
|
|
|
this.setState({ typeFilter: null });
|
|
|
|
}
|
2020-11-10 00:20:38 +03:00
|
|
|
} 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) {
|
2020-11-12 00:08:59 +03:00
|
|
|
if (results.length > this.state.selectedIndex && this.state.selectedIndex >= 0) {
|
2020-11-10 00:20:38 +03:00
|
|
|
this._handleSelect(results[this.state.selectedIndex].value);
|
|
|
|
}
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
2020-10-31 02:12:20 +03:00
|
|
|
};
|
|
|
|
|
2020-08-31 21:19:46 +03:00
|
|
|
_handleChange = (e) => {
|
2020-11-10 00:20:38 +03:00
|
|
|
this.debounceInstance(e);
|
2020-09-29 01:03:54 +03:00
|
|
|
this.setState({ inputValue: e.target.value });
|
2020-10-31 02:12:20 +03:00
|
|
|
};
|
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
_handleSearch = async (refilter = false) => {
|
|
|
|
let searchResults = [];
|
|
|
|
let results = [];
|
2020-11-11 04:44:21 +03:00
|
|
|
let ids = new Set();
|
2020-11-10 00:20:38 +03:00
|
|
|
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));
|
|
|
|
}
|
2020-09-29 01:03:54 +03:00
|
|
|
for (let result of searchResults) {
|
|
|
|
ids.add(result.id);
|
|
|
|
}
|
2020-11-10 00:20:38 +03:00
|
|
|
let autofill = this.localSearch.autoSuggest(this.state.inputValue);
|
|
|
|
let count = 0;
|
2020-09-29 01:03:54 +03:00
|
|
|
for (let i = 0; i < autofill.length; i++) {
|
2020-11-10 00:20:38 +03:00
|
|
|
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({
|
|
|
|
value: {
|
|
|
|
type: "SLATE",
|
|
|
|
data: item,
|
|
|
|
},
|
|
|
|
component: <SlateEntry item={item} viewer={this.props.viewer} />,
|
|
|
|
preview: <SlatePreview item={item} viewer={this.props.viewer} />,
|
|
|
|
});
|
|
|
|
} else if (item.type === "FILE" || item.type === "DATA_FILE") {
|
|
|
|
results.push({
|
|
|
|
value: {
|
|
|
|
type: item.type,
|
|
|
|
data: item,
|
|
|
|
},
|
|
|
|
component: <FileEntry item={item} viewer={this.props.viewer} />,
|
|
|
|
preview: <FilePreview item={item} viewer={this.props.viewer} />,
|
|
|
|
});
|
2020-09-07 00:25:54 +03:00
|
|
|
}
|
2020-09-29 01:03:54 +03:00
|
|
|
}
|
2020-08-31 21:19:46 +03:00
|
|
|
}
|
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
let res;
|
|
|
|
if (!refilter) {
|
|
|
|
let response = await Actions.search({
|
2020-11-11 05:38:22 +03:00
|
|
|
resourceURI: this.props.resourceURI,
|
2020-11-10 00:20:38 +03:00
|
|
|
query: this.state.inputValue,
|
|
|
|
type: this.state.typeFilter,
|
|
|
|
userId: this.props.viewer.id,
|
|
|
|
filterBy: null,
|
|
|
|
networkIds: this.networkIds || [],
|
|
|
|
});
|
|
|
|
this.setState({ unfilteredResults: response.data.results });
|
|
|
|
res = response.data.results;
|
|
|
|
} else {
|
|
|
|
res = this.state.unfilteredResults;
|
|
|
|
}
|
|
|
|
searchResults = this.processResults(res);
|
|
|
|
for (let item of searchResults) {
|
2020-11-11 04:44:21 +03:00
|
|
|
if (ids.has(item.id)) continue;
|
|
|
|
ids.add(item.id);
|
2020-11-10 00:20:38 +03:00
|
|
|
if (item.type === "USER") {
|
|
|
|
results.push({
|
|
|
|
value: {
|
|
|
|
type: "USER",
|
|
|
|
data: item,
|
|
|
|
},
|
|
|
|
component: <UserEntry item={item} />,
|
|
|
|
preview: <UserPreview item={item} viewer={this.props.viewer} />,
|
|
|
|
});
|
|
|
|
} else if (item.type === "SLATE") {
|
|
|
|
results.push({
|
|
|
|
value: {
|
|
|
|
type: "SLATE",
|
|
|
|
data: item,
|
|
|
|
},
|
|
|
|
component: (
|
|
|
|
<SlateEntry
|
|
|
|
item={item}
|
|
|
|
viewer={
|
|
|
|
item.owner && item.owner.id === this.props.viewer.id ? this.props.viewer : null
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
),
|
|
|
|
preview: (
|
|
|
|
<SlatePreview
|
|
|
|
item={item}
|
|
|
|
viewer={
|
|
|
|
item.owner && item.owner.id === this.props.viewer.id ? this.props.viewer : null
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
),
|
|
|
|
});
|
|
|
|
} else if (item.type === "FILE") {
|
|
|
|
results.push({
|
|
|
|
value: {
|
|
|
|
type: item.type,
|
|
|
|
data: item,
|
|
|
|
},
|
|
|
|
component: <FileEntry item={item} />,
|
|
|
|
preview: <FilePreview item={item} />,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2020-11-11 04:44:21 +03:00
|
|
|
this.setState({ results, selectedIndex: 0 });
|
|
|
|
this._optionRoot.scrollTop = 0;
|
2020-11-10 00:20:38 +03:00
|
|
|
};
|
2020-10-31 02:12:20 +03:00
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
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) => {
|
2020-11-11 04:44:21 +03:00
|
|
|
if (
|
|
|
|
(res.type === "USER" && this.networkIds.includes(res.id)) ||
|
|
|
|
(res.type === "SLATE" && this.slateIds.includes(res.id)) ||
|
|
|
|
this.networkIds.includes(res.ownerId)
|
|
|
|
) {
|
|
|
|
return true;
|
2020-11-10 00:20:38 +03:00
|
|
|
}
|
2020-11-11 04:44:21 +03:00
|
|
|
return false;
|
2020-11-10 00:20:38 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
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"
|
|
|
|
) {
|
2020-11-11 04:44:21 +03:00
|
|
|
let aInNetwork =
|
|
|
|
(a.type === "USER" && this.networkIds.includes(a.id)) ||
|
|
|
|
(a.type === "SLATE" && this.slateIds.includes(a.id)) ||
|
|
|
|
this.networkIds.includes(a.ownerId);
|
|
|
|
let bInNetwork =
|
|
|
|
(b.type === "USER" && this.networkIds.includes(b.id)) ||
|
|
|
|
(b.type === "SLATE" && this.slateIds.includes(b.id)) ||
|
|
|
|
this.networkIds.includes(b.ownerId);
|
2020-11-10 00:20:38 +03:00
|
|
|
if (aInNetwork && !bInNetwork) {
|
|
|
|
return -1;
|
|
|
|
} else if (!aInNetwork && bInNetwork) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return b.weight - a.weight;
|
|
|
|
})
|
|
|
|
.map((res) => res.data.value);
|
|
|
|
return results;
|
|
|
|
};
|
2020-10-31 02:12:20 +03:00
|
|
|
|
2020-08-31 21:19:46 +03:00
|
|
|
_handleSelect = async (value) => {
|
|
|
|
if (value.type === "SLATE") {
|
|
|
|
this.props.onAction({
|
|
|
|
type: "NAVIGATE",
|
|
|
|
value: "V1_NAVIGATION_SLATE",
|
2020-09-04 01:42:08 +03:00
|
|
|
data: value.data,
|
2020-08-31 21:19:46 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
if (value.type === "USER") {
|
|
|
|
this.props.onAction({
|
|
|
|
type: "NAVIGATE",
|
|
|
|
value: "V1_NAVIGATION_PROFILE",
|
|
|
|
data: value.data,
|
|
|
|
});
|
|
|
|
}
|
2020-10-31 02:12:20 +03:00
|
|
|
if (value.type === "DATA_FILE") {
|
|
|
|
await this.props.onAction({
|
|
|
|
type: "NAVIGATE",
|
|
|
|
value: "data",
|
|
|
|
});
|
|
|
|
dispatchCustomEvent({
|
|
|
|
name: "slate-global-open-carousel",
|
|
|
|
detail: { index: value.data.data.index },
|
|
|
|
});
|
|
|
|
}
|
2020-08-31 21:19:46 +03:00
|
|
|
if (value.type === "FILE") {
|
2020-09-04 01:42:08 +03:00
|
|
|
await this.props.onAction({
|
2020-08-31 21:19:46 +03:00
|
|
|
type: "NAVIGATE",
|
|
|
|
value: "V1_NAVIGATION_SLATE",
|
2020-09-04 01:42:08 +03:00
|
|
|
data: value.data.data.slate,
|
2020-08-31 21:19:46 +03:00
|
|
|
});
|
2020-11-10 00:20:38 +03:00
|
|
|
if (value.data.data.slate) {
|
|
|
|
let ids = value.data.data.slate.data.objects.map((obj) => obj.id);
|
|
|
|
let index = ids.indexOf(value.data.data.file.id);
|
|
|
|
if (index !== -1) {
|
|
|
|
dispatchCustomEvent({
|
|
|
|
name: "slate-global-open-carousel",
|
|
|
|
detail: { index },
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this._handleHide();
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleRedirect = async (destination) => {
|
|
|
|
if (destination === "FMU") {
|
|
|
|
let isProd = window.location.hostname.includes("slate.host");
|
|
|
|
this._handleSelect({
|
|
|
|
type: "FILE",
|
|
|
|
data: {
|
|
|
|
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",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-08-31 21:19:46 +03:00
|
|
|
});
|
|
|
|
}
|
2020-11-10 00:20:38 +03:00
|
|
|
this.props.onAction({
|
|
|
|
type: "SIDEBAR",
|
|
|
|
value: destination,
|
2020-08-31 21:19:46 +03:00
|
|
|
});
|
2020-11-10 00:20:38 +03:00
|
|
|
this._handleHide();
|
2020-08-31 21:19:46 +03:00
|
|
|
};
|
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
_handleFilterType = async (type) => {
|
|
|
|
this._input.focus();
|
|
|
|
if (this.state.typeFilter === type) {
|
|
|
|
await this.setState({ typeFilter: null });
|
|
|
|
} else {
|
|
|
|
await this.setState({ typeFilter: type });
|
|
|
|
}
|
|
|
|
if (this.state.inputValue) {
|
|
|
|
this._handleSearch();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleFilterScope = async (scope) => {
|
|
|
|
this._input.focus();
|
|
|
|
await this.setState({ scopeFilter: scope, filterTooltip: false });
|
|
|
|
if (this.state.inputValue) {
|
|
|
|
this._handleSearch(true);
|
2020-09-07 00:25:54 +03:00
|
|
|
}
|
2020-11-10 00:20:38 +03:00
|
|
|
};
|
2020-11-08 05:32:17 +03:00
|
|
|
|
2020-11-11 04:44:21 +03:00
|
|
|
_handleClearAll = () => {
|
|
|
|
this._optionRoot.scrollTop = 0;
|
|
|
|
this._input.focus();
|
|
|
|
this.setState({
|
|
|
|
inputValue: "",
|
|
|
|
results: [],
|
|
|
|
selectedIndex: 0,
|
|
|
|
scopeFilter: null,
|
|
|
|
typeFilter: null,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2020-11-10 00:20:38 +03:00
|
|
|
render() {
|
2020-11-11 04:44:21 +03:00
|
|
|
let selectedIndex = this.state.selectedIndex;
|
2020-11-10 00:20:38 +03:00
|
|
|
let results =
|
|
|
|
this.state.inputValue && this.state.inputValue.length
|
|
|
|
? this.state.results
|
|
|
|
: this.state.defaultResults;
|
2020-08-31 21:19:46 +03:00
|
|
|
return (
|
2020-11-10 00:20:38 +03:00
|
|
|
<div
|
|
|
|
css={STYLES_BACKGROUND}
|
|
|
|
style={{ display: this.state.modal ? "inline-block" : "none" }}
|
|
|
|
role="dialog"
|
|
|
|
aria-modal="true"
|
|
|
|
aria-label="search"
|
|
|
|
>
|
|
|
|
<div css={STYLES_CONTAINER}>
|
|
|
|
<Boundary
|
|
|
|
onMouseDown
|
|
|
|
enabled={this.state.modal}
|
|
|
|
onOutsideRectEvent={this._handleHide}
|
|
|
|
isDataMenuCaptured={true}
|
|
|
|
style={{ display: "inline-block" }}
|
|
|
|
>
|
|
|
|
<div css={STYLES_MODAL}>
|
|
|
|
<div css={STYLES_DROPDOWN_CONTAINER}>
|
|
|
|
{this.state.loading ? (
|
|
|
|
<div css={STYLES_LOADER}>
|
|
|
|
<LoaderSpinner />
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<React.Fragment>
|
2020-11-11 04:44:21 +03:00
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
position: "relative",
|
|
|
|
display: "flex",
|
|
|
|
flexDirection: "row",
|
|
|
|
alignItems: "center",
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<div css={STYLES_INLINE_TAG_CONTAINER}>
|
|
|
|
{this.state.typeFilter ? (
|
|
|
|
<div css={STYLES_INLINE_TAG}>
|
|
|
|
{this.state.typeFilter === "SLATE"
|
|
|
|
? "Slates:"
|
|
|
|
: this.state.typeFilter === "USER"
|
|
|
|
? "Users:"
|
|
|
|
: this.state.typeFilter === "FILE"
|
|
|
|
? "Files:"
|
|
|
|
: "Tags:"}
|
|
|
|
</div>
|
|
|
|
) : null}
|
|
|
|
</div>
|
2020-11-10 00:20:38 +03:00
|
|
|
<input
|
|
|
|
disabled={!this.state.modal || this.state.loading}
|
|
|
|
css={STYLES_INPUT}
|
|
|
|
value={this.state.inputValue}
|
2020-11-11 04:44:21 +03:00
|
|
|
placeholder={`Search for ${
|
|
|
|
!this.state.typeFilter
|
|
|
|
? "slates, users, and files..."
|
|
|
|
: this.state.typeFilter === "SLATE"
|
|
|
|
? "slates..."
|
|
|
|
: this.state.typeFilter === "USER"
|
|
|
|
? "users..."
|
|
|
|
: this.state.typeFilter === "FILE"
|
|
|
|
? "files..."
|
|
|
|
: "tags..."
|
|
|
|
}`}
|
2020-11-10 00:20:38 +03:00
|
|
|
onChange={this._handleChange}
|
|
|
|
ref={(c) => {
|
|
|
|
this._input = c;
|
|
|
|
}}
|
|
|
|
/>
|
2020-11-11 04:44:21 +03:00
|
|
|
<div css={STYLES_DISMISS_BOX} onClick={this._handleClearAll}>
|
|
|
|
<SVG.Dismiss height="20px" />
|
|
|
|
</div>
|
2020-11-10 00:20:38 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div
|
|
|
|
style={{ display: "flex", justifyContent: "space-between", marginBottom: 16 }}
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
display: "flex",
|
|
|
|
flexDirection: "row",
|
|
|
|
width: "100%",
|
|
|
|
minWidth: "10%",
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
css={STYLES_FILTER_BUTTON}
|
|
|
|
style={{
|
|
|
|
backgroundColor:
|
|
|
|
this.state.typeFilter === "SLATE"
|
2020-11-11 04:44:21 +03:00
|
|
|
? Constants.system.bgGray
|
2020-11-10 00:20:38 +03:00
|
|
|
: Constants.system.white,
|
|
|
|
}}
|
|
|
|
onClick={() => this._handleFilterType("SLATE")}
|
|
|
|
>
|
|
|
|
<SVG.Layers height="16px" />
|
|
|
|
<span css={STYLES_MOBILE_HIDDEN} style={{ marginLeft: 8 }}>
|
|
|
|
Search slates
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
css={STYLES_FILTER_BUTTON}
|
|
|
|
style={{
|
|
|
|
backgroundColor:
|
|
|
|
this.state.typeFilter === "USER"
|
2020-11-11 04:44:21 +03:00
|
|
|
? Constants.system.bgGray
|
2020-11-10 00:20:38 +03:00
|
|
|
: Constants.system.white,
|
|
|
|
}}
|
|
|
|
onClick={() => this._handleFilterType("USER")}
|
|
|
|
>
|
|
|
|
<SVG.Directory height="16px" />
|
|
|
|
<span css={STYLES_MOBILE_HIDDEN} style={{ marginLeft: 8 }}>
|
|
|
|
Search users
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
css={STYLES_FILTER_BUTTON}
|
|
|
|
style={{
|
|
|
|
backgroundColor:
|
|
|
|
this.state.typeFilter === "FILE"
|
2020-11-11 04:44:21 +03:00
|
|
|
? Constants.system.bgGray
|
2020-11-10 00:20:38 +03:00
|
|
|
: Constants.system.white,
|
|
|
|
}}
|
|
|
|
onClick={() => this._handleFilterType("FILE")}
|
|
|
|
>
|
|
|
|
<SVG.HardDrive height="16px" />
|
|
|
|
<span css={STYLES_MOBILE_HIDDEN} style={{ marginLeft: 8 }}>
|
|
|
|
Search files
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{/* <div
|
|
|
|
css={STYLES_FILTER_BUTTON}
|
|
|
|
style={{
|
|
|
|
backgroundColor:
|
|
|
|
this.state.typeFilter === "TAG"
|
2020-11-11 04:44:21 +03:00
|
|
|
? Constants.system.bgGray
|
2020-11-10 00:20:38 +03:00
|
|
|
: Constants.system.white,
|
|
|
|
}}
|
|
|
|
onClick={() => this._handleFilterType("TAG")}
|
|
|
|
>
|
|
|
|
<SVG.Hash height="16px" />
|
|
|
|
<span css={STYLES_MOBILE_HIDDEN} style={{ marginLeft: 8 }}>Search tags</span>
|
|
|
|
</div> */}
|
|
|
|
</div>
|
|
|
|
<div style={{ flexShrink: 0, position: "relative" }}>
|
|
|
|
<div
|
|
|
|
css={STYLES_FILTER_BUTTON}
|
|
|
|
style={{
|
|
|
|
marginRight: 0,
|
|
|
|
marginLeft: 16,
|
2020-11-11 04:44:21 +03:00
|
|
|
color: this.state.scopeFilter
|
|
|
|
? Constants.system.brand
|
|
|
|
: Constants.system.textGray,
|
2020-11-10 00:20:38 +03:00
|
|
|
}}
|
|
|
|
onClick={() =>
|
|
|
|
this.setState({ filterTooltip: !this.state.filterTooltip })
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<SVG.Filter height="16px" />
|
|
|
|
</div>
|
|
|
|
{this.state.filterTooltip ? (
|
|
|
|
<Boundary
|
|
|
|
captureResize={true}
|
|
|
|
captureScroll={false}
|
|
|
|
enabled
|
|
|
|
onOutsideRectEvent={() => this.setState({ filterTooltip: false })}
|
|
|
|
>
|
|
|
|
<PopoverNavigation
|
|
|
|
style={{
|
|
|
|
right: 0,
|
2020-11-11 04:44:21 +03:00
|
|
|
top: 44,
|
2020-11-10 00:20:38 +03:00
|
|
|
borderColor: Constants.system.bgGray,
|
|
|
|
color: Constants.system.textGray,
|
2020-11-11 04:44:21 +03:00
|
|
|
width: 124,
|
2020-11-10 00:20:38 +03:00
|
|
|
}}
|
|
|
|
navigation={[
|
|
|
|
{
|
2020-11-11 04:44:21 +03:00
|
|
|
text: (
|
|
|
|
<span
|
|
|
|
style={{
|
|
|
|
color: this.state.scopeFilter
|
|
|
|
? "inherit"
|
|
|
|
: Constants.system.brand,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
All
|
|
|
|
</span>
|
|
|
|
),
|
2020-11-10 00:20:38 +03:00
|
|
|
onClick: () => this._handleFilterScope(null),
|
|
|
|
},
|
|
|
|
{
|
2020-11-11 04:44:21 +03:00
|
|
|
text: (
|
|
|
|
<span
|
|
|
|
style={{
|
|
|
|
color:
|
|
|
|
this.state.scopeFilter === "MY"
|
|
|
|
? Constants.system.brand
|
|
|
|
: "inherit",
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
My stuff
|
|
|
|
</span>
|
|
|
|
),
|
2020-11-10 00:20:38 +03:00
|
|
|
onClick: () => this._handleFilterScope("MY"),
|
|
|
|
},
|
|
|
|
{
|
2020-11-11 04:44:21 +03:00
|
|
|
text: (
|
|
|
|
<span
|
|
|
|
style={{
|
|
|
|
color:
|
|
|
|
this.state.scopeFilter === "NETWORK"
|
|
|
|
? Constants.system.brand
|
|
|
|
: "inherit",
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
My network
|
|
|
|
</span>
|
|
|
|
),
|
2020-11-10 00:20:38 +03:00
|
|
|
onClick: () => this._handleFilterScope("NETWORK"),
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
</Boundary>
|
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div
|
|
|
|
data-menu
|
|
|
|
ref={(c) => {
|
|
|
|
this._optionRoot = c;
|
|
|
|
}}
|
|
|
|
css={STYLES_DROPDOWN}
|
|
|
|
>
|
|
|
|
{results.map((each, i) => (
|
|
|
|
<div
|
|
|
|
key={
|
|
|
|
each.value.type === "FILE"
|
|
|
|
? `${each.value.data.data.file.id}-${each.value.data.data.slate.id}`
|
|
|
|
: each.value.data.id
|
|
|
|
}
|
|
|
|
css={STYLES_DROPDOWN_ITEM}
|
|
|
|
style={{
|
|
|
|
background:
|
2020-11-11 04:44:21 +03:00
|
|
|
selectedIndex === i
|
2020-11-10 00:20:38 +03:00
|
|
|
? "rgba(196, 196, 196, 0.1)"
|
|
|
|
: Constants.system.white,
|
2020-11-11 04:44:21 +03:00
|
|
|
paddingRight: selectedIndex === i ? "88px" : "4px",
|
2020-11-10 00:20:38 +03:00
|
|
|
}}
|
|
|
|
onClick={() => {
|
2020-11-11 04:44:21 +03:00
|
|
|
selectedIndex === i || this.props.mobile
|
2020-11-10 00:20:38 +03:00
|
|
|
? this._handleSelect(each.value)
|
|
|
|
: this.setState({ selectedIndex: i });
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{each.component}
|
2020-11-11 04:44:21 +03:00
|
|
|
{selectedIndex === i ? (
|
2020-11-10 00:20:38 +03:00
|
|
|
<div css={STYLES_RETURN}>
|
|
|
|
<SVG.ArrowDownLeft height="16px" style={{ marginRight: 8 }} /> Return
|
|
|
|
</div>
|
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
{results &&
|
|
|
|
results.length &&
|
2020-11-11 04:44:21 +03:00
|
|
|
selectedIndex < results.length &&
|
|
|
|
selectedIndex >= 0 ? (
|
2020-11-10 00:20:38 +03:00
|
|
|
<div
|
|
|
|
css={STYLES_PREVIEW_PANEL}
|
|
|
|
onClick={() => {
|
2020-11-11 04:44:21 +03:00
|
|
|
if (selectedIndex >= 0 && selectedIndex < results.length) {
|
|
|
|
this._handleSelect(results[selectedIndex].value);
|
2020-11-10 00:20:38 +03:00
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
2020-11-11 04:44:21 +03:00
|
|
|
{results[selectedIndex].preview}
|
2020-11-10 00:20:38 +03:00
|
|
|
</div>
|
|
|
|
) : null}
|
|
|
|
</React.Fragment>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div css={STYLES_BOTTOM_BUTTONS}>
|
|
|
|
<span
|
|
|
|
style={{ marginRight: 24, cursor: "pointer" }}
|
|
|
|
onClick={() => this._handleRedirect("SIDEBAR_HELP")}
|
|
|
|
>
|
|
|
|
Contact Us
|
|
|
|
</span>
|
|
|
|
<span
|
|
|
|
style={{ marginRight: 24, cursor: "pointer" }}
|
|
|
|
onClick={() => this._handleRedirect("SIDEBAR_FAQ")}
|
|
|
|
>
|
|
|
|
FAQ
|
|
|
|
</span>
|
|
|
|
<span style={{ cursor: "pointer" }} onClick={() => this._handleRedirect("FMU")}>
|
|
|
|
Fuck Me Up
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Boundary>
|
2020-09-15 00:29:41 +03:00
|
|
|
</div>
|
2020-08-31 21:19:46 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|