@evlop/commons 1.0.172 → 1.0.174
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const REGISTER_ICON = "REGISTER_ICON";
|
|
2
|
-
export declare const REGISTER_ICONS = "
|
|
2
|
+
export declare const REGISTER_ICONS = "REGISTER_ICONS";
|
|
3
3
|
export declare function registerIcon(icon: any): {
|
|
4
4
|
type: string;
|
|
5
5
|
icon: any;
|
|
@@ -8,8 +8,8 @@ export declare function registerIcons(icons: any[]): {
|
|
|
8
8
|
type: string;
|
|
9
9
|
icons: any[];
|
|
10
10
|
};
|
|
11
|
-
export declare const getIcons: (() => Promise<any>) & import("lodash").MemoizedFunction;
|
|
12
|
-
export declare function fetchIcons(): (dispatch: Function) => void
|
|
11
|
+
export declare const getIcons: (() => Promise<any[]>) & import("lodash").MemoizedFunction;
|
|
12
|
+
export declare function fetchIcons(): (dispatch: Function) => Promise<void>;
|
|
13
13
|
declare const _default: (state: any, action: any) => any;
|
|
14
14
|
export default _default;
|
|
15
15
|
//# sourceMappingURL=icons.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/reducers/icons.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,aAAa,kBAAkB,CAAC;AAC7C,eAAO,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/reducers/icons.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,aAAa,kBAAkB,CAAC;AAC7C,eAAO,MAAM,cAAc,mBAAmB,CAAC;AAE/C,wBAAgB,YAAY,CAAC,IAAI,EAAE,GAAG;;;EAKrC;AAED,wBAAgB,aAAa,CAAC,KAAK,EAAE,GAAG,EAAE;;;EAKzC;AAED,eAAO,MAAM,QAAQ,4DAalB,CAAA;AAEH,wBAAgB,UAAU,eACE,QAAQ,mBAInC;;AAKD,wBAeC"}
|
|
@@ -1,4 +1,24 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
12
|
+
var t = {};
|
|
13
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
14
|
+
t[p] = s[p];
|
|
15
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
16
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
17
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
18
|
+
t[p[i]] = s[p[i]];
|
|
19
|
+
}
|
|
20
|
+
return t;
|
|
21
|
+
};
|
|
2
22
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
23
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
24
|
};
|
|
@@ -7,7 +27,7 @@ exports.fetchIcons = exports.getIcons = exports.registerIcons = exports.register
|
|
|
7
27
|
const lodash_1 = require("lodash");
|
|
8
28
|
const axios_1 = __importDefault(require("../helpers/axios"));
|
|
9
29
|
exports.REGISTER_ICON = 'REGISTER_ICON';
|
|
10
|
-
exports.REGISTER_ICONS = '
|
|
30
|
+
exports.REGISTER_ICONS = 'REGISTER_ICONS';
|
|
11
31
|
function registerIcon(icon) {
|
|
12
32
|
return {
|
|
13
33
|
type: exports.REGISTER_ICON,
|
|
@@ -22,13 +42,19 @@ function registerIcons(icons) {
|
|
|
22
42
|
};
|
|
23
43
|
}
|
|
24
44
|
exports.registerIcons = registerIcons;
|
|
25
|
-
exports.getIcons = lodash_1.memoize(() => axios_1.default.get('https://cdn.evlop.com/assets-info/icons.json?v=9').then(r =>
|
|
45
|
+
exports.getIcons = lodash_1.memoize(() => axios_1.default.get('https://cdn.evlop.com/assets-info/icons.min.json?v=9').then(r => {
|
|
46
|
+
const iconsMin = r.data;
|
|
47
|
+
const icons = Object.keys(iconsMin).reduce((acc, key) => {
|
|
48
|
+
const _a = iconsMin[key], { c } = _a, rest = __rest(_a, ["c"]);
|
|
49
|
+
return [...acc, ...Object.keys(c).map((name) => (Object.assign(Object.assign({ id: `${key}:${name}` }, rest), { n: name, c: c[name] })))];
|
|
50
|
+
}, []);
|
|
51
|
+
return icons;
|
|
52
|
+
}));
|
|
26
53
|
function fetchIcons() {
|
|
27
|
-
return (dispatch) => {
|
|
28
|
-
exports.getIcons()
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
};
|
|
54
|
+
return (dispatch) => __awaiter(this, void 0, void 0, function* () {
|
|
55
|
+
const icons = yield exports.getIcons();
|
|
56
|
+
dispatch(registerIcons(icons));
|
|
57
|
+
});
|
|
32
58
|
}
|
|
33
59
|
exports.fetchIcons = fetchIcons;
|
|
34
60
|
let initialState = [];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icons.js","sourceRoot":"","sources":["../../../src/reducers/icons.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"icons.js","sourceRoot":"","sources":["../../../src/reducers/icons.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,mCAAwD;AACxD,6DAAqC;AAExB,QAAA,aAAa,GAAG,eAAe,CAAC;AAChC,QAAA,cAAc,GAAG,gBAAgB,CAAC;AAE/C,SAAgB,YAAY,CAAC,IAAS;IAClC,OAAO;QACH,IAAI,EAAE,qBAAa;QACnB,IAAI;KACP,CAAC;AACN,CAAC;AALD,oCAKC;AAED,SAAgB,aAAa,CAAC,KAAY;IACtC,OAAO;QACH,IAAI,EAAE,sBAAc;QACpB,KAAK;KACR,CAAC;AACN,CAAC;AALD,sCAKC;AAEY,QAAA,QAAQ,GAAG,gBAAO,CAAC,GAAE,EAAE,CAAA,eAAK,CAAC,GAAG,CAAC,sDAAsD,CAAC,CAAC,IAAI,CAAC,CAAC,CAAA,EAAE;IAC1G,MAAM,QAAQ,GAAG,CAAC,CAAC,IAAI,CAAC;IACxB,MAAM,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,GAAG,EAAC,EAAE;QACnD,MAAM,KAAe,QAAQ,CAAC,GAAG,CAAC,EAA5B,EAAC,CAAC,OAA0B,EAArB,IAAI,cAAX,KAAY,CAAgB,CAAC;QACnC,OAAO,CAAC,GAAG,GAAG,EAAE,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,EAAC,EAAE,CAAA,+BAC1C,EAAE,EAAE,GAAG,GAAG,IAAI,IAAI,EAAE,IACjB,IAAI,KACP,CAAC,EAAE,IAAI,EACP,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IACZ,CAAC,CAAC,CAAA;IACR,CAAC,EACA,EAAE,CAAC,CAAC;IACL,OAAO,KAAK,CAAC;AACjB,CAAC,CAAC,CAAC,CAAA;AAEH,SAAgB,UAAU;IACtB,OAAO,CAAO,QAAkB,EAAC,EAAE;QAC/B,MAAM,KAAK,GAAG,MAAM,gBAAQ,EAAE,CAAC;QAC/B,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,CAAC;IACnC,CAAC,CAAA,CAAA;AACL,CAAC;AALD,gCAKC;AAED,IAAI,YAAY,GAAO,EACtB,CAAC;AAEF,kBAAe,CAAC,KAAK,GAAG,YAAY,EAAE,MAAM,EAAC,EAAE;IAC3C,QAAQ,MAAM,CAAC,IAAI,EAAE;QACjB,KAAK,qBAAa,CAAC,CAAA;YACf,MAAM,QAAQ,GAAG,eAAM,CAAC,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC,IAAI,CAAC,EAAE,IAAI,CAAC,CAAA;YACtD,eAAM,CAAC,QAAQ,EAAE,cAAK,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC,CAAC;YACxC,OAAO,QAAQ,CAAC;SACnB;QACD,KAAK,sBAAc,CAAC,CAAA;YAChB,MAAM,QAAQ,GAAG,eAAM,CAAC,CAAC,GAAG,KAAK,EAAE,GAAG,MAAM,CAAC,KAAK,CAAC,EAAE,IAAI,CAAC,CAAA;YAC1D,eAAM,CAAC,QAAQ,EAAE,cAAK,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC,CAAC;YACxC,OAAO,QAAQ,CAAC;SACnB;QACD;YACI,OAAO,KAAK,CAAC;KACpB;AACL,CAAC,CAAA"}
|