import * as React from "react"; import * as Constants from "~/common/constants"; import * as Strings from "~/common/strings"; import * as System from "~/components/system"; import * as Actions from "~/common/actions"; import * as SVG from "~/common/svg"; import * as Window from "~/common/window"; import * as UserBehaviors from "~/common/user-behaviors"; import * as Events from "~/common/custom-events"; import { css } from "@emotion/react"; import { Boundary } from "~/components/system/components/fragments/Boundary"; import { PopoverNavigation } from "~/components/system/components/PopoverNavigation"; import { LoaderSpinner } from "~/components/system/components/Loaders"; import { CheckBox } from "~/components/system/components/CheckBox"; import { Table } from "~/components/core/Table"; import { FileTypeIcon } from "~/components/core/FileTypeIcon"; import { ButtonPrimary, ButtonWarning } from "~/components/system/components/Buttons"; import { TabGroup } from "~/components/core/TabGroup"; import SlateMediaObjectPreview from "~/components/core/SlateMediaObjectPreview"; import FilePreviewBubble from "~/components/core/FilePreviewBubble"; const STYLES_CONTAINER_HOVER = css` display: flex; :hover { color: ${Constants.system.brand}; } `; const STYLES_ICON_BOX = css` height: 32px; width: 32px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; margin-left: 16px; `; const STYLES_CANCEL_BOX = css` height: 16px; width: 16px; background-color: ${Constants.system.brand}; border-radius: 3px; position: relative; right: 3px; cursor: pointer; box-shadow: 0 0 0 1px ${Constants.system.brand}; `; const STYLES_HEADER_LINE = css` display: flex; align-items: center; margin-top: 80px; margin-bottom: 30px; `; const STYLES_LINK = css` display: inline; cursor: pointer; transition: 200ms ease all; font-size: 0.9rem; padding: 12px 0px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 320px; @media (max-width: ${Constants.sizes.tablet}px) { max-width: 120px; } `; const STYLES_VALUE = css` font-size: 0.9rem; padding: 12px 0px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; `; const STYLES_ICON_BOX_HOVER = css` display: inline-flex; align-items: center; padding: 8px; cursor: pointer; :hover { color: ${Constants.system.brand}; } `; const STYLES_ICON_BOX_BACKGROUND = css` display: inline-flex; align-items: center; justify-content: center; height: 25px; width: 25px; cursor: pointer; background-color: rgba(255, 255, 255, 0.75); border-radius: 3px; position: absolute; bottom: 8px; right: 8px; `; const STYLES_ACTION_BAR = css` display: flex; align-items: center; justify-content: space-between; box-shadow: 0 0 0 1px ${Constants.system.lightBorder} inset, 0 0 4px 2px ${Constants.system.shadow}; border-radius: 4px; padding: 12px 32px; box-sizing: border-box; background-color: ${Constants.system.foreground}; position: fixed; bottom: 12px; left: 10vw; width: 80vw; @media (max-width: ${Constants.sizes.mobile}px) { display: none; } `; const STYLES_RIGHT = css` flex-shrink: 0; display: flex; align-items: center; `; const STYLES_LEFT = css` width: 100%; min-width: 10%; display: flex; align-items: center; `; const STYLES_FILES_SELECTED = css` font-family: ${Constants.font.semiBold}; @media (max-width: ${Constants.sizes.mobile}px) { display: none; } `; const STYLES_COPY_INPUT = css` pointer-events: none; position: absolute; opacity: 0; `; const STYLES_IMAGE_GRID = css` display: grid; grid-template-columns: repeat(5, 1fr); grid-column-gap: 20px; grid-row-gap: 20px; width: 100%; @media (max-width: ${Constants.sizes.mobile}px) { grid-template-columns: repeat(2, 1fr); } `; const STYLES_IMAGE_BOX = css` width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; box-shadow: 0px 0px 0px 1px ${Constants.system.lightBorder} inset, 0 0 40px 0 ${Constants.system.shadow}; cursor: pointer; position: relative; @media (max-width: ${Constants.sizes.mobile}px) { margin: 12px auto; } `; const STYLES_MOBILE_HIDDEN = css` @media (max-width: ${Constants.sizes.mobile}px) { display: none; } `; export default class DataView extends React.Component { _mounted = false; state = { menu: null, loading: {}, checked: {}, view: "grid", viewLimit: 40, scrollDebounce: false, imageSize: 100, }; isShiftDown = false; lastSelectedItemIndex = null; gridWrapperEl = React.createRef(); async componentDidMount() { this.calculateWidth(); this.debounceInstance = Window.debounce(this.calculateWidth, 200); if (!this._mounted) { this._mounted = true; window.addEventListener("scroll", this._handleCheckScroll); window.addEventListener("resize", this.debounceInstance); window.addEventListener("keydown", this._handleKeyDown); window.addEventListener("keyup", this._handleKeyUp); if (this.gridWrapperEl.current) { this.gridWrapperEl.current.addEventListener("selectstart", this._handleSelectStart); } } } componentWillUnmount() { this._mounted = false; window.removeEventListener("scroll", this._handleCheckScroll); window.removeEventListener("resize", this.debounceInstance); window.removeEventListener("keydown", this._handleKeyDown); window.removeEventListener("keyup", this._handleKeyUp); if (this.gridWrapperEl.current) { this.gridWrapperEl.current.removeEventListener("selectstart", this._handleSelectStart); } } calculateWidth = () => { let windowWidth = window.innerWidth; let imageSize; if (windowWidth < Constants.sizes.mobile) { imageSize = (windowWidth - 2 * 24 - 20) / 2; } else { imageSize = (windowWidth - 2 * 56 - 4 * 20) / 5; } this.setState({ imageSize }); }; _handleScroll = (e) => { const windowHeight = "innerHeight" in window ? window.innerHeight : document.documentElement.offsetHeight; const body = document.body; const html = document.documentElement; const docHeight = Math.max( body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight ); const windowBottom = windowHeight + window.pageYOffset; if (windowBottom >= docHeight - 600) { this.setState({ viewLimit: this.state.viewLimit + 30 }); } }; _handleCheckScroll = Window.debounce(this._handleScroll, 200); /* NOTE(daniel): This disable text selection while pressing shift key */ _handleSelectStart = (e) => { if (this.isShiftDown) { e.preventDefault(); } }; _handleKeyUp = (e) => { if (e.keyCode === 16 && this.isShiftDown) { this.isShiftDown = false; } }; _handleKeyDown = (e) => { if (e.keyCode === 16 && !this.isShiftDown) { this.isShiftDown = true; } }; _handleCheckBox = (e, i) => { e.stopPropagation(); e.preventDefault(); let checked = this.state.checked; if (this.isShiftDown && this.lastSelectedItemIndex !== i) { return this._handleShiftClick({ currentSelectedItemIndex: i, lastSelectedItemIndex: this.lastSelectedItemIndex, checked, }); } if (checked[i]) { delete checked[i]; } else { checked[i] = true; } this.setState({ checked }); this.lastSelectedItemIndex = i; }; _handleShiftClick = ({ currentSelectedItemIndex, lastSelectedItemIndex, checked }) => { const start = Math.min(currentSelectedItemIndex, lastSelectedItemIndex); const stop = Math.max(currentSelectedItemIndex, lastSelectedItemIndex) + 1; let rangeSelected = {}; for (let i = start; i < stop; i++) { if (checked[currentSelectedItemIndex]) { delete checked[i]; } else { rangeSelected[i] = true; } } let newSelection = Object.assign({}, checked, rangeSelected); this.setState({ checked: newSelection }); this.lastSelectedItemIndex = currentSelectedItemIndex; return; }; _handleDelete = async (cid, id) => { const message = `Are you sure you want to delete these files? They will be deleted from your slates as well`; if (!window.confirm(message)) { return; } let cids; let ids; if (cid) { cids = [cid]; ids = [id]; } else { cids = Object.keys(this.state.checked).map((id) => { let index = parseInt(id); let item = this.props.viewer.library[0].children[index]; return item.cid; }); ids = Object.keys(this.state.checked).map((id) => { let index = parseInt(id); let item = this.props.viewer.library[0].children[index]; return item.id; }); this.setState({ checked: {} }); } await this._handleLoading({ cids }); await UserBehaviors.deleteFiles(cids, ids); this._handleLoading({ cids }); }; _handleSelect = (index) => { Events.dispatchCustomEvent({ name: "slate-global-open-carousel", detail: { index }, }); }; _handleCopy = (e, value) => { e.stopPropagation(); this._handleHide(); this.setState({ copyValue: value }, () => { this._ref.select(); document.execCommand("copy"); }); }; _handleHide = (e) => { this.setState({ menu: null }); }; _handleLoading = ({ cids }) => { let loading = this.state.loading; for (let cid of cids) { Events.dispatchCustomEvent({ name: "data-global-carousel-loading", detail: { loading: !this.state.loading[cid] }, }); loading[cid] = !this.state.loading[cid]; } this.setState({ loading }); }; _handleClick = (e) => { this.setState({ [e.target.name]: e.target.value }); }; _handleAddToSlate = (e) => { let userFiles = this.props.viewer.library[0].children; let files = Object.keys(this.state.checked).map((index) => userFiles[index]); this.props.onAction({ type: "SIDEBAR", value: "SIDEBAR_ADD_FILE_TO_SLATE", data: { files }, }); this._handleUncheckAll(); }; _handleUncheckAll = () => { this.setState({ checked: {} }); this.lastSelectedItemIndex = null; }; render() { let numChecked = Object.keys(this.state.checked).length || 0; const header = (
{ this.setState({ view: "grid", menu: null }); }} >
{ this.setState({ view: "list", menu: null }); }} >
); const footer = ( {numChecked ? (
{numChecked} file{numChecked > 1 ? "s" : ""} selected
Add to slate this._handleDelete()} loading={ this.state.loading && Object.values(this.state.loading).some((elem) => { return !!elem; }) } > Delete files
{ this.setState({ checked: {} }); this.lastSelectedItemIndex = null; }} >
) : null}
); if (this.state.view === "grid") { return ( {header}
{this.props.items.slice(0, this.state.viewLimit).map((each, i) => { const cid = each.cid; return (
this._handleSelect(i)} onMouseEnter={() => this.setState({ hover: i })} onMouseLeave={() => this.setState({ hover: null })} > {numChecked || this.state.hover === i || this.state.menu === each.id ? (
{} : (e) => { e.stopPropagation(); this.setState({ menu: this.state.menu === each.id ? null : each.id, }); } } > {this.state.loading[cid] ? ( ) : ( )} {this.state.menu === each.id ? ( this._handleCopy(e, cid), }, { text: "Copy link", onClick: (e) => this._handleCopy(e, Strings.getCIDGatewayURL(cid)), }, { text: "Delete", onClick: (e) => { e.stopPropagation(); this.setState({ menu: null }, () => this._handleDelete(cid, each.id) ); }, }, ]} /> ) : null}
this._handleCheckBox(e, i)}>
) : null}
); })} {[0, 1, 2, 3].map((i) => (
))}
{footer} { this._ref = c; }} readOnly value={this.state.copyValue} css={STYLES_COPY_INPUT} /> ); } const columns = [ { key: "checkbox", name: numChecked ? (
{ this.setState({ checked: {} }); this.lastSelectedItemIndex = null; }} >
) : ( ), width: "24px", }, { key: "name", name:
Name
, width: "100%", }, { key: "size", name:
Size
, width: "104px", }, { key: "more", name: , width: "48px", }, ]; const rows = this.props.items.slice(0, this.state.viewLimit).map((each, index) => { const cid = each.cid; return { ...each, checkbox: (
this._handleCheckBox(e, index)}> 0 || this.state.hover === index ? "100%" : "0%", }} />
), name: (
this._handleSelect(index)}>
{each.file || each.name}
), size:
{Strings.bytesToSize(each.size)}
, more: (
{} : () => this.setState({ menu: this.state.menu === each.id ? null : each.id, }) } > {this.state.loading[cid] ? ( ) : ( )} {this.state.menu === each.id ? ( this._handleCopy(e, cid), }, { text: "Copy link", onClick: (e) => this._handleCopy(e, Strings.getCIDGatewayURL(cid)), }, { text: "Delete", onClick: (e) => { e.stopPropagation(); this.setState({ menu: null }, () => this._handleDelete(cid, each.id)); }, }, ]} /> ) : null}
), }; }); const data = { columns, rows, }; return ( {header} this.setState({ hover: i })} onMouseLeave={() => this.setState({ hover: null })} isShiftDown={this.state.isShiftDown} /> {footer} { this._ref = c; }} readOnly value={this.state.copyValue} css={STYLES_COPY_INPUT} /> ); } }