mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 05:54:49 +03:00
99 lines
2.3 KiB
JavaScript
99 lines
2.3 KiB
JavaScript
import * as React from "react";
|
|
import * as Constants from "~/common/constants";
|
|
import * as SVG from "~/common/svg";
|
|
import * as Strings from "~/common/strings";
|
|
|
|
import { css } from "@emotion/react";
|
|
|
|
import WebsitePrototypeWrapper from "~/components/core/WebsitePrototypeWrapper";
|
|
import SlateMediaObject from "~/components/core/SlateMediaObject";
|
|
|
|
const STYLES_FLEX = css`
|
|
display: flex;
|
|
width: 100%;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
background-color: ${Constants.system.black};
|
|
`;
|
|
|
|
const STYLES_TOP = css`
|
|
background: ${Constants.system.black};
|
|
border-bottom: 1px solid ${Constants.system.black};
|
|
color: ${Constants.system.white};
|
|
width: 100%;
|
|
padding: 12px 16px 12px 16px;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
`;
|
|
|
|
const STYLES_LEFT = css`
|
|
min-width: 10%;
|
|
width: 100%;
|
|
padding-right: 16px;
|
|
`;
|
|
|
|
const STYLES_RIGHT = css`
|
|
flex-shrink: 0;
|
|
cursor: pointer;
|
|
height: 100%;
|
|
padding-top: 4px;
|
|
transition: 200ms ease color;
|
|
user-select: none;
|
|
|
|
:hover {
|
|
color: ${Constants.system.blue};
|
|
}
|
|
`;
|
|
|
|
const STYLES_BOTTOM = css`
|
|
background: ${Constants.system.black};
|
|
color: ${Constants.system.white};
|
|
padding: 12px 16px 12px 48px;
|
|
width: 100%;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
`;
|
|
|
|
const STYLES_PATH = css`
|
|
font-family: "mono";
|
|
color: ${Constants.system.white};
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
overflow-wrap: break-word;
|
|
user-select: none;
|
|
`;
|
|
|
|
export default class SceneFile extends React.Component {
|
|
render() {
|
|
const cid = this.props.data.cid;
|
|
const fileURL = Strings.getURLfromCID(cid);
|
|
|
|
return (
|
|
<WebsitePrototypeWrapper
|
|
title={`${this.props.page.pageTitle} • Slate`}
|
|
url={`${Constants.hostname}${this.props.page.pathname}`}
|
|
>
|
|
<div css={STYLES_FLEX}>
|
|
<div css={STYLES_TOP}>
|
|
<div css={STYLES_LEFT}>
|
|
<a css={STYLES_PATH} href={fileURL} target="_blank">
|
|
{fileURL}
|
|
</a>
|
|
</div>
|
|
<div css={STYLES_RIGHT}>
|
|
<SVG.Dismiss height="24px" />
|
|
</div>
|
|
</div>
|
|
<SlateMediaObject file={this.props.data} />
|
|
</div>
|
|
</WebsitePrototypeWrapper>
|
|
);
|
|
}
|
|
}
|