@imposium-hub/components 1.54.1 → 1.54.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/assets/AssetsTableTypeFilter.js +27 -8
- package/dist/cjs/components/assets/AssetsTableTypeFilter.js.map +1 -1
- package/dist/cjs/constants/assets.d.ts +1 -0
- package/dist/cjs/constants/assets.js +13 -1
- package/dist/cjs/constants/assets.js.map +1 -1
- package/dist/esm/components/assets/AssetsTableTypeFilter.js +4 -7
- package/dist/esm/components/assets/AssetsTableTypeFilter.js.map +1 -1
- package/dist/esm/constants/assets.d.ts +1 -0
- package/dist/esm/constants/assets.js +12 -0
- package/dist/esm/constants/assets.js.map +1 -1
- package/package.json +1 -1
- package/src/components/assets/AssetsTableTypeFilter.tsx +10 -13
- package/src/constants/assets.ts +13 -0
- package/dist/cjs/constants/assets_BACKUP_14924.d.ts +0 -20
- package/dist/cjs/constants/assets_BACKUP_14924.js +0 -30
- package/dist/cjs/constants/assets_BACKUP_14924.js.map +0 -1
- package/dist/cjs/constants/assets_BASE_14924.d.ts +0 -21
- package/dist/cjs/constants/assets_BASE_14924.js +0 -32
- package/dist/cjs/constants/assets_BASE_14924.js.map +0 -1
- package/dist/cjs/constants/assets_LOCAL_14924.d.ts +0 -20
- package/dist/cjs/constants/assets_LOCAL_14924.js +0 -30
- package/dist/cjs/constants/assets_LOCAL_14924.js.map +0 -1
- package/dist/cjs/constants/assets_REMOTE_14924.d.ts +0 -21
- package/dist/cjs/constants/assets_REMOTE_14924.js +0 -32
- package/dist/cjs/constants/assets_REMOTE_14924.js.map +0 -1
- package/dist/esm/constants/assets_BACKUP_14924.d.ts +0 -20
- package/dist/esm/constants/assets_BACKUP_14924.js +0 -26
- package/dist/esm/constants/assets_BACKUP_14924.js.map +0 -1
- package/dist/esm/constants/assets_BASE_14924.d.ts +0 -21
- package/dist/esm/constants/assets_BASE_14924.js +0 -28
- package/dist/esm/constants/assets_BASE_14924.js.map +0 -1
- package/dist/esm/constants/assets_LOCAL_14924.d.ts +0 -20
- package/dist/esm/constants/assets_LOCAL_14924.js +0 -26
- package/dist/esm/constants/assets_LOCAL_14924.js.map +0 -1
- package/dist/esm/constants/assets_REMOTE_14924.d.ts +0 -21
- package/dist/esm/constants/assets_REMOTE_14924.js +0 -28
- package/dist/esm/constants/assets_REMOTE_14924.js.map +0 -1
|
@@ -37,6 +37,17 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
37
37
|
__setModuleDefault(result, mod);
|
|
38
38
|
return result;
|
|
39
39
|
};
|
|
40
|
+
var __values = (this && this.__values) || function(o) {
|
|
41
|
+
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
42
|
+
if (m) return m.call(o);
|
|
43
|
+
if (o && typeof o.length === "number") return {
|
|
44
|
+
next: function () {
|
|
45
|
+
if (o && i >= o.length) o = void 0;
|
|
46
|
+
return { value: o && o[i++], done: !o };
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
50
|
+
};
|
|
40
51
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
41
52
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
42
53
|
};
|
|
@@ -58,18 +69,26 @@ var AssetsTableTypeFilter = /** @class */ (function (_super) {
|
|
|
58
69
|
_this.props.updateFilters({ type: freshTypeFilter, page: 1 });
|
|
59
70
|
};
|
|
60
71
|
_this.render = function () {
|
|
72
|
+
var e_1, _a;
|
|
61
73
|
var openMenu = _this.state.openMenu;
|
|
62
74
|
var type = _this.props.assetFilters.type;
|
|
63
75
|
var filterButtons = [];
|
|
64
|
-
var _loop_1 = function (
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
filterButtons.push(React.createElement("div", { key: t_1, className: 'asset-filter', onClick: function () { return _this.handleFilterChange(t_1); } },
|
|
68
|
-
React.createElement(AssetsTypeIcon_1.default, { type: t_1 })));
|
|
69
|
-
}
|
|
76
|
+
var _loop_1 = function (assetTypeOption) {
|
|
77
|
+
filterButtons.push(React.createElement("div", { key: assetTypeOption, className: 'asset-filter', onClick: function () { return _this.handleFilterChange(assetTypeOption); } },
|
|
78
|
+
React.createElement(AssetsTypeIcon_1.default, { type: assetTypeOption })));
|
|
70
79
|
};
|
|
71
|
-
|
|
72
|
-
|
|
80
|
+
try {
|
|
81
|
+
for (var ASSET_TYPE_FILTER_OPTIONS_1 = __values(assets_1.ASSET_TYPE_FILTER_OPTIONS), ASSET_TYPE_FILTER_OPTIONS_1_1 = ASSET_TYPE_FILTER_OPTIONS_1.next(); !ASSET_TYPE_FILTER_OPTIONS_1_1.done; ASSET_TYPE_FILTER_OPTIONS_1_1 = ASSET_TYPE_FILTER_OPTIONS_1.next()) {
|
|
82
|
+
var assetTypeOption = ASSET_TYPE_FILTER_OPTIONS_1_1.value;
|
|
83
|
+
_loop_1(assetTypeOption);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
87
|
+
finally {
|
|
88
|
+
try {
|
|
89
|
+
if (ASSET_TYPE_FILTER_OPTIONS_1_1 && !ASSET_TYPE_FILTER_OPTIONS_1_1.done && (_a = ASSET_TYPE_FILTER_OPTIONS_1.return)) _a.call(ASSET_TYPE_FILTER_OPTIONS_1);
|
|
90
|
+
}
|
|
91
|
+
finally { if (e_1) throw e_1.error; }
|
|
73
92
|
}
|
|
74
93
|
return (React.createElement("div", { className: 'centered cell' },
|
|
75
94
|
React.createElement(Button_1.default, { tooltip: 'Filter by Asset type', buttonRef: _this.typeFilterRef, onClick: function () { return _this.setState({ openMenu: !openMenu }); } },
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AssetsTableTypeFilter.js","sourceRoot":"","sources":["../../../../src/components/assets/AssetsTableTypeFilter.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AssetsTableTypeFilter.js","sourceRoot":"","sources":["../../../../src/components/assets/AssetsTableTypeFilter.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2CAA+B;AAC/B,oEAA8C;AAC9C,4DAAsC;AACtC,kEAAoD;AACpD,mEAAkE;AAClE,2CAAsC;AACtC,+BAA2C;AAC3C,iDAAgF;AAWhF;IAAoC,yCAGnC;IAGG,+BAAY,KAA6B;QAAzC,YACI,kBAAM,KAAK,CAAC,SAOf;QAEO,wBAAkB,GAAG,UAAC,IAAY;YACtC,IAAM,eAAe,GAAW,IAAI,KAAK,oBAAW,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC;YACrE,KAAI,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,IAAI,EAAE,eAAe,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC;QACjE,CAAC,CAAC;QAEK,YAAM,GAAG;;YACJ,IAAA,QAAQ,GAAK,KAAI,CAAC,KAAK,SAAf,CAAgB;YAEZ,IAAA,IAAI,GACpB,KAAI,CAAC,KAAK,kBADU,CACT;YACf,IAAM,aAAa,GAAQ,EAAE,CAAC;oCAEnB,eAAe;gBACtB,aAAa,CAAC,IAAI,CACd,6BACI,GAAG,EAAE,eAAe,EACpB,SAAS,EAAC,cAAc,EACxB,OAAO,EAAE,cAAM,OAAA,KAAI,CAAC,kBAAkB,CAAC,eAAe,CAAC,EAAxC,CAAwC;oBACvD,oBAAC,wBAAc,IAAC,IAAI,EAAE,eAAe,GAAI,CACvC,CACT,CAAC;;;gBARN,KAA8B,IAAA,8BAAA,SAAA,kCAAyB,CAAA,oEAAA;oBAAlD,IAAM,eAAe,sCAAA;4BAAf,eAAe;iBASzB;;;;;;;;;YAED,OAAO,CACH,6BAAK,SAAS,EAAC,eAAe;gBAC1B,oBAAC,gBAAM,IACH,OAAO,EAAC,sBAAsB,EAC9B,SAAS,EAAE,KAAI,CAAC,aAAa,EAC7B,OAAO,EAAE,cAAM,OAAA,KAAI,CAAC,QAAQ,CAAC,EAAE,QAAQ,EAAE,CAAC,QAAQ,EAAE,CAAC,EAAtC,CAAsC;oBACrD,oBAAC,wBAAc,IAAC,IAAI,EAAE,IAAI,IAAI,QAAQ,GAAI;oBAE1C,oBAAC,kBAAgB,IACb,IAAI,EAAE,QAAQ,EACd,QAAQ,EAAC,YAAY,EACrB,SAAS,EAAE,KAAI,CAAC,aAAa,EAC7B,cAAc,EAAE,cAAM,OAAA,KAAI,CAAC,QAAQ,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,EAAlC,CAAkC,IACvD,aAAa,CACC,CACd,CACP,CACT,CAAC;QACN,CAAC,CAAC;QAhDE,KAAI,CAAC,KAAK,GAAG;YACT,QAAQ,EAAE,KAAK;SAClB,CAAC;QAEF,KAAI,CAAC,aAAa,GAAG,KAAK,CAAC,SAAS,EAAE,CAAC;;IAC3C,CAAC;IA4CL,4BAAC;AAAD,CAAC,AA1DD,CAAoC,KAAK,CAAC,aAAa,GA0DtD;AAED,IAAM,kBAAkB,GAAG,UAAC,QAAQ;IAChC,OAAO,IAAA,0BAAkB,EAAC,EAAE,aAAa,+BAAA,EAAE,EAAE,QAAQ,CAAC,CAAC;AAC3D,CAAC,CAAC;AAEF,IAAM,eAAe,GAAG,UAAC,KAAK;IAC1B,OAAO,EAAE,YAAY,EAAE,KAAK,CAAC,YAAY,EAAE,CAAC;AAChD,CAAC,CAAC;AAEF,IAAM,6BAA6B,GAAG,IAAA,qBAAO,EACzC,eAAe,EACf,kBAAkB,CACrB,CAAC,KAAK,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC;AACrC,kBAAe,6BAA6B,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var _a;
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.HEADER_HEIGHT = exports.PREVIEW_MAX_HEIGHT = exports.PREVIEW_MAX_WIDTH = exports.ASSET_COLORS = exports.ASSET_TYPES = exports.ASSET_ORIGIN = exports.ASSET_DISTRO = void 0;
|
|
4
|
+
exports.HEADER_HEIGHT = exports.PREVIEW_MAX_HEIGHT = exports.PREVIEW_MAX_WIDTH = exports.ASSET_COLORS = exports.ASSET_TYPE_FILTER_OPTIONS = exports.ASSET_TYPES = exports.ASSET_ORIGIN = exports.ASSET_DISTRO = void 0;
|
|
5
5
|
exports.ASSET_DISTRO = 'https://d188rqu2y6x0ew.cloudfront.net';
|
|
6
6
|
exports.ASSET_ORIGIN = 'https://imposium-footage.s3.us-east-1.amazonaws.com';
|
|
7
7
|
exports.ASSET_TYPES = {
|
|
@@ -17,6 +17,18 @@ exports.ASSET_TYPES = {
|
|
|
17
17
|
LUT: 'lut',
|
|
18
18
|
ALL: 'all'
|
|
19
19
|
};
|
|
20
|
+
exports.ASSET_TYPE_FILTER_OPTIONS = [
|
|
21
|
+
exports.ASSET_TYPES.VIDEO_COMPOSITION,
|
|
22
|
+
exports.ASSET_TYPES.STATIC_COMPOSITION,
|
|
23
|
+
exports.ASSET_TYPES.VIDEO,
|
|
24
|
+
exports.ASSET_TYPES.IMAGE,
|
|
25
|
+
exports.ASSET_TYPES.TEMPLATE,
|
|
26
|
+
exports.ASSET_TYPES.AUDIO,
|
|
27
|
+
exports.ASSET_TYPES.IMAGE_SEQUENCE,
|
|
28
|
+
exports.ASSET_TYPES.FONT,
|
|
29
|
+
exports.ASSET_TYPES.LUT,
|
|
30
|
+
exports.ASSET_TYPES.ALL
|
|
31
|
+
];
|
|
20
32
|
exports.ASSET_COLORS = (_a = {},
|
|
21
33
|
_a[exports.ASSET_TYPES.VIDEO] = 'rgba(236,22,150, 1)',
|
|
22
34
|
_a[exports.ASSET_TYPES.IMAGE] = 'rgba(241,191,21, 1)',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"assets.js","sourceRoot":"","sources":["../../../src/constants/assets.ts"],"names":[],"mappings":";;;;AAAa,QAAA,YAAY,GAAG,uCAAuC,CAAC;AAEvD,QAAA,YAAY,GAAG,qDAAqD,CAAC;AAErE,QAAA,WAAW,GAAG;IACvB,iBAAiB,EAAE,mBAAmB;IACtC,kBAAkB,EAAE,oBAAoB;IACxC,aAAa,EAAE,eAAe;IAC9B,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;CACb,CAAC;AAEW,QAAA,YAAY;IACrB,GAAC,mBAAW,CAAC,KAAK,IAAG,qBAAqB;IAC1C,GAAC,mBAAW,CAAC,KAAK,IAAG,qBAAqB;IAC1C,GAAC,mBAAW,CAAC,KAAK,IAAG,oBAAoB;IACzC,GAAC,mBAAW,CAAC,QAAQ,IAAG,sBAAsB;IAC9C,GAAC,mBAAW,CAAC,iBAAiB,IAAG,sBAAsB;IACvD,GAAC,mBAAW,CAAC,cAAc,IAAG,qBAAqB;IACnD,GAAC,mBAAW,CAAC,aAAa,IAAG,sBAAsB;QACrD;AAEW,QAAA,iBAAiB,GAAW,GAAG,CAAC;AAEhC,QAAA,kBAAkB,GAAW,GAAG,CAAC;AAEjC,QAAA,aAAa,GAAW,EAAE,CAAC"}
|
|
1
|
+
{"version":3,"file":"assets.js","sourceRoot":"","sources":["../../../src/constants/assets.ts"],"names":[],"mappings":";;;;AAAa,QAAA,YAAY,GAAG,uCAAuC,CAAC;AAEvD,QAAA,YAAY,GAAG,qDAAqD,CAAC;AAErE,QAAA,WAAW,GAAG;IACvB,iBAAiB,EAAE,mBAAmB;IACtC,kBAAkB,EAAE,oBAAoB;IACxC,aAAa,EAAE,eAAe;IAC9B,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;CACb,CAAC;AAEW,QAAA,yBAAyB,GAAG;IACrC,mBAAW,CAAC,iBAAiB;IAC7B,mBAAW,CAAC,kBAAkB;IAC9B,mBAAW,CAAC,KAAK;IACjB,mBAAW,CAAC,KAAK;IACjB,mBAAW,CAAC,QAAQ;IACpB,mBAAW,CAAC,KAAK;IACjB,mBAAW,CAAC,cAAc;IAC1B,mBAAW,CAAC,IAAI;IAChB,mBAAW,CAAC,GAAG;IACf,mBAAW,CAAC,GAAG;CAClB,CAAC;AAEW,QAAA,YAAY;IACrB,GAAC,mBAAW,CAAC,KAAK,IAAG,qBAAqB;IAC1C,GAAC,mBAAW,CAAC,KAAK,IAAG,qBAAqB;IAC1C,GAAC,mBAAW,CAAC,KAAK,IAAG,oBAAoB;IACzC,GAAC,mBAAW,CAAC,QAAQ,IAAG,sBAAsB;IAC9C,GAAC,mBAAW,CAAC,iBAAiB,IAAG,sBAAsB;IACvD,GAAC,mBAAW,CAAC,cAAc,IAAG,qBAAqB;IACnD,GAAC,mBAAW,CAAC,aAAa,IAAG,sBAAsB;QACrD;AAEW,QAAA,iBAAiB,GAAW,GAAG,CAAC;AAEhC,QAAA,kBAAkB,GAAW,GAAG,CAAC;AAEjC,QAAA,aAAa,GAAW,EAAE,CAAC"}
|
|
@@ -5,7 +5,7 @@ import ImposiumDropdown from '../dropdown/Dropdown';
|
|
|
5
5
|
import { updateFilters } from '../../redux/actions/asset-filters';
|
|
6
6
|
import { connect } from 'react-redux';
|
|
7
7
|
import { bindActionCreators } from 'redux';
|
|
8
|
-
import { ASSET_TYPES } from '../../constants/assets';
|
|
8
|
+
import { ASSET_TYPES, ASSET_TYPE_FILTER_OPTIONS } from '../../constants/assets';
|
|
9
9
|
class AssetsTableTypeFilter extends React.PureComponent {
|
|
10
10
|
typeFilterRef;
|
|
11
11
|
constructor(props) {
|
|
@@ -23,12 +23,9 @@ class AssetsTableTypeFilter extends React.PureComponent {
|
|
|
23
23
|
const { openMenu } = this.state;
|
|
24
24
|
const { assetFilters: { type } } = this.props;
|
|
25
25
|
const filterButtons = [];
|
|
26
|
-
for (const
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
filterButtons.push(React.createElement("div", { key: t, className: 'asset-filter', onClick: () => this.handleFilterChange(t) },
|
|
30
|
-
React.createElement(AssetsTypeIcon, { type: t })));
|
|
31
|
-
}
|
|
26
|
+
for (const assetTypeOption of ASSET_TYPE_FILTER_OPTIONS) {
|
|
27
|
+
filterButtons.push(React.createElement("div", { key: assetTypeOption, className: 'asset-filter', onClick: () => this.handleFilterChange(assetTypeOption) },
|
|
28
|
+
React.createElement(AssetsTypeIcon, { type: assetTypeOption })));
|
|
32
29
|
}
|
|
33
30
|
return (React.createElement("div", { className: 'centered cell' },
|
|
34
31
|
React.createElement(Button, { tooltip: 'Filter by Asset type', buttonRef: this.typeFilterRef, onClick: () => this.setState({ openMenu: !openMenu }) },
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AssetsTableTypeFilter.js","sourceRoot":"","sources":["../../../../src/components/assets/AssetsTableTypeFilter.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAC9C,OAAO,MAAM,MAAM,kBAAkB,CAAC;AACtC,OAAO,gBAAgB,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,mCAAmC,CAAC;AAClE,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AACtC,OAAO,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AAC3C,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"AssetsTableTypeFilter.js","sourceRoot":"","sources":["../../../../src/components/assets/AssetsTableTypeFilter.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAC9C,OAAO,MAAM,MAAM,kBAAkB,CAAC;AACtC,OAAO,gBAAgB,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,mCAAmC,CAAC;AAClE,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AACtC,OAAO,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AAC3C,OAAO,EAAE,WAAW,EAAE,yBAAyB,EAAE,MAAM,wBAAwB,CAAC;AAWhF,MAAM,qBAAsB,SAAQ,KAAK,CAAC,aAGzC;IACoB,aAAa,CAAiB;IAE/C,YAAY,KAA6B;QACrC,KAAK,CAAC,KAAK,CAAC,CAAC;QAEb,IAAI,CAAC,KAAK,GAAG;YACT,QAAQ,EAAE,KAAK;SAClB,CAAC;QAEF,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC,SAAS,EAAE,CAAC;IAC3C,CAAC;IAEO,kBAAkB,GAAG,CAAC,IAAY,EAAQ,EAAE;QAChD,MAAM,eAAe,GAAW,IAAI,KAAK,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC;QACrE,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,EAAE,IAAI,EAAE,eAAe,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC;IACjE,CAAC,CAAC;IAEK,MAAM,GAAG,GAAgB,EAAE;QAC9B,MAAM,EAAE,QAAQ,EAAE,GAAG,IAAI,CAAC,KAAK,CAAC;QAChC,MAAM,EACF,YAAY,EAAE,EAAE,IAAI,EAAE,EACzB,GAAG,IAAI,CAAC,KAAK,CAAC;QACf,MAAM,aAAa,GAAQ,EAAE,CAAC;QAE9B,KAAK,MAAM,eAAe,IAAI,yBAAyB,EAAE;YACrD,aAAa,CAAC,IAAI,CACd,6BACI,GAAG,EAAE,eAAe,EACpB,SAAS,EAAC,cAAc,EACxB,OAAO,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,kBAAkB,CAAC,eAAe,CAAC;gBACvD,oBAAC,cAAc,IAAC,IAAI,EAAE,eAAe,GAAI,CACvC,CACT,CAAC;SACL;QAED,OAAO,CACH,6BAAK,SAAS,EAAC,eAAe;YAC1B,oBAAC,MAAM,IACH,OAAO,EAAC,sBAAsB,EAC9B,SAAS,EAAE,IAAI,CAAC,aAAa,EAC7B,OAAO,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,QAAQ,EAAE,CAAC,QAAQ,EAAE,CAAC;gBACrD,oBAAC,cAAc,IAAC,IAAI,EAAE,IAAI,IAAI,QAAQ,GAAI;gBAE1C,oBAAC,gBAAgB,IACb,IAAI,EAAE,QAAQ,EACd,QAAQ,EAAC,YAAY,EACrB,SAAS,EAAE,IAAI,CAAC,aAAa,EAC7B,cAAc,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,IACvD,aAAa,CACC,CACd,CACP,CACT,CAAC;IACN,CAAC,CAAC;CACL;AAED,MAAM,kBAAkB,GAAG,CAAC,QAAQ,EAAO,EAAE;IACzC,OAAO,kBAAkB,CAAC,EAAE,aAAa,EAAE,EAAE,QAAQ,CAAC,CAAC;AAC3D,CAAC,CAAC;AAEF,MAAM,eAAe,GAAG,CAAC,KAAK,EAAO,EAAE;IACnC,OAAO,EAAE,YAAY,EAAE,KAAK,CAAC,YAAY,EAAE,CAAC;AAChD,CAAC,CAAC;AAEF,MAAM,6BAA6B,GAAG,OAAO,CACzC,eAAe,EACf,kBAAkB,CACrB,CAAC,KAAK,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC;AACrC,eAAe,6BAA6B,CAAC"}
|
|
@@ -13,6 +13,18 @@ export const ASSET_TYPES = {
|
|
|
13
13
|
LUT: 'lut',
|
|
14
14
|
ALL: 'all'
|
|
15
15
|
};
|
|
16
|
+
export const ASSET_TYPE_FILTER_OPTIONS = [
|
|
17
|
+
ASSET_TYPES.VIDEO_COMPOSITION,
|
|
18
|
+
ASSET_TYPES.STATIC_COMPOSITION,
|
|
19
|
+
ASSET_TYPES.VIDEO,
|
|
20
|
+
ASSET_TYPES.IMAGE,
|
|
21
|
+
ASSET_TYPES.TEMPLATE,
|
|
22
|
+
ASSET_TYPES.AUDIO,
|
|
23
|
+
ASSET_TYPES.IMAGE_SEQUENCE,
|
|
24
|
+
ASSET_TYPES.FONT,
|
|
25
|
+
ASSET_TYPES.LUT,
|
|
26
|
+
ASSET_TYPES.ALL
|
|
27
|
+
];
|
|
16
28
|
export const ASSET_COLORS = {
|
|
17
29
|
[ASSET_TYPES.VIDEO]: 'rgba(236,22,150, 1)',
|
|
18
30
|
[ASSET_TYPES.IMAGE]: 'rgba(241,191,21, 1)',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"assets.js","sourceRoot":"","sources":["../../../src/constants/assets.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,YAAY,GAAG,uCAAuC,CAAC;AAEpE,MAAM,CAAC,MAAM,YAAY,GAAG,qDAAqD,CAAC;AAElF,MAAM,CAAC,MAAM,WAAW,GAAG;IACvB,iBAAiB,EAAE,mBAAmB;IACtC,kBAAkB,EAAE,oBAAoB;IACxC,aAAa,EAAE,eAAe;IAC9B,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;CACb,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG;IACxB,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,qBAAqB;IAC1C,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,qBAAqB;IAC1C,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,oBAAoB;IACzC,CAAC,WAAW,CAAC,QAAQ,CAAC,EAAE,sBAAsB;IAC9C,CAAC,WAAW,CAAC,iBAAiB,CAAC,EAAE,sBAAsB;IACvD,CAAC,WAAW,CAAC,cAAc,CAAC,EAAE,qBAAqB;IACnD,CAAC,WAAW,CAAC,aAAa,CAAC,EAAE,sBAAsB;CACtD,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAW,GAAG,CAAC;AAE7C,MAAM,CAAC,MAAM,kBAAkB,GAAW,GAAG,CAAC;AAE9C,MAAM,CAAC,MAAM,aAAa,GAAW,EAAE,CAAC"}
|
|
1
|
+
{"version":3,"file":"assets.js","sourceRoot":"","sources":["../../../src/constants/assets.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,YAAY,GAAG,uCAAuC,CAAC;AAEpE,MAAM,CAAC,MAAM,YAAY,GAAG,qDAAqD,CAAC;AAElF,MAAM,CAAC,MAAM,WAAW,GAAG;IACvB,iBAAiB,EAAE,mBAAmB;IACtC,kBAAkB,EAAE,oBAAoB;IACxC,aAAa,EAAE,eAAe;IAC9B,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;CACb,CAAC;AAEF,MAAM,CAAC,MAAM,yBAAyB,GAAG;IACrC,WAAW,CAAC,iBAAiB;IAC7B,WAAW,CAAC,kBAAkB;IAC9B,WAAW,CAAC,KAAK;IACjB,WAAW,CAAC,KAAK;IACjB,WAAW,CAAC,QAAQ;IACpB,WAAW,CAAC,KAAK;IACjB,WAAW,CAAC,cAAc;IAC1B,WAAW,CAAC,IAAI;IAChB,WAAW,CAAC,GAAG;IACf,WAAW,CAAC,GAAG;CAClB,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG;IACxB,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,qBAAqB;IAC1C,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,qBAAqB;IAC1C,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,oBAAoB;IACzC,CAAC,WAAW,CAAC,QAAQ,CAAC,EAAE,sBAAsB;IAC9C,CAAC,WAAW,CAAC,iBAAiB,CAAC,EAAE,sBAAsB;IACvD,CAAC,WAAW,CAAC,cAAc,CAAC,EAAE,qBAAqB;IACnD,CAAC,WAAW,CAAC,aAAa,CAAC,EAAE,sBAAsB;CACtD,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAW,GAAG,CAAC;AAE7C,MAAM,CAAC,MAAM,kBAAkB,GAAW,GAAG,CAAC;AAE9C,MAAM,CAAC,MAAM,aAAa,GAAW,EAAE,CAAC"}
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@ import ImposiumDropdown from '../dropdown/Dropdown';
|
|
|
5
5
|
import { updateFilters } from '../../redux/actions/asset-filters';
|
|
6
6
|
import { connect } from 'react-redux';
|
|
7
7
|
import { bindActionCreators } from 'redux';
|
|
8
|
-
import { ASSET_TYPES } from '../../constants/assets';
|
|
8
|
+
import { ASSET_TYPES, ASSET_TYPE_FILTER_OPTIONS } from '../../constants/assets';
|
|
9
9
|
|
|
10
10
|
interface IAssetsTableTypeFilter {
|
|
11
11
|
assetFilters: any;
|
|
@@ -44,18 +44,15 @@ class AssetsTableTypeFilter extends React.PureComponent<
|
|
|
44
44
|
} = this.props;
|
|
45
45
|
const filterButtons: any = [];
|
|
46
46
|
|
|
47
|
-
for (const
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
</div>
|
|
57
|
-
);
|
|
58
|
-
}
|
|
47
|
+
for (const assetTypeOption of ASSET_TYPE_FILTER_OPTIONS) {
|
|
48
|
+
filterButtons.push(
|
|
49
|
+
<div
|
|
50
|
+
key={assetTypeOption}
|
|
51
|
+
className='asset-filter'
|
|
52
|
+
onClick={() => this.handleFilterChange(assetTypeOption)}>
|
|
53
|
+
<AssetsTypeIcon type={assetTypeOption} />
|
|
54
|
+
</div>
|
|
55
|
+
);
|
|
59
56
|
}
|
|
60
57
|
|
|
61
58
|
return (
|
package/src/constants/assets.ts
CHANGED
|
@@ -16,6 +16,19 @@ export const ASSET_TYPES = {
|
|
|
16
16
|
ALL: 'all'
|
|
17
17
|
};
|
|
18
18
|
|
|
19
|
+
export const ASSET_TYPE_FILTER_OPTIONS = [
|
|
20
|
+
ASSET_TYPES.VIDEO_COMPOSITION,
|
|
21
|
+
ASSET_TYPES.STATIC_COMPOSITION,
|
|
22
|
+
ASSET_TYPES.VIDEO,
|
|
23
|
+
ASSET_TYPES.IMAGE,
|
|
24
|
+
ASSET_TYPES.TEMPLATE,
|
|
25
|
+
ASSET_TYPES.AUDIO,
|
|
26
|
+
ASSET_TYPES.IMAGE_SEQUENCE,
|
|
27
|
+
ASSET_TYPES.FONT,
|
|
28
|
+
ASSET_TYPES.LUT,
|
|
29
|
+
ASSET_TYPES.ALL
|
|
30
|
+
];
|
|
31
|
+
|
|
19
32
|
export const ASSET_COLORS = {
|
|
20
33
|
[ASSET_TYPES.VIDEO]: 'rgba(236,22,150, 1)',
|
|
21
34
|
[ASSET_TYPES.IMAGE]: 'rgba(241,191,21, 1)',
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export declare const ASSET_DISTRO = "https://d188rqu2y6x0ew.cloudfront.net";
|
|
2
|
-
export declare const ASSET_ORIGIN = "https://imposium-footage.s3.us-east-1.amazonaws.com";
|
|
3
|
-
export declare const ASSET_TYPES: {
|
|
4
|
-
VIDEO_COMPOSITION: string;
|
|
5
|
-
STATIC_COMPOSITION: string;
|
|
6
|
-
VIDEO: string;
|
|
7
|
-
IMAGE: string;
|
|
8
|
-
TEMPLATE: string;
|
|
9
|
-
AUDIO: string;
|
|
10
|
-
IMAGE_SEQUENCE: string;
|
|
11
|
-
FONT: string;
|
|
12
|
-
LUT: string;
|
|
13
|
-
ALL: string;
|
|
14
|
-
};
|
|
15
|
-
export declare const ASSET_COLORS: {
|
|
16
|
-
[x: string]: string;
|
|
17
|
-
};
|
|
18
|
-
export declare const PREVIEW_MAX_WIDTH: number;
|
|
19
|
-
export declare const PREVIEW_MAX_HEIGHT: number;
|
|
20
|
-
export declare const HEADER_HEIGHT: number;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var _a;
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.HEADER_HEIGHT = exports.PREVIEW_MAX_HEIGHT = exports.PREVIEW_MAX_WIDTH = exports.ASSET_COLORS = exports.ASSET_TYPES = exports.ASSET_ORIGIN = exports.ASSET_DISTRO = void 0;
|
|
5
|
-
exports.ASSET_DISTRO = 'https://d188rqu2y6x0ew.cloudfront.net';
|
|
6
|
-
exports.ASSET_ORIGIN = 'https://imposium-footage.s3.us-east-1.amazonaws.com';
|
|
7
|
-
exports.ASSET_TYPES = {
|
|
8
|
-
VIDEO_COMPOSITION: 'video_composition',
|
|
9
|
-
STATIC_COMPOSITION: 'static_composition',
|
|
10
|
-
VIDEO: 'video',
|
|
11
|
-
IMAGE: 'image',
|
|
12
|
-
TEMPLATE: 'template',
|
|
13
|
-
AUDIO: 'audio',
|
|
14
|
-
IMAGE_SEQUENCE: 'image_sequence',
|
|
15
|
-
FONT: 'font',
|
|
16
|
-
LUT: 'lut',
|
|
17
|
-
ALL: 'all'
|
|
18
|
-
};
|
|
19
|
-
exports.ASSET_COLORS = (_a = {},
|
|
20
|
-
_a[exports.ASSET_TYPES.VIDEO] = 'rgba(236,22,150, 1)',
|
|
21
|
-
_a[exports.ASSET_TYPES.IMAGE] = 'rgba(241,191,21, 1)',
|
|
22
|
-
_a[exports.ASSET_TYPES.AUDIO] = 'rgba(72,177,222,1)',
|
|
23
|
-
_a[exports.ASSET_TYPES.TEMPLATE] = 'rgba(208, 80, 35, 1)',
|
|
24
|
-
_a[exports.ASSET_TYPES.VIDEO_COMPOSITION] = 'rgba(215, 22, 22, 1)',
|
|
25
|
-
_a[exports.ASSET_TYPES.IMAGE_SEQUENCE] = 'rgba(241,191,21, 1)',
|
|
26
|
-
_a);
|
|
27
|
-
exports.PREVIEW_MAX_WIDTH = 400;
|
|
28
|
-
exports.PREVIEW_MAX_HEIGHT = 400;
|
|
29
|
-
exports.HEADER_HEIGHT = 30;
|
|
30
|
-
//# sourceMappingURL=assets_BACKUP_14924.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"assets_BACKUP_14924.js","sourceRoot":"","sources":["../../../src/constants/assets_BACKUP_14924.ts"],"names":[],"mappings":";;;;AAAa,QAAA,YAAY,GAAG,uCAAuC,CAAC;AAEvD,QAAA,YAAY,GAAG,qDAAqD,CAAC;AAErE,QAAA,WAAW,GAAG;IACvB,iBAAiB,EAAE,mBAAmB;IACtC,kBAAkB,EAAE,oBAAoB;IACxC,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;CACb,CAAC;AAEW,QAAA,YAAY;IACrB,GAAC,mBAAW,CAAC,KAAK,IAAG,qBAAqB;IAK1C,GAAC,mBAAW,CAAC,KAAK,IAAG,qBAAqB;IAC1C,GAAC,mBAAW,CAAC,KAAK,IAAG,oBAAoB;IACzC,GAAC,mBAAW,CAAC,QAAQ,IAAG,sBAAsB;IAC9C,GAAC,mBAAW,CAAC,iBAAiB,IAAG,sBAAsB;IACvD,GAAC,mBAAW,CAAC,cAAc,IAAG,qBAAqB;QACrD;AAEW,QAAA,iBAAiB,GAAW,GAAG,CAAC;AAEhC,QAAA,kBAAkB,GAAW,GAAG,CAAC;AAEjC,QAAA,aAAa,GAAW,EAAE,CAAC"}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export declare const ASSET_DISTRO = "https://d188rqu2y6x0ew.cloudfront.net";
|
|
2
|
-
export declare const ASSET_ORIGIN = "https://imposium-footage.s3.us-east-1.amazonaws.com";
|
|
3
|
-
export declare const ASSET_TYPES: {
|
|
4
|
-
VIDEO_COMPOSITION: string;
|
|
5
|
-
STATIC_COMPOSITION: string;
|
|
6
|
-
VIDEO: string;
|
|
7
|
-
IMAGE: string;
|
|
8
|
-
HTML: string;
|
|
9
|
-
TEMPLATE: string;
|
|
10
|
-
AUDIO: string;
|
|
11
|
-
IMAGE_SEQUENCE: string;
|
|
12
|
-
FONT: string;
|
|
13
|
-
LUT: string;
|
|
14
|
-
ALL: string;
|
|
15
|
-
};
|
|
16
|
-
export declare const ASSET_COLORS: {
|
|
17
|
-
[x: string]: string;
|
|
18
|
-
};
|
|
19
|
-
export declare const PREVIEW_MAX_WIDTH: number;
|
|
20
|
-
export declare const PREVIEW_MAX_HEIGHT: number;
|
|
21
|
-
export declare const HEADER_HEIGHT: number;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var _a;
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.HEADER_HEIGHT = exports.PREVIEW_MAX_HEIGHT = exports.PREVIEW_MAX_WIDTH = exports.ASSET_COLORS = exports.ASSET_TYPES = exports.ASSET_ORIGIN = exports.ASSET_DISTRO = void 0;
|
|
5
|
-
exports.ASSET_DISTRO = 'https://d188rqu2y6x0ew.cloudfront.net';
|
|
6
|
-
exports.ASSET_ORIGIN = 'https://imposium-footage.s3.us-east-1.amazonaws.com';
|
|
7
|
-
exports.ASSET_TYPES = {
|
|
8
|
-
VIDEO_COMPOSITION: 'video_composition',
|
|
9
|
-
STATIC_COMPOSITION: 'static_composition',
|
|
10
|
-
VIDEO: 'video',
|
|
11
|
-
IMAGE: 'image',
|
|
12
|
-
HTML: 'html',
|
|
13
|
-
TEMPLATE: 'template',
|
|
14
|
-
AUDIO: 'audio',
|
|
15
|
-
IMAGE_SEQUENCE: 'image_sequence',
|
|
16
|
-
FONT: 'font',
|
|
17
|
-
LUT: 'lut',
|
|
18
|
-
ALL: 'all',
|
|
19
|
-
};
|
|
20
|
-
exports.ASSET_COLORS = (_a = {},
|
|
21
|
-
_a[exports.ASSET_TYPES.VIDEO] = 'rgba(236,22,150, 1)',
|
|
22
|
-
_a[exports.ASSET_TYPES.HTML] = 'rgba(118,22,238, 1)',
|
|
23
|
-
_a[exports.ASSET_TYPES.IMAGE] = 'rgba(241,191,21, 1)',
|
|
24
|
-
_a[exports.ASSET_TYPES.AUDIO] = 'rgba(72,177,222,1)',
|
|
25
|
-
_a[exports.ASSET_TYPES.TEMPLATE] = 'rgba(208, 80, 35, 1)',
|
|
26
|
-
_a[exports.ASSET_TYPES.VIDEO_COMPOSITION] = 'rgba(215, 22, 22, 1)',
|
|
27
|
-
_a[exports.ASSET_TYPES.IMAGE_SEQUENCE] = 'rgba(241,191,21, 1)',
|
|
28
|
-
_a);
|
|
29
|
-
exports.PREVIEW_MAX_WIDTH = 400;
|
|
30
|
-
exports.PREVIEW_MAX_HEIGHT = 400;
|
|
31
|
-
exports.HEADER_HEIGHT = 30;
|
|
32
|
-
//# sourceMappingURL=assets_BASE_14924.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"assets_BASE_14924.js","sourceRoot":"","sources":["../../../src/constants/assets_BASE_14924.ts"],"names":[],"mappings":";;;;AAAa,QAAA,YAAY,GAAG,uCAAuC,CAAC;AAEvD,QAAA,YAAY,GAAG,qDAAqD,CAAC;AAErE,QAAA,WAAW,GAAG;IACvB,iBAAiB,EAAE,mBAAmB;IACtC,kBAAkB,EAAE,oBAAoB;IACxC,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,IAAI,EAAC,MAAM;IACX,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;CACb,CAAC;AAEW,QAAA,YAAY;IACrB,GAAC,mBAAW,CAAC,KAAK,IAAG,qBAAqB;IAC1C,GAAC,mBAAW,CAAC,IAAI,IAAG,qBAAqB;IACzC,GAAC,mBAAW,CAAC,KAAK,IAAG,qBAAqB;IAC1C,GAAC,mBAAW,CAAC,KAAK,IAAG,oBAAoB;IACzC,GAAC,mBAAW,CAAC,QAAQ,IAAG,sBAAsB;IAC9C,GAAC,mBAAW,CAAC,iBAAiB,IAAG,sBAAsB;IACvD,GAAC,mBAAW,CAAC,cAAc,IAAG,qBAAqB;QACrD;AAEW,QAAA,iBAAiB,GAAW,GAAG,CAAC;AAEhC,QAAA,kBAAkB,GAAW,GAAG,CAAC;AAEjC,QAAA,aAAa,GAAW,EAAE,CAAC"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export declare const ASSET_DISTRO = "https://d188rqu2y6x0ew.cloudfront.net";
|
|
2
|
-
export declare const ASSET_ORIGIN = "https://imposium-footage.s3.us-east-1.amazonaws.com";
|
|
3
|
-
export declare const ASSET_TYPES: {
|
|
4
|
-
VIDEO_COMPOSITION: string;
|
|
5
|
-
STATIC_COMPOSITION: string;
|
|
6
|
-
VIDEO: string;
|
|
7
|
-
IMAGE: string;
|
|
8
|
-
TEMPLATE: string;
|
|
9
|
-
AUDIO: string;
|
|
10
|
-
IMAGE_SEQUENCE: string;
|
|
11
|
-
FONT: string;
|
|
12
|
-
LUT: string;
|
|
13
|
-
ALL: string;
|
|
14
|
-
};
|
|
15
|
-
export declare const ASSET_COLORS: {
|
|
16
|
-
[x: string]: string;
|
|
17
|
-
};
|
|
18
|
-
export declare const PREVIEW_MAX_WIDTH: number;
|
|
19
|
-
export declare const PREVIEW_MAX_HEIGHT: number;
|
|
20
|
-
export declare const HEADER_HEIGHT: number;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var _a;
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.HEADER_HEIGHT = exports.PREVIEW_MAX_HEIGHT = exports.PREVIEW_MAX_WIDTH = exports.ASSET_COLORS = exports.ASSET_TYPES = exports.ASSET_ORIGIN = exports.ASSET_DISTRO = void 0;
|
|
5
|
-
exports.ASSET_DISTRO = 'https://d188rqu2y6x0ew.cloudfront.net';
|
|
6
|
-
exports.ASSET_ORIGIN = 'https://imposium-footage.s3.us-east-1.amazonaws.com';
|
|
7
|
-
exports.ASSET_TYPES = {
|
|
8
|
-
VIDEO_COMPOSITION: 'video_composition',
|
|
9
|
-
STATIC_COMPOSITION: 'static_composition',
|
|
10
|
-
VIDEO: 'video',
|
|
11
|
-
IMAGE: 'image',
|
|
12
|
-
TEMPLATE: 'template',
|
|
13
|
-
AUDIO: 'audio',
|
|
14
|
-
IMAGE_SEQUENCE: 'image_sequence',
|
|
15
|
-
FONT: 'font',
|
|
16
|
-
LUT: 'lut',
|
|
17
|
-
ALL: 'all'
|
|
18
|
-
};
|
|
19
|
-
exports.ASSET_COLORS = (_a = {},
|
|
20
|
-
_a[exports.ASSET_TYPES.VIDEO] = 'rgba(236,22,150, 1)',
|
|
21
|
-
_a[exports.ASSET_TYPES.IMAGE] = 'rgba(241,191,21, 1)',
|
|
22
|
-
_a[exports.ASSET_TYPES.AUDIO] = 'rgba(72,177,222,1)',
|
|
23
|
-
_a[exports.ASSET_TYPES.TEMPLATE] = 'rgba(208, 80, 35, 1)',
|
|
24
|
-
_a[exports.ASSET_TYPES.VIDEO_COMPOSITION] = 'rgba(215, 22, 22, 1)',
|
|
25
|
-
_a[exports.ASSET_TYPES.IMAGE_SEQUENCE] = 'rgba(241,191,21, 1)',
|
|
26
|
-
_a);
|
|
27
|
-
exports.PREVIEW_MAX_WIDTH = 400;
|
|
28
|
-
exports.PREVIEW_MAX_HEIGHT = 400;
|
|
29
|
-
exports.HEADER_HEIGHT = 30;
|
|
30
|
-
//# sourceMappingURL=assets_LOCAL_14924.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"assets_LOCAL_14924.js","sourceRoot":"","sources":["../../../src/constants/assets_LOCAL_14924.ts"],"names":[],"mappings":";;;;AAAa,QAAA,YAAY,GAAG,uCAAuC,CAAC;AAEvD,QAAA,YAAY,GAAG,qDAAqD,CAAC;AAErE,QAAA,WAAW,GAAG;IACvB,iBAAiB,EAAE,mBAAmB;IACtC,kBAAkB,EAAE,oBAAoB;IACxC,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;CACb,CAAC;AAEW,QAAA,YAAY;IACrB,GAAC,mBAAW,CAAC,KAAK,IAAG,qBAAqB;IAC1C,GAAC,mBAAW,CAAC,KAAK,IAAG,qBAAqB;IAC1C,GAAC,mBAAW,CAAC,KAAK,IAAG,oBAAoB;IACzC,GAAC,mBAAW,CAAC,QAAQ,IAAG,sBAAsB;IAC9C,GAAC,mBAAW,CAAC,iBAAiB,IAAG,sBAAsB;IACvD,GAAC,mBAAW,CAAC,cAAc,IAAG,qBAAqB;QACrD;AAEW,QAAA,iBAAiB,GAAW,GAAG,CAAC;AAEhC,QAAA,kBAAkB,GAAW,GAAG,CAAC;AAEjC,QAAA,aAAa,GAAW,EAAE,CAAC"}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export declare const ASSET_DISTRO = "https://d188rqu2y6x0ew.cloudfront.net";
|
|
2
|
-
export declare const ASSET_ORIGIN = "https://imposium-footage.s3.us-east-1.amazonaws.com";
|
|
3
|
-
export declare const ASSET_TYPES: {
|
|
4
|
-
VIDEO_COMPOSITION: string;
|
|
5
|
-
STATIC_COMPOSITION: string;
|
|
6
|
-
VIDEO: string;
|
|
7
|
-
IMAGE: string;
|
|
8
|
-
HTML: string;
|
|
9
|
-
TEMPLATE: string;
|
|
10
|
-
AUDIO: string;
|
|
11
|
-
IMAGE_SEQUENCE: string;
|
|
12
|
-
FONT: string;
|
|
13
|
-
LUT: string;
|
|
14
|
-
ALL: string;
|
|
15
|
-
};
|
|
16
|
-
export declare const ASSET_COLORS: {
|
|
17
|
-
[x: string]: string;
|
|
18
|
-
};
|
|
19
|
-
export declare const PREVIEW_MAX_WIDTH: number;
|
|
20
|
-
export declare const PREVIEW_MAX_HEIGHT: number;
|
|
21
|
-
export declare const HEADER_HEIGHT: number;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var _a;
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.HEADER_HEIGHT = exports.PREVIEW_MAX_HEIGHT = exports.PREVIEW_MAX_WIDTH = exports.ASSET_COLORS = exports.ASSET_TYPES = exports.ASSET_ORIGIN = exports.ASSET_DISTRO = void 0;
|
|
5
|
-
exports.ASSET_DISTRO = 'https://d188rqu2y6x0ew.cloudfront.net';
|
|
6
|
-
exports.ASSET_ORIGIN = 'https://imposium-footage.s3.us-east-1.amazonaws.com';
|
|
7
|
-
exports.ASSET_TYPES = {
|
|
8
|
-
VIDEO_COMPOSITION: 'video_composition',
|
|
9
|
-
STATIC_COMPOSITION: 'static_composition',
|
|
10
|
-
VIDEO: 'video',
|
|
11
|
-
IMAGE: 'image',
|
|
12
|
-
HTML: 'html',
|
|
13
|
-
TEMPLATE: 'template',
|
|
14
|
-
AUDIO: 'audio',
|
|
15
|
-
IMAGE_SEQUENCE: 'image_sequence',
|
|
16
|
-
FONT: 'font',
|
|
17
|
-
LUT: 'lut',
|
|
18
|
-
ALL: 'all',
|
|
19
|
-
};
|
|
20
|
-
exports.ASSET_COLORS = (_a = {},
|
|
21
|
-
_a[exports.ASSET_TYPES.VIDEO] = 'rgba(236,22,150, 1)',
|
|
22
|
-
_a[exports.ASSET_TYPES.HTML] = 'rgba(174,108,255, 1)',
|
|
23
|
-
_a[exports.ASSET_TYPES.IMAGE] = 'rgba(241,191,21, 1)',
|
|
24
|
-
_a[exports.ASSET_TYPES.AUDIO] = 'rgba(72,177,222,1)',
|
|
25
|
-
_a[exports.ASSET_TYPES.TEMPLATE] = 'rgba(208, 80, 35, 1)',
|
|
26
|
-
_a[exports.ASSET_TYPES.VIDEO_COMPOSITION] = 'rgba(215, 22, 22, 1)',
|
|
27
|
-
_a[exports.ASSET_TYPES.IMAGE_SEQUENCE] = 'rgba(241,191,21, 1)',
|
|
28
|
-
_a);
|
|
29
|
-
exports.PREVIEW_MAX_WIDTH = 400;
|
|
30
|
-
exports.PREVIEW_MAX_HEIGHT = 400;
|
|
31
|
-
exports.HEADER_HEIGHT = 30;
|
|
32
|
-
//# sourceMappingURL=assets_REMOTE_14924.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"assets_REMOTE_14924.js","sourceRoot":"","sources":["../../../src/constants/assets_REMOTE_14924.ts"],"names":[],"mappings":";;;;AAAa,QAAA,YAAY,GAAG,uCAAuC,CAAC;AAEvD,QAAA,YAAY,GAAG,qDAAqD,CAAC;AAErE,QAAA,WAAW,GAAG;IACvB,iBAAiB,EAAE,mBAAmB;IACtC,kBAAkB,EAAE,oBAAoB;IACxC,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,IAAI,EAAC,MAAM;IACX,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;CACb,CAAC;AAEW,QAAA,YAAY;IACrB,GAAC,mBAAW,CAAC,KAAK,IAAG,qBAAqB;IAC1C,GAAC,mBAAW,CAAC,IAAI,IAAG,sBAAsB;IAC1C,GAAC,mBAAW,CAAC,KAAK,IAAG,qBAAqB;IAC1C,GAAC,mBAAW,CAAC,KAAK,IAAG,oBAAoB;IACzC,GAAC,mBAAW,CAAC,QAAQ,IAAG,sBAAsB;IAC9C,GAAC,mBAAW,CAAC,iBAAiB,IAAG,sBAAsB;IACvD,GAAC,mBAAW,CAAC,cAAc,IAAG,qBAAqB;QACrD;AAEW,QAAA,iBAAiB,GAAW,GAAG,CAAC;AAEhC,QAAA,kBAAkB,GAAW,GAAG,CAAC;AAEjC,QAAA,aAAa,GAAW,EAAE,CAAC"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export declare const ASSET_DISTRO = "https://d188rqu2y6x0ew.cloudfront.net";
|
|
2
|
-
export declare const ASSET_ORIGIN = "https://imposium-footage.s3.us-east-1.amazonaws.com";
|
|
3
|
-
export declare const ASSET_TYPES: {
|
|
4
|
-
VIDEO_COMPOSITION: string;
|
|
5
|
-
STATIC_COMPOSITION: string;
|
|
6
|
-
VIDEO: string;
|
|
7
|
-
IMAGE: string;
|
|
8
|
-
TEMPLATE: string;
|
|
9
|
-
AUDIO: string;
|
|
10
|
-
IMAGE_SEQUENCE: string;
|
|
11
|
-
FONT: string;
|
|
12
|
-
LUT: string;
|
|
13
|
-
ALL: string;
|
|
14
|
-
};
|
|
15
|
-
export declare const ASSET_COLORS: {
|
|
16
|
-
[x: string]: string;
|
|
17
|
-
};
|
|
18
|
-
export declare const PREVIEW_MAX_WIDTH: number;
|
|
19
|
-
export declare const PREVIEW_MAX_HEIGHT: number;
|
|
20
|
-
export declare const HEADER_HEIGHT: number;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
export const ASSET_DISTRO = 'https://d188rqu2y6x0ew.cloudfront.net';
|
|
2
|
-
export const ASSET_ORIGIN = 'https://imposium-footage.s3.us-east-1.amazonaws.com';
|
|
3
|
-
export const ASSET_TYPES = {
|
|
4
|
-
VIDEO_COMPOSITION: 'video_composition',
|
|
5
|
-
STATIC_COMPOSITION: 'static_composition',
|
|
6
|
-
VIDEO: 'video',
|
|
7
|
-
IMAGE: 'image',
|
|
8
|
-
TEMPLATE: 'template',
|
|
9
|
-
AUDIO: 'audio',
|
|
10
|
-
IMAGE_SEQUENCE: 'image_sequence',
|
|
11
|
-
FONT: 'font',
|
|
12
|
-
LUT: 'lut',
|
|
13
|
-
ALL: 'all'
|
|
14
|
-
};
|
|
15
|
-
export const ASSET_COLORS = {
|
|
16
|
-
[ASSET_TYPES.VIDEO]: 'rgba(236,22,150, 1)',
|
|
17
|
-
[ASSET_TYPES.IMAGE]: 'rgba(241,191,21, 1)',
|
|
18
|
-
[ASSET_TYPES.AUDIO]: 'rgba(72,177,222,1)',
|
|
19
|
-
[ASSET_TYPES.TEMPLATE]: 'rgba(208, 80, 35, 1)',
|
|
20
|
-
[ASSET_TYPES.VIDEO_COMPOSITION]: 'rgba(215, 22, 22, 1)',
|
|
21
|
-
[ASSET_TYPES.IMAGE_SEQUENCE]: 'rgba(241,191,21, 1)'
|
|
22
|
-
};
|
|
23
|
-
export const PREVIEW_MAX_WIDTH = 400;
|
|
24
|
-
export const PREVIEW_MAX_HEIGHT = 400;
|
|
25
|
-
export const HEADER_HEIGHT = 30;
|
|
26
|
-
//# sourceMappingURL=assets_BACKUP_14924.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"assets_BACKUP_14924.js","sourceRoot":"","sources":["../../../src/constants/assets_BACKUP_14924.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,YAAY,GAAG,uCAAuC,CAAC;AAEpE,MAAM,CAAC,MAAM,YAAY,GAAG,qDAAqD,CAAC;AAElF,MAAM,CAAC,MAAM,WAAW,GAAG;IACvB,iBAAiB,EAAE,mBAAmB;IACtC,kBAAkB,EAAE,oBAAoB;IACxC,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;CACb,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG;IACxB,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,qBAAqB;IAK1C,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,qBAAqB;IAC1C,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,oBAAoB;IACzC,CAAC,WAAW,CAAC,QAAQ,CAAC,EAAE,sBAAsB;IAC9C,CAAC,WAAW,CAAC,iBAAiB,CAAC,EAAE,sBAAsB;IACvD,CAAC,WAAW,CAAC,cAAc,CAAC,EAAE,qBAAqB;CACtD,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAW,GAAG,CAAC;AAE7C,MAAM,CAAC,MAAM,kBAAkB,GAAW,GAAG,CAAC;AAE9C,MAAM,CAAC,MAAM,aAAa,GAAW,EAAE,CAAC"}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export declare const ASSET_DISTRO = "https://d188rqu2y6x0ew.cloudfront.net";
|
|
2
|
-
export declare const ASSET_ORIGIN = "https://imposium-footage.s3.us-east-1.amazonaws.com";
|
|
3
|
-
export declare const ASSET_TYPES: {
|
|
4
|
-
VIDEO_COMPOSITION: string;
|
|
5
|
-
STATIC_COMPOSITION: string;
|
|
6
|
-
VIDEO: string;
|
|
7
|
-
IMAGE: string;
|
|
8
|
-
HTML: string;
|
|
9
|
-
TEMPLATE: string;
|
|
10
|
-
AUDIO: string;
|
|
11
|
-
IMAGE_SEQUENCE: string;
|
|
12
|
-
FONT: string;
|
|
13
|
-
LUT: string;
|
|
14
|
-
ALL: string;
|
|
15
|
-
};
|
|
16
|
-
export declare const ASSET_COLORS: {
|
|
17
|
-
[x: string]: string;
|
|
18
|
-
};
|
|
19
|
-
export declare const PREVIEW_MAX_WIDTH: number;
|
|
20
|
-
export declare const PREVIEW_MAX_HEIGHT: number;
|
|
21
|
-
export declare const HEADER_HEIGHT: number;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
export const ASSET_DISTRO = 'https://d188rqu2y6x0ew.cloudfront.net';
|
|
2
|
-
export const ASSET_ORIGIN = 'https://imposium-footage.s3.us-east-1.amazonaws.com';
|
|
3
|
-
export const ASSET_TYPES = {
|
|
4
|
-
VIDEO_COMPOSITION: 'video_composition',
|
|
5
|
-
STATIC_COMPOSITION: 'static_composition',
|
|
6
|
-
VIDEO: 'video',
|
|
7
|
-
IMAGE: 'image',
|
|
8
|
-
HTML: 'html',
|
|
9
|
-
TEMPLATE: 'template',
|
|
10
|
-
AUDIO: 'audio',
|
|
11
|
-
IMAGE_SEQUENCE: 'image_sequence',
|
|
12
|
-
FONT: 'font',
|
|
13
|
-
LUT: 'lut',
|
|
14
|
-
ALL: 'all',
|
|
15
|
-
};
|
|
16
|
-
export const ASSET_COLORS = {
|
|
17
|
-
[ASSET_TYPES.VIDEO]: 'rgba(236,22,150, 1)',
|
|
18
|
-
[ASSET_TYPES.HTML]: 'rgba(118,22,238, 1)',
|
|
19
|
-
[ASSET_TYPES.IMAGE]: 'rgba(241,191,21, 1)',
|
|
20
|
-
[ASSET_TYPES.AUDIO]: 'rgba(72,177,222,1)',
|
|
21
|
-
[ASSET_TYPES.TEMPLATE]: 'rgba(208, 80, 35, 1)',
|
|
22
|
-
[ASSET_TYPES.VIDEO_COMPOSITION]: 'rgba(215, 22, 22, 1)',
|
|
23
|
-
[ASSET_TYPES.IMAGE_SEQUENCE]: 'rgba(241,191,21, 1)'
|
|
24
|
-
};
|
|
25
|
-
export const PREVIEW_MAX_WIDTH = 400;
|
|
26
|
-
export const PREVIEW_MAX_HEIGHT = 400;
|
|
27
|
-
export const HEADER_HEIGHT = 30;
|
|
28
|
-
//# sourceMappingURL=assets_BASE_14924.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"assets_BASE_14924.js","sourceRoot":"","sources":["../../../src/constants/assets_BASE_14924.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,YAAY,GAAG,uCAAuC,CAAC;AAEpE,MAAM,CAAC,MAAM,YAAY,GAAG,qDAAqD,CAAC;AAElF,MAAM,CAAC,MAAM,WAAW,GAAG;IACvB,iBAAiB,EAAE,mBAAmB;IACtC,kBAAkB,EAAE,oBAAoB;IACxC,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,IAAI,EAAC,MAAM;IACX,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;CACb,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG;IACxB,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,qBAAqB;IAC1C,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE,qBAAqB;IACzC,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,qBAAqB;IAC1C,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,oBAAoB;IACzC,CAAC,WAAW,CAAC,QAAQ,CAAC,EAAE,sBAAsB;IAC9C,CAAC,WAAW,CAAC,iBAAiB,CAAC,EAAE,sBAAsB;IACvD,CAAC,WAAW,CAAC,cAAc,CAAC,EAAE,qBAAqB;CACtD,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAW,GAAG,CAAC;AAE7C,MAAM,CAAC,MAAM,kBAAkB,GAAW,GAAG,CAAC;AAE9C,MAAM,CAAC,MAAM,aAAa,GAAW,EAAE,CAAC"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export declare const ASSET_DISTRO = "https://d188rqu2y6x0ew.cloudfront.net";
|
|
2
|
-
export declare const ASSET_ORIGIN = "https://imposium-footage.s3.us-east-1.amazonaws.com";
|
|
3
|
-
export declare const ASSET_TYPES: {
|
|
4
|
-
VIDEO_COMPOSITION: string;
|
|
5
|
-
STATIC_COMPOSITION: string;
|
|
6
|
-
VIDEO: string;
|
|
7
|
-
IMAGE: string;
|
|
8
|
-
TEMPLATE: string;
|
|
9
|
-
AUDIO: string;
|
|
10
|
-
IMAGE_SEQUENCE: string;
|
|
11
|
-
FONT: string;
|
|
12
|
-
LUT: string;
|
|
13
|
-
ALL: string;
|
|
14
|
-
};
|
|
15
|
-
export declare const ASSET_COLORS: {
|
|
16
|
-
[x: string]: string;
|
|
17
|
-
};
|
|
18
|
-
export declare const PREVIEW_MAX_WIDTH: number;
|
|
19
|
-
export declare const PREVIEW_MAX_HEIGHT: number;
|
|
20
|
-
export declare const HEADER_HEIGHT: number;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
export const ASSET_DISTRO = 'https://d188rqu2y6x0ew.cloudfront.net';
|
|
2
|
-
export const ASSET_ORIGIN = 'https://imposium-footage.s3.us-east-1.amazonaws.com';
|
|
3
|
-
export const ASSET_TYPES = {
|
|
4
|
-
VIDEO_COMPOSITION: 'video_composition',
|
|
5
|
-
STATIC_COMPOSITION: 'static_composition',
|
|
6
|
-
VIDEO: 'video',
|
|
7
|
-
IMAGE: 'image',
|
|
8
|
-
TEMPLATE: 'template',
|
|
9
|
-
AUDIO: 'audio',
|
|
10
|
-
IMAGE_SEQUENCE: 'image_sequence',
|
|
11
|
-
FONT: 'font',
|
|
12
|
-
LUT: 'lut',
|
|
13
|
-
ALL: 'all'
|
|
14
|
-
};
|
|
15
|
-
export const ASSET_COLORS = {
|
|
16
|
-
[ASSET_TYPES.VIDEO]: 'rgba(236,22,150, 1)',
|
|
17
|
-
[ASSET_TYPES.IMAGE]: 'rgba(241,191,21, 1)',
|
|
18
|
-
[ASSET_TYPES.AUDIO]: 'rgba(72,177,222,1)',
|
|
19
|
-
[ASSET_TYPES.TEMPLATE]: 'rgba(208, 80, 35, 1)',
|
|
20
|
-
[ASSET_TYPES.VIDEO_COMPOSITION]: 'rgba(215, 22, 22, 1)',
|
|
21
|
-
[ASSET_TYPES.IMAGE_SEQUENCE]: 'rgba(241,191,21, 1)'
|
|
22
|
-
};
|
|
23
|
-
export const PREVIEW_MAX_WIDTH = 400;
|
|
24
|
-
export const PREVIEW_MAX_HEIGHT = 400;
|
|
25
|
-
export const HEADER_HEIGHT = 30;
|
|
26
|
-
//# sourceMappingURL=assets_LOCAL_14924.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"assets_LOCAL_14924.js","sourceRoot":"","sources":["../../../src/constants/assets_LOCAL_14924.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,YAAY,GAAG,uCAAuC,CAAC;AAEpE,MAAM,CAAC,MAAM,YAAY,GAAG,qDAAqD,CAAC;AAElF,MAAM,CAAC,MAAM,WAAW,GAAG;IACvB,iBAAiB,EAAE,mBAAmB;IACtC,kBAAkB,EAAE,oBAAoB;IACxC,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;CACb,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG;IACxB,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,qBAAqB;IAC1C,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,qBAAqB;IAC1C,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,oBAAoB;IACzC,CAAC,WAAW,CAAC,QAAQ,CAAC,EAAE,sBAAsB;IAC9C,CAAC,WAAW,CAAC,iBAAiB,CAAC,EAAE,sBAAsB;IACvD,CAAC,WAAW,CAAC,cAAc,CAAC,EAAE,qBAAqB;CACtD,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAW,GAAG,CAAC;AAE7C,MAAM,CAAC,MAAM,kBAAkB,GAAW,GAAG,CAAC;AAE9C,MAAM,CAAC,MAAM,aAAa,GAAW,EAAE,CAAC"}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export declare const ASSET_DISTRO = "https://d188rqu2y6x0ew.cloudfront.net";
|
|
2
|
-
export declare const ASSET_ORIGIN = "https://imposium-footage.s3.us-east-1.amazonaws.com";
|
|
3
|
-
export declare const ASSET_TYPES: {
|
|
4
|
-
VIDEO_COMPOSITION: string;
|
|
5
|
-
STATIC_COMPOSITION: string;
|
|
6
|
-
VIDEO: string;
|
|
7
|
-
IMAGE: string;
|
|
8
|
-
HTML: string;
|
|
9
|
-
TEMPLATE: string;
|
|
10
|
-
AUDIO: string;
|
|
11
|
-
IMAGE_SEQUENCE: string;
|
|
12
|
-
FONT: string;
|
|
13
|
-
LUT: string;
|
|
14
|
-
ALL: string;
|
|
15
|
-
};
|
|
16
|
-
export declare const ASSET_COLORS: {
|
|
17
|
-
[x: string]: string;
|
|
18
|
-
};
|
|
19
|
-
export declare const PREVIEW_MAX_WIDTH: number;
|
|
20
|
-
export declare const PREVIEW_MAX_HEIGHT: number;
|
|
21
|
-
export declare const HEADER_HEIGHT: number;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
export const ASSET_DISTRO = 'https://d188rqu2y6x0ew.cloudfront.net';
|
|
2
|
-
export const ASSET_ORIGIN = 'https://imposium-footage.s3.us-east-1.amazonaws.com';
|
|
3
|
-
export const ASSET_TYPES = {
|
|
4
|
-
VIDEO_COMPOSITION: 'video_composition',
|
|
5
|
-
STATIC_COMPOSITION: 'static_composition',
|
|
6
|
-
VIDEO: 'video',
|
|
7
|
-
IMAGE: 'image',
|
|
8
|
-
HTML: 'html',
|
|
9
|
-
TEMPLATE: 'template',
|
|
10
|
-
AUDIO: 'audio',
|
|
11
|
-
IMAGE_SEQUENCE: 'image_sequence',
|
|
12
|
-
FONT: 'font',
|
|
13
|
-
LUT: 'lut',
|
|
14
|
-
ALL: 'all',
|
|
15
|
-
};
|
|
16
|
-
export const ASSET_COLORS = {
|
|
17
|
-
[ASSET_TYPES.VIDEO]: 'rgba(236,22,150, 1)',
|
|
18
|
-
[ASSET_TYPES.HTML]: 'rgba(174,108,255, 1)',
|
|
19
|
-
[ASSET_TYPES.IMAGE]: 'rgba(241,191,21, 1)',
|
|
20
|
-
[ASSET_TYPES.AUDIO]: 'rgba(72,177,222,1)',
|
|
21
|
-
[ASSET_TYPES.TEMPLATE]: 'rgba(208, 80, 35, 1)',
|
|
22
|
-
[ASSET_TYPES.VIDEO_COMPOSITION]: 'rgba(215, 22, 22, 1)',
|
|
23
|
-
[ASSET_TYPES.IMAGE_SEQUENCE]: 'rgba(241,191,21, 1)'
|
|
24
|
-
};
|
|
25
|
-
export const PREVIEW_MAX_WIDTH = 400;
|
|
26
|
-
export const PREVIEW_MAX_HEIGHT = 400;
|
|
27
|
-
export const HEADER_HEIGHT = 30;
|
|
28
|
-
//# sourceMappingURL=assets_REMOTE_14924.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"assets_REMOTE_14924.js","sourceRoot":"","sources":["../../../src/constants/assets_REMOTE_14924.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,YAAY,GAAG,uCAAuC,CAAC;AAEpE,MAAM,CAAC,MAAM,YAAY,GAAG,qDAAqD,CAAC;AAElF,MAAM,CAAC,MAAM,WAAW,GAAG;IACvB,iBAAiB,EAAE,mBAAmB;IACtC,kBAAkB,EAAE,oBAAoB;IACxC,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,IAAI,EAAC,MAAM;IACX,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,MAAM;IACZ,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;CACb,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG;IACxB,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,qBAAqB;IAC1C,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE,sBAAsB;IAC1C,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,qBAAqB;IAC1C,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,oBAAoB;IACzC,CAAC,WAAW,CAAC,QAAQ,CAAC,EAAE,sBAAsB;IAC9C,CAAC,WAAW,CAAC,iBAAiB,CAAC,EAAE,sBAAsB;IACvD,CAAC,WAAW,CAAC,cAAc,CAAC,EAAE,qBAAqB;CACtD,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAW,GAAG,CAAC;AAE7C,MAAM,CAAC,MAAM,kBAAkB,GAAW,GAAG,CAAC;AAE9C,MAAM,CAAC,MAAM,aAAa,GAAW,EAAE,CAAC"}
|