merged conflicts from master
This commit is contained in:
commit
c0418409bf
14 changed files with 237 additions and 153 deletions
|
@ -19,7 +19,7 @@ var AssetPreview = function AssetPreview(_ref) {
|
||||||
fileExt = _ref$claimData.fileExt,
|
fileExt = _ref$claimData.fileExt,
|
||||||
contentType = _ref$claimData.contentType,
|
contentType = _ref$claimData.contentType,
|
||||||
thumbnail = _ref$claimData.thumbnail;
|
thumbnail = _ref$claimData.thumbnail;
|
||||||
var directSourceLink = "".concat(claimId, "/").concat(name, ".").concat(fileExt);
|
var directSourceLink = "asset/".concat(name, "/").concat(claimId);
|
||||||
var showUrlLink = "/".concat(claimId, "/").concat(name);
|
var showUrlLink = "/".concat(claimId, "/").concat(name);
|
||||||
return _react.default.createElement(_reactRouterDom.Link, {
|
return _react.default.createElement(_reactRouterDom.Link, {
|
||||||
to: showUrlLink
|
to: showUrlLink
|
||||||
|
|
38
client/build/components/AssetShareButtons/index.js
Normal file
38
client/build/components/AssetShareButtons/index.js
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
Object.defineProperty(exports, "__esModule", {
|
||||||
|
value: true
|
||||||
|
});
|
||||||
|
exports.default = void 0;
|
||||||
|
|
||||||
|
var _react = _interopRequireDefault(require("react"));
|
||||||
|
|
||||||
|
var _SpaceBetween = _interopRequireDefault(require("@components/SpaceBetween"));
|
||||||
|
|
||||||
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||||
|
|
||||||
|
var AssetShareButtons = function AssetShareButtons(_ref) {
|
||||||
|
var host = _ref.host,
|
||||||
|
name = _ref.name,
|
||||||
|
shortId = _ref.shortId;
|
||||||
|
return _react.default.createElement(_SpaceBetween.default, null, _react.default.createElement("a", {
|
||||||
|
className: "link--primary",
|
||||||
|
target: "_blank",
|
||||||
|
href: "https://twitter.com/intent/tweet?text=".concat(host, "/").concat(shortId, "/").concat(name)
|
||||||
|
}, "twitter"), _react.default.createElement("a", {
|
||||||
|
className: "link--primary",
|
||||||
|
target: "_blank",
|
||||||
|
href: "https://www.facebook.com/sharer/sharer.php?u=".concat(host, "/").concat(shortId, "/").concat(name)
|
||||||
|
}, "facebook"), _react.default.createElement("a", {
|
||||||
|
className: "link--primary",
|
||||||
|
target: "_blank",
|
||||||
|
href: "http://tumblr.com/widgets/share/tool?canonicalUrl=".concat(host, "/").concat(shortId, "/").concat(name)
|
||||||
|
}, "tumblr"), _react.default.createElement("a", {
|
||||||
|
className: "link--primary",
|
||||||
|
target: "_blank",
|
||||||
|
href: "https://www.reddit.com/submit?url=".concat(host, "/").concat(shortId, "/").concat(name, "&title=").concat(name)
|
||||||
|
}, "reddit"));
|
||||||
|
};
|
||||||
|
|
||||||
|
var _default = AssetShareButtons;
|
||||||
|
exports.default = _default;
|
82
client/build/components/ClickToCopy/index.js
Normal file
82
client/build/components/ClickToCopy/index.js
Normal file
|
@ -0,0 +1,82 @@
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
Object.defineProperty(exports, "__esModule", {
|
||||||
|
value: true
|
||||||
|
});
|
||||||
|
exports.default = void 0;
|
||||||
|
|
||||||
|
var _react = _interopRequireDefault(require("react"));
|
||||||
|
|
||||||
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||||
|
|
||||||
|
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||||
|
|
||||||
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||||
|
|
||||||
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } _setPrototypeOf(subClass.prototype, superClass && superClass.prototype); if (superClass) _setPrototypeOf(subClass, superClass); }
|
||||||
|
|
||||||
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
||||||
|
|
||||||
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
||||||
|
|
||||||
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||||||
|
|
||||||
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
||||||
|
|
||||||
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.getPrototypeOf || function _getPrototypeOf(o) { return o.__proto__; }; return _getPrototypeOf(o); }
|
||||||
|
|
||||||
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
||||||
|
|
||||||
|
var ClickToCopy =
|
||||||
|
/*#__PURE__*/
|
||||||
|
function (_React$Component) {
|
||||||
|
function ClickToCopy(props) {
|
||||||
|
var _this;
|
||||||
|
|
||||||
|
_classCallCheck(this, ClickToCopy);
|
||||||
|
|
||||||
|
_this = _possibleConstructorReturn(this, _getPrototypeOf(ClickToCopy).call(this, props));
|
||||||
|
_this.copyToClipboard = _this.copyToClipboard.bind(_assertThisInitialized(_assertThisInitialized(_this)));
|
||||||
|
return _this;
|
||||||
|
}
|
||||||
|
|
||||||
|
_createClass(ClickToCopy, [{
|
||||||
|
key: "copyToClipboard",
|
||||||
|
value: function copyToClipboard(event) {
|
||||||
|
var elementToCopy = event.target.id;
|
||||||
|
var element = document.getElementById(elementToCopy);
|
||||||
|
element.select();
|
||||||
|
|
||||||
|
try {
|
||||||
|
document.execCommand('copy');
|
||||||
|
} catch (err) {
|
||||||
|
this.setState({
|
||||||
|
error: 'Oops, unable to copy'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: "render",
|
||||||
|
value: function render() {
|
||||||
|
var _this$props = this.props,
|
||||||
|
id = _this$props.id,
|
||||||
|
value = _this$props.value;
|
||||||
|
return _react.default.createElement("input", {
|
||||||
|
id: id,
|
||||||
|
value: value,
|
||||||
|
onClick: this.copyToClipboard,
|
||||||
|
type: "text",
|
||||||
|
className: "click-to-copy",
|
||||||
|
readOnly: true,
|
||||||
|
spellCheck: "false"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}]);
|
||||||
|
|
||||||
|
_inherits(ClickToCopy, _React$Component);
|
||||||
|
|
||||||
|
return ClickToCopy;
|
||||||
|
}(_react.default.Component);
|
||||||
|
|
||||||
|
var _default = ClickToCopy;
|
||||||
|
exports.default = _default;
|
|
@ -82,7 +82,7 @@ function (_React$Component) {
|
||||||
case 'image/gif':
|
case 'image/gif':
|
||||||
return _react.default.createElement("img", {
|
return _react.default.createElement("img", {
|
||||||
className: "asset-image",
|
className: "asset-image",
|
||||||
src: "/".concat(claimId, "/").concat(name, ".").concat(fileExt),
|
src: "/asset/".concat(name, "/").concat(claimId),
|
||||||
alt: name
|
alt: name
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -92,7 +92,7 @@ function (_React$Component) {
|
||||||
controls: true,
|
controls: true,
|
||||||
poster: thumbnail
|
poster: thumbnail
|
||||||
}, _react.default.createElement("source", {
|
}, _react.default.createElement("source", {
|
||||||
src: "/".concat(claimId, "/").concat(name, ".").concat(fileExt)
|
src: "/asset/".concat(name, "/").concat(claimId)
|
||||||
}), _react.default.createElement("p", null, "Your browser does not support the ", _react.default.createElement("code", null, "video"), " element."));
|
}), _react.default.createElement("p", null, "Your browser does not support the ", _react.default.createElement("code", null, "video"), " element."));
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -17,6 +17,10 @@ var _Row = _interopRequireDefault(require("@components/Row"));
|
||||||
|
|
||||||
var _SpaceBetween = _interopRequireDefault(require("@components/SpaceBetween"));
|
var _SpaceBetween = _interopRequireDefault(require("@components/SpaceBetween"));
|
||||||
|
|
||||||
|
var _AssetShareButtons = _interopRequireDefault(require("@components/AssetShareButtons"));
|
||||||
|
|
||||||
|
var _ClickToCopy = _interopRequireDefault(require("@components/ClickToCopy"));
|
||||||
|
|
||||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||||
|
|
||||||
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||||
|
@ -33,80 +37,20 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
||||||
|
|
||||||
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
||||||
|
|
||||||
function _getPrototypeOf(o) { _getPrototypeOf = Object.getPrototypeOf || function _getPrototypeOf(o) { return o.__proto__; }; return _getPrototypeOf(o); }
|
|
||||||
|
|
||||||
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
||||||
|
|
||||||
var AssetShareButtons = function AssetShareButtons(_ref) {
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.getPrototypeOf || function _getPrototypeOf(o) { return o.__proto__; }; return _getPrototypeOf(o); }
|
||||||
var host = _ref.host,
|
|
||||||
name = _ref.name,
|
|
||||||
shortId = _ref.shortId;
|
|
||||||
return _react.default.createElement(_SpaceBetween.default, null, _react.default.createElement("a", {
|
|
||||||
className: "link--primary",
|
|
||||||
target: "_blank",
|
|
||||||
href: "https://twitter.com/intent/tweet?text=".concat(host, "/").concat(shortId, "/").concat(name)
|
|
||||||
}, "twitter"), _react.default.createElement("a", {
|
|
||||||
className: "link--primary",
|
|
||||||
target: "_blank",
|
|
||||||
href: "https://www.facebook.com/sharer/sharer.php?u=".concat(host, "/").concat(shortId, "/").concat(name)
|
|
||||||
}, "facebook"), _react.default.createElement("a", {
|
|
||||||
className: "link--primary",
|
|
||||||
target: "_blank",
|
|
||||||
href: "http://tumblr.com/widgets/share/tool?canonicalUrl=".concat(host, "/").concat(shortId, "/").concat(name)
|
|
||||||
}, "tumblr"), _react.default.createElement("a", {
|
|
||||||
className: "link--primary",
|
|
||||||
target: "_blank",
|
|
||||||
href: "https://www.reddit.com/submit?url=".concat(host, "/").concat(shortId, "/").concat(name, "&title=").concat(name)
|
|
||||||
}, "reddit"));
|
|
||||||
};
|
|
||||||
|
|
||||||
var ClickToCopy = function ClickToCopy(_ref2) {
|
|
||||||
var id = _ref2.id,
|
|
||||||
value = _ref2.value,
|
|
||||||
copyToClipboard = _ref2.copyToClipboard;
|
|
||||||
return _react.default.createElement("input", {
|
|
||||||
id: id,
|
|
||||||
value: value,
|
|
||||||
onClick: copyToClipboard,
|
|
||||||
type: "text",
|
|
||||||
className: "click-to-copy",
|
|
||||||
readOnly: true,
|
|
||||||
spellCheck: "false"
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
var AssetInfo =
|
var AssetInfo =
|
||||||
/*#__PURE__*/
|
/*#__PURE__*/
|
||||||
function (_React$Component) {
|
function (_React$Component) {
|
||||||
function AssetInfo(props) {
|
function AssetInfo() {
|
||||||
var _this;
|
|
||||||
|
|
||||||
_classCallCheck(this, AssetInfo);
|
_classCallCheck(this, AssetInfo);
|
||||||
|
|
||||||
_this = _possibleConstructorReturn(this, _getPrototypeOf(AssetInfo).call(this, props));
|
return _possibleConstructorReturn(this, _getPrototypeOf(AssetInfo).apply(this, arguments));
|
||||||
_this.copyToClipboard = _this.copyToClipboard.bind(_assertThisInitialized(_assertThisInitialized(_this)));
|
|
||||||
return _this;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_createClass(AssetInfo, [{
|
_createClass(AssetInfo, [{
|
||||||
key: "copyToClipboard",
|
|
||||||
value: function copyToClipboard(event) {
|
|
||||||
console.log('event:', event);
|
|
||||||
console.log('event.target:', event.target);
|
|
||||||
console.log('event.target.id:', event.target.id);
|
|
||||||
var elementToCopy = event.target.id;
|
|
||||||
var element = document.getElementById(elementToCopy);
|
|
||||||
element.select();
|
|
||||||
|
|
||||||
try {
|
|
||||||
document.execCommand('copy');
|
|
||||||
} catch (err) {
|
|
||||||
this.setState({
|
|
||||||
error: 'Oops, unable to copy'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, {
|
|
||||||
key: "render",
|
key: "render",
|
||||||
value: function render() {
|
value: function render() {
|
||||||
var _this$props$asset = this.props.asset,
|
var _this$props$asset = this.props.asset,
|
||||||
|
@ -134,31 +78,29 @@ function (_React$Component) {
|
||||||
label: _react.default.createElement(_Label.default, {
|
label: _react.default.createElement(_Label.default, {
|
||||||
value: 'Share:'
|
value: 'Share:'
|
||||||
}),
|
}),
|
||||||
content: _react.default.createElement(AssetShareButtons, {
|
content: _react.default.createElement(_AssetShareButtons.default, {
|
||||||
host: host,
|
host: host,
|
||||||
|
name: name,
|
||||||
shortId: shortId
|
shortId: shortId
|
||||||
})
|
})
|
||||||
})), _react.default.createElement(_Row.default, null, _react.default.createElement(_RowLabeled.default, {
|
})), _react.default.createElement(_Row.default, null, _react.default.createElement(_RowLabeled.default, {
|
||||||
label: _react.default.createElement(_Label.default, {
|
label: _react.default.createElement(_Label.default, {
|
||||||
value: 'Link:'
|
value: 'Link:'
|
||||||
}),
|
}),
|
||||||
content: _react.default.createElement(ClickToCopy, {
|
content: _react.default.createElement(_ClickToCopy.default, {
|
||||||
id: 'short-link',
|
id: 'short-link',
|
||||||
value: "".concat(host, "/").concat(shortId, "/").concat(name, ".").concat(fileExt),
|
value: "".concat(host, "/").concat(shortId, "/").concat(name, ".").concat(fileExt)
|
||||||
copyToClipboard: this.copyToClipboard
|
|
||||||
})
|
})
|
||||||
})), _react.default.createElement(_Row.default, null, _react.default.createElement(_RowLabeled.default, {
|
})), _react.default.createElement(_Row.default, null, _react.default.createElement(_RowLabeled.default, {
|
||||||
label: _react.default.createElement(_Label.default, {
|
label: _react.default.createElement(_Label.default, {
|
||||||
value: 'Embed:'
|
value: 'Embed:'
|
||||||
}),
|
}),
|
||||||
content: _react.default.createElement("div", null, contentType === 'video/mp4' ? _react.default.createElement(ClickToCopy, {
|
content: _react.default.createElement("div", null, contentType === 'video/mp4' ? _react.default.createElement(_ClickToCopy.default, {
|
||||||
id: 'embed-text-video',
|
id: 'embed-text-video',
|
||||||
value: "<video width=\"100%\" controls poster=\"".concat(thumbnail, "\" src=\"").concat(host, "/").concat(claimId, "/").concat(name, ".").concat(fileExt, "\"/></video>"),
|
value: "<video width=\"100%\" controls poster=\"".concat(thumbnail, "\" src=\"").concat(host, "/").concat(claimId, "/").concat(name, ".").concat(fileExt, "\"/></video>")
|
||||||
copyToClipboard: this.copyToClipboard
|
}) : _react.default.createElement(_ClickToCopy.default, {
|
||||||
}) : _react.default.createElement(ClickToCopy, {
|
|
||||||
id: 'embed-text-image',
|
id: 'embed-text-image',
|
||||||
value: "<img src=\"".concat(host, "/").concat(claimId, "/").concat(name, ".").concat(fileExt, "\"/>"),
|
value: "<img src=\"".concat(host, "/").concat(claimId, "/").concat(name, ".").concat(fileExt, "\"/>")
|
||||||
copyToClipboard: this.copyToClipboard
|
|
||||||
}))
|
}))
|
||||||
})), _react.default.createElement(_Row.default, null, _react.default.createElement(_SpaceBetween.default, null, _react.default.createElement(_reactRouterDom.Link, {
|
})), _react.default.createElement(_Row.default, null, _react.default.createElement(_SpaceBetween.default, null, _react.default.createElement(_reactRouterDom.Link, {
|
||||||
className: "link--primary",
|
className: "link--primary",
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
flex: 1 0 auto;
|
flex: 1 0 auto;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
/*align-items: center;*/
|
||||||
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.asset-image, .asset-video {
|
.asset-image, .asset-video {
|
||||||
|
|
|
@ -2,7 +2,7 @@ import React from 'react';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
const AssetPreview = ({ defaultThumbnail, claimData: { name, claimId, fileExt, contentType, thumbnail } }) => {
|
const AssetPreview = ({ defaultThumbnail, claimData: { name, claimId, fileExt, contentType, thumbnail } }) => {
|
||||||
const directSourceLink = `${claimId}/${name}.${fileExt}`;
|
const directSourceLink = `asset/${name}/${claimId}`;
|
||||||
const showUrlLink = `/${claimId}/${name}`;
|
const showUrlLink = `/${claimId}/${name}`;
|
||||||
return (
|
return (
|
||||||
<Link to={showUrlLink} >
|
<Link to={showUrlLink} >
|
||||||
|
|
39
client/src/components/AssetShareButtons/index.js
Normal file
39
client/src/components/AssetShareButtons/index.js
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
import React from 'react';
|
||||||
|
import SpaceBetween from '@components/SpaceBetween';
|
||||||
|
|
||||||
|
const AssetShareButtons = ({ host, name, shortId }) => {
|
||||||
|
return (
|
||||||
|
<SpaceBetween >
|
||||||
|
<a
|
||||||
|
className='link--primary'
|
||||||
|
target='_blank'
|
||||||
|
href={`https://twitter.com/intent/tweet?text=${host}/${shortId}/${name}`}
|
||||||
|
>
|
||||||
|
twitter
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
className='link--primary'
|
||||||
|
target='_blank'
|
||||||
|
href={`https://www.facebook.com/sharer/sharer.php?u=${host}/${shortId}/${name}`}
|
||||||
|
>
|
||||||
|
facebook
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
className='link--primary'
|
||||||
|
target='_blank'
|
||||||
|
href={`http://tumblr.com/widgets/share/tool?canonicalUrl=${host}/${shortId}/${name}`}
|
||||||
|
>
|
||||||
|
tumblr
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
className='link--primary'
|
||||||
|
target='_blank'
|
||||||
|
href={`https://www.reddit.com/submit?url=${host}/${shortId}/${name}&title=${name}`}
|
||||||
|
>
|
||||||
|
reddit
|
||||||
|
</a>
|
||||||
|
</SpaceBetween>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default AssetShareButtons;
|
34
client/src/components/ClickToCopy/index.jsx
Normal file
34
client/src/components/ClickToCopy/index.jsx
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
class ClickToCopy extends React.Component {
|
||||||
|
constructor (props) {
|
||||||
|
super(props);
|
||||||
|
this.copyToClipboard = this.copyToClipboard.bind(this);
|
||||||
|
}
|
||||||
|
copyToClipboard (event) {
|
||||||
|
const elementToCopy = event.target.id;
|
||||||
|
const element = document.getElementById(elementToCopy);
|
||||||
|
element.select();
|
||||||
|
try {
|
||||||
|
document.execCommand('copy');
|
||||||
|
} catch (err) {
|
||||||
|
this.setState({error: 'Oops, unable to copy'});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
render () {
|
||||||
|
const {id, value} = this.props;
|
||||||
|
return (
|
||||||
|
<input
|
||||||
|
id={id}
|
||||||
|
value={value}
|
||||||
|
onClick={this.copyToClipboard}
|
||||||
|
type='text'
|
||||||
|
className='click-to-copy'
|
||||||
|
readOnly
|
||||||
|
spellCheck='false'
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ClickToCopy;
|
|
@ -39,7 +39,7 @@ class AssetDisplay extends React.Component {
|
||||||
return (
|
return (
|
||||||
<img
|
<img
|
||||||
className='asset-image'
|
className='asset-image'
|
||||||
src={`/${claimId}/${name}.${fileExt}`}
|
src={`/asset/${name}/${claimId}`}
|
||||||
alt={name}
|
alt={name}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
@ -49,7 +49,9 @@ class AssetDisplay extends React.Component {
|
||||||
className='asset-video'
|
className='asset-video'
|
||||||
controls poster={thumbnail}
|
controls poster={thumbnail}
|
||||||
>
|
>
|
||||||
<source src={`/${claimId}/${name}.${fileExt}`} />
|
<source
|
||||||
|
src={`/asset/${name}/${claimId}`}
|
||||||
|
/>
|
||||||
<p>Your browser does not support the <code>video</code> element.</p>
|
<p>Your browser does not support the <code>video</code> element.</p>
|
||||||
</video>
|
</video>
|
||||||
);
|
);
|
||||||
|
|
|
@ -4,74 +4,10 @@ import Label from '@components/Label';
|
||||||
import RowLabeled from '@components/RowLabeled';
|
import RowLabeled from '@components/RowLabeled';
|
||||||
import Row from '@components/Row';
|
import Row from '@components/Row';
|
||||||
import SpaceBetween from '@components/SpaceBetween';
|
import SpaceBetween from '@components/SpaceBetween';
|
||||||
|
import AssetShareButtons from '@components/AssetShareButtons';
|
||||||
const AssetShareButtons = ({ host, name, shortId }) => {
|
import ClickToCopy from '@components/ClickToCopy';
|
||||||
return (
|
|
||||||
<SpaceBetween >
|
|
||||||
<a
|
|
||||||
className='link--primary'
|
|
||||||
target='_blank'
|
|
||||||
href={`https://twitter.com/intent/tweet?text=${host}/${shortId}/${name}`}
|
|
||||||
>
|
|
||||||
twitter
|
|
||||||
</a>
|
|
||||||
<a
|
|
||||||
className='link--primary'
|
|
||||||
target='_blank'
|
|
||||||
href={`https://www.facebook.com/sharer/sharer.php?u=${host}/${shortId}/${name}`}
|
|
||||||
>
|
|
||||||
facebook
|
|
||||||
</a>
|
|
||||||
<a
|
|
||||||
className='link--primary'
|
|
||||||
target='_blank'
|
|
||||||
href={`http://tumblr.com/widgets/share/tool?canonicalUrl=${host}/${shortId}/${name}`}
|
|
||||||
>
|
|
||||||
tumblr
|
|
||||||
</a>
|
|
||||||
<a
|
|
||||||
className='link--primary'
|
|
||||||
target='_blank'
|
|
||||||
href={`https://www.reddit.com/submit?url=${host}/${shortId}/${name}&title=${name}`}
|
|
||||||
>
|
|
||||||
reddit
|
|
||||||
</a>
|
|
||||||
</SpaceBetween>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const ClickToCopy = ({id, value, copyToClipboard}) => {
|
|
||||||
return (
|
|
||||||
<input
|
|
||||||
id={id}
|
|
||||||
value={value}
|
|
||||||
onClick={copyToClipboard}
|
|
||||||
type='text'
|
|
||||||
className='click-to-copy'
|
|
||||||
readOnly
|
|
||||||
spellCheck='false'
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
class AssetInfo extends React.Component {
|
class AssetInfo extends React.Component {
|
||||||
constructor (props) {
|
|
||||||
super(props);
|
|
||||||
this.copyToClipboard = this.copyToClipboard.bind(this);
|
|
||||||
}
|
|
||||||
copyToClipboard (event) {
|
|
||||||
console.log('event:', event);
|
|
||||||
console.log('event.target:', event.target);
|
|
||||||
console.log('event.target.id:', event.target.id);
|
|
||||||
const elementToCopy = event.target.id;
|
|
||||||
const element = document.getElementById(elementToCopy);
|
|
||||||
element.select();
|
|
||||||
try {
|
|
||||||
document.execCommand('copy');
|
|
||||||
} catch (err) {
|
|
||||||
this.setState({error: 'Oops, unable to copy'});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
render () {
|
render () {
|
||||||
const { asset: { shortId, claimData : { channelName, certificateId, description, name, claimId, fileExt, contentType, thumbnail, host } } } = this.props;
|
const { asset: { shortId, claimData : { channelName, certificateId, description, name, claimId, fileExt, contentType, thumbnail, host } } } = this.props;
|
||||||
return (
|
return (
|
||||||
|
@ -99,6 +35,7 @@ class AssetInfo extends React.Component {
|
||||||
content={
|
content={
|
||||||
<AssetShareButtons
|
<AssetShareButtons
|
||||||
host={host}
|
host={host}
|
||||||
|
name={name}
|
||||||
shortId={shortId}
|
shortId={shortId}
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
|
@ -114,7 +51,6 @@ class AssetInfo extends React.Component {
|
||||||
<ClickToCopy
|
<ClickToCopy
|
||||||
id={'short-link'}
|
id={'short-link'}
|
||||||
value={`${host}/${shortId}/${name}.${fileExt}`}
|
value={`${host}/${shortId}/${name}.${fileExt}`}
|
||||||
copyToClipboard={this.copyToClipboard}
|
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
@ -131,13 +67,11 @@ class AssetInfo extends React.Component {
|
||||||
<ClickToCopy
|
<ClickToCopy
|
||||||
id={'embed-text-video'}
|
id={'embed-text-video'}
|
||||||
value={`<video width="100%" controls poster="${thumbnail}" src="${host}/${claimId}/${name}.${fileExt}"/></video>`}
|
value={`<video width="100%" controls poster="${thumbnail}" src="${host}/${claimId}/${name}.${fileExt}"/></video>`}
|
||||||
copyToClipboard={this.copyToClipboard}
|
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<ClickToCopy
|
<ClickToCopy
|
||||||
id={'embed-text-image'}
|
id={'embed-text-image'}
|
||||||
value={`<img src="${host}/${claimId}/${name}.${fileExt}"/>`}
|
value={`<img src="${host}/${claimId}/${name}.${fileExt}"/>`}
|
||||||
copyToClipboard={this.copyToClipboard}
|
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -12,9 +12,18 @@ const parsePublishApiRequestFiles = ({file, thumbnail}) => {
|
||||||
throw new Error('no file type found');
|
throw new Error('no file type found');
|
||||||
}
|
}
|
||||||
if (!file.size) {
|
if (!file.size) {
|
||||||
throw new Error('no file type found');
|
throw new Error('no file size found');
|
||||||
}
|
}
|
||||||
// validate the file name
|
// validate the file name
|
||||||
|
if (!file.name) {
|
||||||
|
throw new Error('no file name found');
|
||||||
|
}
|
||||||
|
if (file.name.indexOf('.') < 0) {
|
||||||
|
throw new Error('no file extension found in file name');
|
||||||
|
}
|
||||||
|
if (file.name.indexOf('.') === 0) {
|
||||||
|
throw new Error('file name cannot start with "."');
|
||||||
|
}
|
||||||
if (/'/.test(file.name)) {
|
if (/'/.test(file.name)) {
|
||||||
throw new Error('apostrophes are not allowed in the file name');
|
throw new Error('apostrophes are not allowed in the file name');
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,7 @@ const validateFileTypeAndSize = (file) => {
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
logger.debug('publish > file validation > unrecognized file type');
|
logger.debug('publish > file validation > unrecognized file type');
|
||||||
throw new Error('The ' + file.type + ' content type is not supported. Only, .jpeg, .png, .gif, and .mp4 files are currently supported.');
|
throw new Error('The ' + file.type + ' content type is not supported. Only, image/jpg, image/png, image/gif, and video/mp4 content types are currently supported.');
|
||||||
}
|
}
|
||||||
return file;
|
return file;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,13 +1,16 @@
|
||||||
const logger = require('winston');
|
const logger = require('winston');
|
||||||
|
|
||||||
const serveFile = ({ filePath, fileType }, res) => {
|
const serveFile = ({ filePath, fileType }, res) => {
|
||||||
logger.verbose(`serving file: ${filePath}`);
|
if (!fileType) {
|
||||||
|
logger.error(`no fileType provided for ${filePath}`);
|
||||||
|
}
|
||||||
const sendFileOptions = {
|
const sendFileOptions = {
|
||||||
headers: {
|
headers: {
|
||||||
'X-Content-Type-Options': 'nosniff',
|
'X-Content-Type-Options': 'nosniff',
|
||||||
'Content-Type' : fileType || 'image/jpeg',
|
'Content-Type' : fileType,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
logger.debug(`fileOptions for ${filePath}:`, sendFileOptions);
|
||||||
res.status(200).sendFile(filePath, sendFileOptions);
|
res.status(200).sendFile(filePath, sendFileOptions);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue