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 { 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 { dispatchCustomEvent } from "~/common/custom-events";
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 SlateMediaObject from "~/components/core/SlateMediaObject";
import SlateMediaObjectPreview from "~/components/core/SlateMediaObjectPreview";
import FilePreviewBubble from "~/components/core/FilePreviewBubble";
const VIEW_LIMIT = 20;
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_ARROWS = css`
display: flex;
align-items: center;
justify-content: flex-end;
`;
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;
width: calc(100vw - ${Constants.sizes.sidebar}px + 32px);
max-width: ${Constants.sizes.desktop}px;
@media (max-width: ${Constants.sizes.mobile}px) {
width: calc(100vw - 48px);
}
`;
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_ICON_ELEMENT = css`
height: 40px;
width: 40px;
display: inline-flex;
align-items: center;
justify-content: center;
color: #565151;
user-select: none;
cursor: pointer;
pointer-events: auto;
margin: 16px 8px;
:hover {
color: ${Constants.system.brand};
}
svg {
transform: rotate(0deg);
transition: 200ms ease transform;
}
`;
const STYLES_COPY_INPUT = css`
pointer-events: none;
position: absolute;
opacity: 0;
`;
const STYLES_IMAGE_GRID = css`
display: grid;
grid-template-columns: repeat(auto-fit, minmax(214px, 1fr));
margin: 0 -27px;
@media (max-width: ${Constants.sizes.mobile}px) {
display: grid;
grid-template-columns: 1fr 1fr;
margin: 0px -12px;
}
`;
const STYLES_IMAGE_BOX = css`
width: 160px;
height: 160px;
margin: 27px;
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) {
width: 144px;
height: 144px;
margin: 12px auto;
}
`;
const STYLES_MOBILE_HIDDEN = css`
@media (max-width: ${Constants.sizes.mobile}px) {
display: none;
}
`;
const delay = (ms) => new Promise((resolve) => window.setTimeout(resolve, ms));
let mounted = false;
export default class DataView extends React.Component {
_mounted = false;
state = {
menu: null,
loading: {},
startIndex: 0,
checked: {},
view: "grid",
};
async componentDidMount() {
if (!mounted) {
mounted = true;
window.addEventListener("remote-data-deletion", this._handleDataDeletion);
window.addEventListener("remote-slate-object-remove", this._handleRemoteSlateObjectRemove);
window.addEventListener("remote-slate-object-add", this._handleRemoteSlateObjectAdd);
window.addEventListener("remote-update-carousel", this._handleUpdate);
}
await this._handleUpdate();
}
componentWillUnmount() {
mounted = false;
window.removeEventListener("remote-data-deletion", this._handleDataDeletion);
window.removeEventListener("remote-slate-object-remove", this._handleRemoteSlateObjectRemove);
window.removeEventListener("remote-slate-object-add", this._handleRemoteSlateObjectAdd);
window.removeEventListener("remote-update-carousel", this._handleUpdate);
}
_increment = (direction) => {
if (
direction > 0 &&
this.state.startIndex + VIEW_LIMIT < this.props.viewer.library[0].children.length
) {
this.setState({ startIndex: this.state.startIndex + VIEW_LIMIT });
} else if (direction < 0 && this.state.startIndex - VIEW_LIMIT >= 0) {
this.setState({ startIndex: this.state.startIndex - VIEW_LIMIT });
}
};
_handleCheckBox = (e) => {
let checked = this.state.checked;
if (e.target.value === false) {
delete checked[e.target.name];
this.setState({ checked });
return;
}
this.setState({
checked: { ...this.state.checked, [e.target.name]: true },
});
};
_handleDelete = async (cid) => {
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;
if (cid) {
cids = [cid];
} else {
cids = Object.keys(this.state.checked).map((id) => {
let index = parseInt(id);
return this.props.viewer.library[0].children[index].ipfs.replace("/ipfs/", "");
});
}
this._handleLoading({ cids });
const response = await Actions.deleteBucketItems({ cids });
if (!response) {
dispatchCustomEvent({
name: "create-alert",
detail: {
alert: {
message: "We're having trouble connecting right now. Please try again later",
},
},
});
this._handleLoading({ cids });
return;
}
if (response.error) {
dispatchCustomEvent({
name: "create-alert",
detail: { alert: { decorator: response.decorator } },
});
this._handleLoading({ cids });
return;
}
await this.props.onRehydrate();
await this._handleUpdate();
this._handleLoading({ cids });
this.setState({ checked: {} });
dispatchCustomEvent({
name: "create-alert",
detail: {
alert: { message: "Files successfully deleted!", status: "INFO" },
},
});
};
_handleUpdate = async () => {
// NOTE(jim): Hack to handle some race conditions.
await delay(200);
System.dispatchCustomEvent({
name: "slate-global-create-carousel",
detail: {
carouselType: "data",
slides: this.props.items.map((each) => {
const cid = each.ipfs.replace("/ipfs/", "");
const url = Strings.getCIDGatewayURL(cid);
const data = { ...each, url, cid };
return {
id: data.id,
slates: this.props.viewer.slates,
cid,
data,
renderDataControls: true,
component: