import * as React from "react"; import * as Constants from "~/common/constants"; import * as SVG from "~/components/system/svg"; import { css } from "@emotion/react"; import MediaObject from "~/components/core/MediaObject"; const STYLES_FLEX = css` display: flex; width: 100%; align-items: center; justify-content: space-between; flex-direction: column; height: calc(100vh - ${Constants.sizes.header}px); background-color: ${Constants.system.pitchBlack}; `; const STYLES_TOP = css` background: ${Constants.system.pitchBlack}; 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.brand}; } `; const STYLES_BOTTOM = css` background: ${Constants.system.pitchBlack}; 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 fileURL = this.props.data.url ? this.props.data.url : `https://hub.textile.io${this.props.data.ipfs}`; return (
{fileURL}
this.props.onBack()}>
); } }