2020-08-02 09:00:04 +03:00
|
|
|
import * as React from "react";
|
|
|
|
import * as Constants from "~/common/constants";
|
2020-11-11 04:44:21 +03:00
|
|
|
import * as Validations from "~/common/validations";
|
2020-08-02 09:00:04 +03:00
|
|
|
|
2020-11-17 15:53:15 +03:00
|
|
|
import UnityFrame from "~/components/core/UnityFrame";
|
|
|
|
|
2020-11-30 08:24:22 +03:00
|
|
|
import { css } from "@emotion/react";
|
2020-08-02 09:00:04 +03:00
|
|
|
|
|
|
|
const STYLES_FAILURE = css`
|
|
|
|
background-color: ${Constants.system.pitchBlack};
|
|
|
|
color: ${Constants.system.white};
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 88px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
min-height: 10%;
|
|
|
|
height: 100%;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_OBJECT = css`
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
min-height: 10%;
|
|
|
|
height: 100%;
|
2020-08-02 10:29:24 +03:00
|
|
|
user-select: none;
|
2020-08-02 09:00:04 +03:00
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_ASSET = css`
|
2020-08-02 10:29:24 +03:00
|
|
|
user-select: none;
|
2020-08-02 09:00:04 +03:00
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
min-height: 10%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
position: relative;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_IMAGE = css`
|
2020-08-02 10:29:24 +03:00
|
|
|
user-select: none;
|
2020-08-02 09:00:04 +03:00
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
`;
|
|
|
|
|
2020-09-16 12:16:46 +03:00
|
|
|
const typeMap = {
|
|
|
|
"video/quicktime": "video/mp4",
|
|
|
|
};
|
|
|
|
|
2020-08-20 23:33:08 +03:00
|
|
|
export default class SlateMediaObject extends React.Component {
|
2020-08-02 09:00:04 +03:00
|
|
|
render() {
|
2020-11-28 04:19:30 +03:00
|
|
|
const url = this.props.data.url;
|
2020-08-02 09:41:18 +03:00
|
|
|
const type = this.props.data.type ? this.props.data.type : "LEGACY_NO_TYPE";
|
2020-09-16 12:16:46 +03:00
|
|
|
const playType = typeMap[type] ? typeMap[type] : type;
|
2020-12-08 21:04:35 +03:00
|
|
|
|
2020-08-21 10:07:39 +03:00
|
|
|
let element = <div css={STYLES_FAILURE}>No Preview</div>;
|
2020-11-17 21:22:13 +03:00
|
|
|
|
2020-08-02 09:41:18 +03:00
|
|
|
if (type.startsWith("application/pdf")) {
|
2020-09-16 12:16:46 +03:00
|
|
|
return <object css={STYLES_OBJECT} data={url} type={type} />;
|
2020-08-02 09:00:04 +03:00
|
|
|
}
|
|
|
|
|
2020-08-02 10:29:24 +03:00
|
|
|
if (type.startsWith("video/")) {
|
2020-09-16 12:16:46 +03:00
|
|
|
return (
|
2020-12-28 05:39:12 +03:00
|
|
|
<video playsInline controls name="media" type={playType} css={STYLES_OBJECT}>
|
2020-09-16 12:16:46 +03:00
|
|
|
<source src={url} type={playType} />
|
2020-08-02 10:29:24 +03:00
|
|
|
</video>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-08-04 06:15:24 +03:00
|
|
|
if (type.startsWith("audio/")) {
|
2020-09-16 12:16:46 +03:00
|
|
|
return (
|
2020-08-04 06:15:24 +03:00
|
|
|
<div css={STYLES_ASSET}>
|
2020-12-28 05:39:12 +03:00
|
|
|
<audio controls name="media">
|
2020-09-16 12:16:46 +03:00
|
|
|
<source src={url} type={playType} />
|
2020-08-04 06:15:24 +03:00
|
|
|
</audio>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-11-11 04:44:21 +03:00
|
|
|
if (Validations.isPreviewableImage(type)) {
|
2020-09-16 12:16:46 +03:00
|
|
|
return (
|
2020-08-02 09:00:04 +03:00
|
|
|
<div css={STYLES_ASSET}>
|
|
|
|
<img css={STYLES_IMAGE} src={url} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-11-18 07:34:37 +03:00
|
|
|
// TODO(jim): We will need to revisit this later.
|
|
|
|
if (type.startsWith("application/unity")) {
|
2020-12-08 21:04:35 +03:00
|
|
|
const unityGameConfig = this.props.data.unityGameConfig;
|
|
|
|
const unityGameLoader = this.props.data.unityGameLoader;
|
|
|
|
|
2020-12-08 14:00:15 +03:00
|
|
|
return (
|
|
|
|
<UnityFrame url={url} unityGameConfig={unityGameConfig} unityGameLoader={unityGameLoader} />
|
|
|
|
);
|
2020-11-17 15:53:15 +03:00
|
|
|
}
|
|
|
|
|
2020-08-21 10:07:39 +03:00
|
|
|
return element;
|
2020-08-02 09:00:04 +03:00
|
|
|
}
|
|
|
|
}
|