@imperium/layout 12.0.1 → 13.0.0
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,24 +1,30 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { useEffect } from 'react';
|
|
2
|
+
import { useAuthorization } from '@imperium/auth-client';
|
|
3
3
|
import debug from 'debug';
|
|
4
4
|
import { useDispatch } from 'react-redux';
|
|
5
5
|
import { useLayoutState, actions } from '../state.js';
|
|
6
6
|
|
|
7
7
|
debug("imperium.layout.datahooks.Permissions");
|
|
8
8
|
function Permissions({ permissions }) {
|
|
9
|
-
const
|
|
9
|
+
const authorization = useAuthorization();
|
|
10
10
|
const layoutState = useLayoutState();
|
|
11
11
|
const dispatch = useDispatch();
|
|
12
12
|
useEffect(() => {
|
|
13
13
|
(async function iife() {
|
|
14
|
-
permissions.
|
|
14
|
+
const permissionsWithData = permissions.map((permission) => {
|
|
15
15
|
const data = layoutState.params && Object.keys(layoutState.params).length > 0 ? layoutState.params : void 0;
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
return {
|
|
17
|
+
permission,
|
|
18
|
+
data
|
|
19
|
+
};
|
|
20
|
+
});
|
|
21
|
+
permissionsWithData.forEach((permission) => {
|
|
22
|
+
authorization.can(permission).then((result) => {
|
|
23
|
+
dispatch(actions.setPermission({ ...permission, result }));
|
|
18
24
|
});
|
|
19
25
|
});
|
|
20
26
|
})();
|
|
21
|
-
}, [dispatch, permissions,
|
|
27
|
+
}, [dispatch, permissions, authorization, layoutState.params]);
|
|
22
28
|
return null;
|
|
23
29
|
}
|
|
24
30
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Permissions.js","sources":["../../../src/datahooks/Permissions.tsx"],"sourcesContent":["import {
|
|
1
|
+
{"version":3,"file":"Permissions.js","sources":["../../../src/datahooks/Permissions.tsx"],"sourcesContent":["import {useAuthorization} from '@imperium/auth-client';\nimport debug from 'debug';\nimport {useEffect} from 'react';\nimport {useDispatch} from 'react-redux';\nimport {actions, useLayoutState} from '../state';\nimport type {PermissionSelector} from '../types';\n\nconst d = debug('imperium.layout.datahooks.Permissions');\n\ninterface PermissionsProps {\n\tpermissions: PermissionSelector;\n}\n\nexport function Permissions({permissions}: PermissionsProps) {\n\tconst authorization = useAuthorization();\n\tconst layoutState = useLayoutState();\n\tconst dispatch = useDispatch();\n\n\tuseEffect(() => {\n\t\t(async function iife() {\n\t\t\tconst permissionsWithData = permissions.map(permission => {\n\t\t\t\tconst data = layoutState.params && Object.keys(layoutState.params).length > 0 ? layoutState.params : undefined;\n\t\t\t\treturn {\n\t\t\t\t\tpermission,\n\t\t\t\t\tdata,\n\t\t\t\t};\n\t\t\t});\n\t\t\tpermissionsWithData.forEach(permission => {\n\t\t\t\tauthorization.can(permission).then(result => {\n\t\t\t\t\tdispatch(actions.setPermission({...permission, result}));\n\t\t\t\t});\n\t\t\t});\n\t\t})();\n\t}, [dispatch, permissions, authorization, layoutState.params]);\n\n\treturn null;\n}\n"],"names":[],"mappings":";;;;;;AAOU,MAAM,uCAAuC,EAAA;AAMhD,SAAA,WAAA,CAAqB,EAAC,WAAgC,EAAA,EAAA;AAC5D,EAAA,MAAM,gBAAgB,gBAAiB,EAAA,CAAA;AACvC,EAAA,MAAM,cAAc,cAAe,EAAA,CAAA;AACnC,EAAA,MAAM,WAAW,WAAY,EAAA,CAAA;AAE7B,EAAA,SAAA,CAAU,MAAM;AACf,IAAC,CAAsB,eAAA,IAAA,GAAA;AACtB,MAAM,MAAA,mBAAA,GAAsB,WAAY,CAAA,GAAA,CAAI,CAAc,UAAA,KAAA;AACzD,QAAM,MAAA,IAAA,GAAO,WAAY,CAAA,MAAA,IAAU,MAAO,CAAA,IAAA,CAAK,WAAY,CAAA,MAAM,CAAE,CAAA,MAAA,GAAS,CAAI,GAAA,WAAA,CAAY,MAAS,GAAA,KAAA,CAAA,CAAA;AACrG,QAAO,OAAA;AAAA,UACN,UAAA;AAAA,UACA,IAAA;AAAA,SACD,CAAA;AAAA,OACA,CAAA,CAAA;AACD,MAAA,mBAAA,CAAoB,QAAQ,CAAc,UAAA,KAAA;AACzC,QAAA,aAAA,CAAc,GAAI,CAAA,UAAU,CAAE,CAAA,IAAA,CAAK,CAAU,MAAA,KAAA;AAC5C,UAAA,QAAA,CAAS,QAAQ,aAAc,CAAA,EAAA,GAAI,UAAY,EAAA,MAAA,EAAO,CAAC,CAAA,CAAA;AAAA,SACvD,CAAA,CAAA;AAAA,OACD,CAAA,CAAA;AAAA,KACC,GAAA,CAAA;AAAA,KACD,CAAC,QAAA,EAAU,aAAa,aAAe,EAAA,WAAA,CAAY,MAAM,CAAC,CAAA,CAAA;AAE7D,EAAO,OAAA,IAAA,CAAA;AACR;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { useAuthenticatedState } from '@imperium/auth-client';
|
|
2
2
|
import debug from 'debug';
|
|
3
3
|
import { compact, merge } from 'lodash-es';
|
|
4
4
|
import { useLocation } from 'react-router-dom';
|
|
@@ -9,7 +9,7 @@ import { useSelectState } from './useSelectState.js';
|
|
|
9
9
|
|
|
10
10
|
debug("imperium.layout.hooks.useBuildData");
|
|
11
11
|
function useBuildData({ stateSelectorHook, permissionSelectorHook, data, routeItem }) {
|
|
12
|
-
const { id } =
|
|
12
|
+
const { id } = useAuthenticatedState();
|
|
13
13
|
const { permissions } = useLayoutState();
|
|
14
14
|
const state = useSelectState(stateSelectorHook);
|
|
15
15
|
const loc = useLocation();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useBuildData.js","sources":["../../../src/hooks/useBuildData.ts"],"sourcesContent":["import {
|
|
1
|
+
{"version":3,"file":"useBuildData.js","sources":["../../../src/hooks/useBuildData.ts"],"sourcesContent":["import {useAuthenticatedState} from '@imperium/auth-client';\nimport debug from 'debug';\nimport type {Location} from 'history';\nimport {compact, merge} from 'lodash-es';\nimport {useLocation} from 'react-router-dom';\nimport {useLayoutState} from '../state';\nimport type {Data, PermissionSelectorHook, StateSelectorHook} from '../types';\nimport {useIsActiveRoute} from './useIsActiveRoute';\nimport {useSelectPermission} from './useSelectPermission';\nimport {useSelectState} from './useSelectState';\n\nconst d = debug('imperium.layout.hooks.useBuildData');\n\nexport interface UseBuildDataParams {\n\tdata?: Data;\n\trouteItem?: any;\n\tstateSelectorHook?: StateSelectorHook | StateSelectorHook[];\n\tpermissionSelectorHook?: PermissionSelectorHook | PermissionSelectorHook[];\n}\n\nexport function useBuildData({stateSelectorHook, permissionSelectorHook, data, routeItem}: UseBuildDataParams) {\n\tconst {id} = useAuthenticatedState();\n\tconst {permissions} = useLayoutState();\n\tconst state = useSelectState(stateSelectorHook);\n\tconst loc = useLocation() as Location;\n\tconst route = {\n\t\tpath: compact(loc.pathname.split('/')),\n\t\thash: loc.hash,\n\t\tsearch: new URLSearchParams(loc.search),\n\t};\n\tconst active = useIsActiveRoute({loc, route, state, active: false, id, permissions}, routeItem);\n\tconst permissionsX = useSelectPermission({state, loc, active, route, id, permissions}, permissionSelectorHook);\n\tconst newData: Data = {state, loc, active, route, permissions: {...permissions, ...permissionsX}, id};\n\treturn data ? merge(data, newData) : newData;\n}\n"],"names":[],"mappings":";;;;;;;;;AAWU,MAAM,oCAAoC,EAAA;AAS7C,SAAA,YAAA,CAAsB,EAAC,iBAAA,EAAmB,sBAAwB,EAAA,IAAA,EAAM,SAAgC,EAAA,EAAA;AAC9G,EAAM,MAAA,EAAC,OAAM,qBAAsB,EAAA,CAAA;AACnC,EAAM,MAAA,EAAC,gBAAe,cAAe,EAAA,CAAA;AACrC,EAAM,MAAA,KAAA,GAAQ,eAAe,iBAAiB,CAAA,CAAA;AAC9C,EAAA,MAAM,MAAM,WAAY,EAAA,CAAA;AACxB,EAAA,MAAM,KAAQ,GAAA;AAAA,IACb,MAAM,OAAQ,CAAA,GAAA,CAAI,QAAS,CAAA,KAAA,CAAM,GAAG,CAAC,CAAA;AAAA,IACrC,MAAM,GAAI,CAAA,IAAA;AAAA,IACV,MAAQ,EAAA,IAAI,eAAgB,CAAA,GAAA,CAAI,MAAM,CAAA;AAAA,GACvC,CAAA;AACA,EAAM,MAAA,MAAA,GAAS,gBAAiB,CAAA,EAAC,GAAK,EAAA,KAAA,EAAO,KAAO,EAAA,MAAA,EAAQ,KAAO,EAAA,EAAA,EAAI,WAAW,EAAA,EAAG,SAAS,CAAA,CAAA;AAC9F,EAAM,MAAA,YAAA,GAAe,mBAAoB,CAAA,EAAC,KAAO,EAAA,GAAA,EAAK,QAAQ,KAAO,EAAA,EAAA,EAAI,WAAW,EAAA,EAAG,sBAAsB,CAAA,CAAA;AAC7G,EAAM,MAAA,OAAA,GAAgB,EAAC,KAAA,EAAO,GAAK,EAAA,MAAA,EAAQ,KAAO,EAAA,WAAA,EAAa,EAAI,GAAA,WAAA,EAAA,GAAgB,YAAY,EAAA,EAAG,EAAE,EAAA,CAAA;AACpG,EAAA,OAAO,IAAO,GAAA,KAAA,CAAM,IAAM,EAAA,OAAO,CAAI,GAAA,OAAA,CAAA;AACtC;;;;"}
|
package/dist/stats.html
CHANGED
|
@@ -2669,7 +2669,7 @@ var drawChart = (function (exports) {
|
|
|
2669
2669
|
</script>
|
|
2670
2670
|
<script>
|
|
2671
2671
|
/*<!--*/
|
|
2672
|
-
const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src/index.ts","uid":"b668-1"}]},{"name":"state.js","children":[{"name":"src/state.ts","uid":"b668-3"}]},{"name":"layout/withLayout.js","children":[{"name":"src/layout/withLayout.tsx","uid":"b668-5"}]},{"name":"content/dividerSidebarItem.js","children":[{"name":"src/content/dividerSidebarItem.ts","uid":"b668-7"}]},{"name":"content/createPages.js","children":[{"name":"src/content/createPages.tsx","uid":"b668-9"}]},{"name":"layout/hooks/useMobileLayout.js","children":[{"name":"src/layout/hooks/useMobileLayout.ts","uid":"b668-11"}]},{"name":"types.js","children":[{"name":"src/types.ts","uid":"b668-13"}]},{"name":"content/types.js","children":[{"name":"src/content/types.ts","uid":"b668-15"}]},{"name":"datahooks/DataHooks.js","children":[{"name":"src/datahooks/DataHooks.tsx","uid":"b668-17"}]},{"name":"datahooks/PermissionHooks.js","children":[{"name":"src/datahooks/PermissionHooks.tsx","uid":"b668-19"}]},{"name":"datahooks/Permissions.js","children":[{"name":"src/datahooks/Permissions.tsx","uid":"b668-21"}]},{"name":"layout/components/Layout.js","children":[{"name":"src/layout/components/Layout.tsx","uid":"b668-23"}]},{"name":"content/components/ContentComponent.js","children":[{"name":"src/content/components/ContentComponent.tsx","uid":"b668-25"}]},{"name":"datahooks/ExecutePermissionHook.js","children":[{"name":"src/datahooks/ExecutePermissionHook.tsx","uid":"b668-27"}]},{"name":"datahooks/ExecuteDataHook.js","children":[{"name":"src/datahooks/ExecuteDataHook.tsx","uid":"b668-29"}]},{"name":"utils.js","children":[{"name":"src/utils.ts","uid":"b668-31"}]},{"name":"layout/moveItems.js","children":[{"name":"src/layout/moveItems.ts","uid":"b668-33"}]},{"name":"layout/components/styles.module.css.js","children":[{"name":"src/layout/components/styles.module.css","uid":"b668-35"}]},{"name":"content/components/styles.module.css.js","children":[{"name":"src/content/components/styles.module.css","uid":"b668-37"}]},{"name":"layout/components/SecondaryMenuToggleItem.js","children":[{"name":"src/layout/components/SecondaryMenuToggleItem.tsx","uid":"b668-39"}]},{"name":"layout/components/LayoutItemBar.js","children":[{"name":"src/layout/components/LayoutItemBar.tsx","uid":"b668-41"}]},{"name":"content/components/Header.js","children":[{"name":"src/content/components/Header.tsx","uid":"b668-43"}]},{"name":"content/components/SidebarItemWrapper.js","children":[{"name":"src/content/components/SidebarItemWrapper.tsx","uid":"b668-45"}]},{"name":"content/hooks/useBuildContentData.js","children":[{"name":"src/content/hooks/useBuildContentData.ts","uid":"b668-47"}]},{"name":"layout/types.js","children":[{"name":"src/layout/types.ts","uid":"b668-49"}]},{"name":"layout/utils.js","children":[{"name":"src/layout/utils.tsx","uid":"b668-51"}]},{"name":"hooks/useBuildData.js","children":[{"name":"src/hooks/useBuildData.ts","uid":"b668-53"}]},{"name":"layout/components/LayoutItemWrapper.js","children":[{"name":"src/layout/components/LayoutItemWrapper.tsx","uid":"b668-55"}]},{"name":"content/components/ActionFormSidebarItemComponent.js","children":[{"name":"src/content/components/ActionFormSidebarItemComponent.tsx","uid":"b668-57"}]},{"name":"content/components/ActionSidebarItemComponent.js","children":[{"name":"src/content/components/ActionSidebarItemComponent.tsx","uid":"b668-59"}]},{"name":"content/components/CustomSidebarItemComponent.js","children":[{"name":"src/content/components/CustomSidebarItemComponent.tsx","uid":"b668-61"}]},{"name":"content/components/PlainSidebarItem.js","children":[{"name":"src/content/components/PlainSidebarItem.tsx","uid":"b668-63"}]},{"name":"commonItems.js","children":[{"name":"src/commonItems.ts","uid":"b668-65"}]},{"name":"hooks/useIsActiveRoute.js","children":[{"name":"src/hooks/useIsActiveRoute.ts","uid":"b668-67"}]},{"name":"hooks/useSelectPermission.js","children":[{"name":"src/hooks/useSelectPermission.ts","uid":"b668-69"}]},{"name":"hooks/useSelectState.js","children":[{"name":"src/hooks/useSelectState.ts","uid":"b668-71"}]},{"name":"content/utils.js","children":[{"name":"src/content/utils.tsx","uid":"b668-73"}]},{"name":"content/components/ActionForm.js","children":[{"name":"src/content/components/ActionForm.tsx","uid":"b668-75"}]},{"name":"layout/components/CustomLayoutItemComponent.js","children":[{"name":"src/layout/components/CustomLayoutItemComponent.tsx","uid":"b668-77"}]},{"name":"layout/components/DropdownItem.js","children":[{"name":"src/layout/components/DropdownItem.tsx","uid":"b668-79"}]},{"name":"layout/components/MenuItem.js","children":[{"name":"src/layout/components/MenuItem.tsx","uid":"b668-81"}]},{"name":"layout/components/PlainItem.js","children":[{"name":"src/layout/components/PlainItem.tsx","uid":"b668-83"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/mike/dev/imperium/node_modules/style-inject/dist/style-inject.es.js","uid":"b668-85"}]}],"isRoot":true},"nodeParts":{"b668-1":{"renderedLength":184,"gzipLength":150,"brotliLength":131,"mainUid":"b668-0"},"b668-3":{"renderedLength":489,"gzipLength":250,"brotliLength":217,"mainUid":"b668-2"},"b668-5":{"renderedLength":1955,"gzipLength":562,"brotliLength":488,"mainUid":"b668-4"},"b668-7":{"renderedLength":59,"gzipLength":73,"brotliLength":63,"mainUid":"b668-6"},"b668-9":{"renderedLength":650,"gzipLength":301,"brotliLength":268,"mainUid":"b668-8"},"b668-11":{"renderedLength":445,"gzipLength":265,"brotliLength":229,"mainUid":"b668-10"},"b668-13":{"renderedLength":121,"gzipLength":111,"brotliLength":90,"mainUid":"b668-12"},"b668-15":{"renderedLength":388,"gzipLength":167,"brotliLength":111,"mainUid":"b668-14"},"b668-17":{"renderedLength":1058,"gzipLength":390,"brotliLength":330,"mainUid":"b668-16"},"b668-19":{"renderedLength":339,"gzipLength":202,"brotliLength":164,"mainUid":"b668-18"},"b668-21":{"renderedLength":663,"gzipLength":327,"brotliLength":285,"mainUid":"b668-20"},"b668-23":{"renderedLength":2638,"gzipLength":748,"brotliLength":635,"mainUid":"b668-22"},"b668-25":{"renderedLength":1970,"gzipLength":653,"brotliLength":565,"mainUid":"b668-24"},"b668-27":{"renderedLength":345,"gzipLength":207,"brotliLength":172,"mainUid":"b668-26"},"b668-29":{"renderedLength":123,"gzipLength":111,"brotliLength":93,"mainUid":"b668-28"},"b668-31":{"renderedLength":145,"gzipLength":117,"brotliLength":116,"mainUid":"b668-30"},"b668-33":{"renderedLength":1401,"gzipLength":376,"brotliLength":347,"mainUid":"b668-32"},"b668-35":{"renderedLength":3176,"gzipLength":928,"brotliLength":762,"mainUid":"b668-34"},"b668-37":{"renderedLength":1639,"gzipLength":581,"brotliLength":473,"mainUid":"b668-36"},"b668-39":{"renderedLength":335,"gzipLength":222,"brotliLength":169,"mainUid":"b668-38"},"b668-41":{"renderedLength":726,"gzipLength":294,"brotliLength":252,"mainUid":"b668-40"},"b668-43":{"renderedLength":1042,"gzipLength":377,"brotliLength":323,"mainUid":"b668-42"},"b668-45":{"renderedLength":1189,"gzipLength":399,"brotliLength":314,"mainUid":"b668-44"},"b668-47":{"renderedLength":257,"gzipLength":158,"brotliLength":122,"mainUid":"b668-46"},"b668-49":{"renderedLength":191,"gzipLength":113,"brotliLength":89,"mainUid":"b668-48"},"b668-51":{"renderedLength":915,"gzipLength":393,"brotliLength":328,"mainUid":"b668-50"},"b668-53":{"renderedLength":785,"gzipLength":364,"brotliLength":321,"mainUid":"b668-52"},"b668-55":{"renderedLength":1503,"gzipLength":487,"brotliLength":399,"mainUid":"b668-54"},"b668-57":{"renderedLength":663,"gzipLength":346,"brotliLength":277,"mainUid":"b668-56"},"b668-59":{"renderedLength":362,"gzipLength":246,"brotliLength":185,"mainUid":"b668-58"},"b668-61":{"renderedLength":83,"gzipLength":97,"brotliLength":66,"mainUid":"b668-60"},"b668-63":{"renderedLength":344,"gzipLength":236,"brotliLength":186,"mainUid":"b668-62"},"b668-65":{"renderedLength":203,"gzipLength":136,"brotliLength":97,"mainUid":"b668-64"},"b668-67":{"renderedLength":514,"gzipLength":227,"brotliLength":187,"mainUid":"b668-66"},"b668-69":{"renderedLength":294,"gzipLength":155,"brotliLength":114,"mainUid":"b668-68"},"b668-71":{"renderedLength":326,"gzipLength":176,"brotliLength":141,"mainUid":"b668-70"},"b668-73":{"renderedLength":628,"gzipLength":259,"brotliLength":219,"mainUid":"b668-72"},"b668-75":{"renderedLength":1667,"gzipLength":624,"brotliLength":519,"mainUid":"b668-74"},"b668-77":{"renderedLength":82,"gzipLength":96,"brotliLength":66,"mainUid":"b668-76"},"b668-79":{"renderedLength":1179,"gzipLength":450,"brotliLength":362,"mainUid":"b668-78"},"b668-81":{"renderedLength":252,"gzipLength":157,"brotliLength":116,"mainUid":"b668-80"},"b668-83":{"renderedLength":244,"gzipLength":177,"brotliLength":145,"mainUid":"b668-82"},"b668-85":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"b668-84"}},"nodeMetas":{"b668-0":{"id":"/src/index.ts","moduleParts":{"index.js":"b668-1"},"imported":[{"uid":"b668-10"},{"uid":"b668-4"},{"uid":"b668-2"},{"uid":"b668-8"},{"uid":"b668-6"}],"importedBy":[],"isEntry":true},"b668-2":{"id":"/src/state.ts","moduleParts":{"state.js":"b668-3"},"imported":[{"uid":"b668-90"},{"uid":"b668-91"}],"importedBy":[{"uid":"b668-0"},{"uid":"b668-10"},{"uid":"b668-20"},{"uid":"b668-22"},{"uid":"b668-24"},{"uid":"b668-26"},{"uid":"b668-52"}]},"b668-4":{"id":"/src/layout/withLayout.tsx","moduleParts":{"layout/withLayout.js":"b668-5"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-16"},{"uid":"b668-18"},{"uid":"b668-20"},{"uid":"b668-12"},{"uid":"b668-22"}],"importedBy":[{"uid":"b668-0"}]},"b668-6":{"id":"/src/content/dividerSidebarItem.ts","moduleParts":{"content/dividerSidebarItem.js":"b668-7"},"imported":[],"importedBy":[{"uid":"b668-0"}]},"b668-8":{"id":"/src/content/createPages.tsx","moduleParts":{"content/createPages.js":"b668-9"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-24"},{"uid":"b668-14"}],"importedBy":[{"uid":"b668-0"}]},"b668-10":{"id":"/src/layout/hooks/useMobileLayout.ts","moduleParts":{"layout/hooks/useMobileLayout.js":"b668-11"},"imported":[{"uid":"b668-86"},{"uid":"b668-87"},{"uid":"b668-88"},{"uid":"b668-89"},{"uid":"b668-2"}],"importedBy":[{"uid":"b668-0"}]},"b668-12":{"id":"/src/types.ts","moduleParts":{"types.js":"b668-13"},"imported":[],"importedBy":[{"uid":"b668-4"}]},"b668-14":{"id":"/src/content/types.ts","moduleParts":{"content/types.js":"b668-15"},"imported":[],"importedBy":[{"uid":"b668-8"},{"uid":"b668-42"},{"uid":"b668-44"}]},"b668-16":{"id":"/src/datahooks/DataHooks.tsx","moduleParts":{"datahooks/DataHooks.js":"b668-17"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-92"},{"uid":"b668-28"}],"importedBy":[{"uid":"b668-4"},{"uid":"b668-24"}]},"b668-18":{"id":"/src/datahooks/PermissionHooks.tsx","moduleParts":{"datahooks/PermissionHooks.js":"b668-19"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-26"}],"importedBy":[{"uid":"b668-4"}]},"b668-20":{"id":"/src/datahooks/Permissions.tsx","moduleParts":{"datahooks/Permissions.js":"b668-21"},"imported":[{"uid":"b668-87"},{"uid":"b668-93"},{"uid":"b668-86"},{"uid":"b668-88"},{"uid":"b668-2"}],"importedBy":[{"uid":"b668-4"}]},"b668-22":{"id":"/src/layout/components/Layout.tsx","moduleParts":{"layout/components/Layout.js":"b668-23"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-94"},{"uid":"b668-2"},{"uid":"b668-32"},{"uid":"b668-40"},{"uid":"b668-38"},{"uid":"b668-34"}],"importedBy":[{"uid":"b668-4"}]},"b668-24":{"id":"/src/content/components/ContentComponent.tsx","moduleParts":{"content/components/ContentComponent.js":"b668-25"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-95"},{"uid":"b668-88"},{"uid":"b668-16"},{"uid":"b668-2"},{"uid":"b668-30"},{"uid":"b668-46"},{"uid":"b668-42"},{"uid":"b668-44"},{"uid":"b668-36"}],"importedBy":[{"uid":"b668-8"}]},"b668-26":{"id":"/src/datahooks/ExecutePermissionHook.tsx","moduleParts":{"datahooks/ExecutePermissionHook.js":"b668-27"},"imported":[{"uid":"b668-87"},{"uid":"b668-88"},{"uid":"b668-2"}],"importedBy":[{"uid":"b668-18"}]},"b668-28":{"id":"/src/datahooks/ExecuteDataHook.tsx","moduleParts":{"datahooks/ExecuteDataHook.js":"b668-29"},"imported":[{"uid":"b668-87"}],"importedBy":[{"uid":"b668-16"}]},"b668-30":{"id":"/src/utils.ts","moduleParts":{"utils.js":"b668-31"},"imported":[{"uid":"b668-95"}],"importedBy":[{"uid":"b668-24"},{"uid":"b668-40"},{"uid":"b668-54"}]},"b668-32":{"id":"/src/layout/moveItems.ts","moduleParts":{"layout/moveItems.js":"b668-33"},"imported":[{"uid":"b668-86"},{"uid":"b668-95"},{"uid":"b668-48"}],"importedBy":[{"uid":"b668-22"}]},"b668-34":{"id":"/src/layout/components/styles.module.css","moduleParts":{"layout/components/styles.module.css.js":"b668-35"},"imported":[{"uid":"b668-84"}],"importedBy":[{"uid":"b668-22"},{"uid":"b668-38"},{"uid":"b668-78"}]},"b668-36":{"id":"/src/content/components/styles.module.css","moduleParts":{"content/components/styles.module.css.js":"b668-37"},"imported":[{"uid":"b668-84"}],"importedBy":[{"uid":"b668-24"},{"uid":"b668-42"}]},"b668-38":{"id":"/src/layout/components/SecondaryMenuToggleItem.tsx","moduleParts":{"layout/components/SecondaryMenuToggleItem.js":"b668-39"},"imported":[{"uid":"b668-87"},{"uid":"b668-94"},{"uid":"b668-34"}],"importedBy":[{"uid":"b668-22"}]},"b668-40":{"id":"/src/layout/components/LayoutItemBar.tsx","moduleParts":{"layout/components/LayoutItemBar.js":"b668-41"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-94"},{"uid":"b668-30"},{"uid":"b668-50"},{"uid":"b668-54"}],"importedBy":[{"uid":"b668-22"}]},"b668-42":{"id":"/src/content/components/Header.tsx","moduleParts":{"content/components/Header.js":"b668-43"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-94"},{"uid":"b668-14"},{"uid":"b668-36"}],"importedBy":[{"uid":"b668-24"}]},"b668-44":{"id":"/src/content/components/SidebarItemWrapper.tsx","moduleParts":{"content/components/SidebarItemWrapper.js":"b668-45"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-96"},{"uid":"b668-94"},{"uid":"b668-46"},{"uid":"b668-14"},{"uid":"b668-56"},{"uid":"b668-58"},{"uid":"b668-60"},{"uid":"b668-62"}],"importedBy":[{"uid":"b668-24"}]},"b668-46":{"id":"/src/content/hooks/useBuildContentData.ts","moduleParts":{"content/hooks/useBuildContentData.js":"b668-47"},"imported":[{"uid":"b668-52"}],"importedBy":[{"uid":"b668-24"},{"uid":"b668-44"}]},"b668-48":{"id":"/src/layout/types.ts","moduleParts":{"layout/types.js":"b668-49"},"imported":[],"importedBy":[{"uid":"b668-32"},{"uid":"b668-54"}]},"b668-50":{"id":"/src/layout/utils.tsx","moduleParts":{"layout/utils.js":"b668-51"},"imported":[{"uid":"b668-87"},{"uid":"b668-92"},{"uid":"b668-94"},{"uid":"b668-64"}],"importedBy":[{"uid":"b668-40"},{"uid":"b668-78"},{"uid":"b668-82"}]},"b668-52":{"id":"/src/hooks/useBuildData.ts","moduleParts":{"hooks/useBuildData.js":"b668-53"},"imported":[{"uid":"b668-93"},{"uid":"b668-86"},{"uid":"b668-95"},{"uid":"b668-92"},{"uid":"b668-2"},{"uid":"b668-66"},{"uid":"b668-68"},{"uid":"b668-70"}],"importedBy":[{"uid":"b668-46"},{"uid":"b668-54"}]},"b668-54":{"id":"/src/layout/components/LayoutItemWrapper.tsx","moduleParts":{"layout/components/LayoutItemWrapper.js":"b668-55"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-96"},{"uid":"b668-94"},{"uid":"b668-52"},{"uid":"b668-30"},{"uid":"b668-48"},{"uid":"b668-76"},{"uid":"b668-78"},{"uid":"b668-80"},{"uid":"b668-82"}],"importedBy":[{"uid":"b668-40"}]},"b668-56":{"id":"/src/content/components/ActionFormSidebarItemComponent.tsx","moduleParts":{"content/components/ActionFormSidebarItemComponent.js":"b668-57"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-94"},{"uid":"b668-72"},{"uid":"b668-74"}],"importedBy":[{"uid":"b668-44"}]},"b668-58":{"id":"/src/content/components/ActionSidebarItemComponent.tsx","moduleParts":{"content/components/ActionSidebarItemComponent.js":"b668-59"},"imported":[{"uid":"b668-87"},{"uid":"b668-94"},{"uid":"b668-72"}],"importedBy":[{"uid":"b668-44"}]},"b668-60":{"id":"/src/content/components/CustomSidebarItemComponent.tsx","moduleParts":{"content/components/CustomSidebarItemComponent.js":"b668-61"},"imported":[{"uid":"b668-87"}],"importedBy":[{"uid":"b668-44"}]},"b668-62":{"id":"/src/content/components/PlainSidebarItem.tsx","moduleParts":{"content/components/PlainSidebarItem.js":"b668-63"},"imported":[{"uid":"b668-87"},{"uid":"b668-92"},{"uid":"b668-94"},{"uid":"b668-72"}],"importedBy":[{"uid":"b668-44"}]},"b668-64":{"id":"/src/commonItems.ts","moduleParts":{"commonItems.js":"b668-65"},"imported":[],"importedBy":[{"uid":"b668-50"},{"uid":"b668-66"}]},"b668-66":{"id":"/src/hooks/useIsActiveRoute.ts","moduleParts":{"hooks/useIsActiveRoute.js":"b668-67"},"imported":[{"uid":"b668-97"},{"uid":"b668-64"}],"importedBy":[{"uid":"b668-52"}]},"b668-68":{"id":"/src/hooks/useSelectPermission.ts","moduleParts":{"hooks/useSelectPermission.js":"b668-69"},"imported":[{"uid":"b668-95"}],"importedBy":[{"uid":"b668-52"}]},"b668-70":{"id":"/src/hooks/useSelectState.ts","moduleParts":{"hooks/useSelectState.js":"b668-71"},"imported":[{"uid":"b668-95"}],"importedBy":[{"uid":"b668-52"}]},"b668-72":{"id":"/src/content/utils.tsx","moduleParts":{"content/utils.js":"b668-73"},"imported":[{"uid":"b668-87"},{"uid":"b668-94"}],"importedBy":[{"uid":"b668-56"},{"uid":"b668-58"},{"uid":"b668-62"}]},"b668-74":{"id":"/src/content/components/ActionForm.tsx","moduleParts":{"content/components/ActionForm.js":"b668-75"},"imported":[{"uid":"b668-87"},{"uid":"b668-98"},{"uid":"b668-86"},{"uid":"b668-94"}],"importedBy":[{"uid":"b668-56"}]},"b668-76":{"id":"/src/layout/components/CustomLayoutItemComponent.tsx","moduleParts":{"layout/components/CustomLayoutItemComponent.js":"b668-77"},"imported":[{"uid":"b668-87"}],"importedBy":[{"uid":"b668-54"}]},"b668-78":{"id":"/src/layout/components/DropdownItem.tsx","moduleParts":{"layout/components/DropdownItem.js":"b668-79"},"imported":[{"uid":"b668-87"},{"uid":"b668-86"},{"uid":"b668-94"},{"uid":"b668-50"},{"uid":"b668-34"}],"importedBy":[{"uid":"b668-54"}]},"b668-80":{"id":"/src/layout/components/MenuItem.tsx","moduleParts":{"layout/components/MenuItem.js":"b668-81"},"imported":[{"uid":"b668-87"},{"uid":"b668-94"}],"importedBy":[{"uid":"b668-54"}]},"b668-82":{"id":"/src/layout/components/PlainItem.tsx","moduleParts":{"layout/components/PlainItem.js":"b668-83"},"imported":[{"uid":"b668-87"},{"uid":"b668-94"},{"uid":"b668-50"}],"importedBy":[{"uid":"b668-54"}]},"b668-84":{"id":"/home/mike/dev/imperium/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"b668-85"},"imported":[],"importedBy":[{"uid":"b668-34"},{"uid":"b668-36"}]},"b668-86":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-10"},{"uid":"b668-4"},{"uid":"b668-8"},{"uid":"b668-16"},{"uid":"b668-18"},{"uid":"b668-20"},{"uid":"b668-22"},{"uid":"b668-24"},{"uid":"b668-32"},{"uid":"b668-40"},{"uid":"b668-42"},{"uid":"b668-44"},{"uid":"b668-54"},{"uid":"b668-52"},{"uid":"b668-56"},{"uid":"b668-78"},{"uid":"b668-74"}],"isExternal":true},"b668-87":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-10"},{"uid":"b668-4"},{"uid":"b668-8"},{"uid":"b668-16"},{"uid":"b668-18"},{"uid":"b668-20"},{"uid":"b668-22"},{"uid":"b668-24"},{"uid":"b668-28"},{"uid":"b668-26"},{"uid":"b668-40"},{"uid":"b668-38"},{"uid":"b668-42"},{"uid":"b668-44"},{"uid":"b668-50"},{"uid":"b668-54"},{"uid":"b668-56"},{"uid":"b668-58"},{"uid":"b668-60"},{"uid":"b668-62"},{"uid":"b668-76"},{"uid":"b668-78"},{"uid":"b668-80"},{"uid":"b668-82"},{"uid":"b668-72"},{"uid":"b668-74"}],"isExternal":true},"b668-88":{"id":"react-redux","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-10"},{"uid":"b668-20"},{"uid":"b668-24"},{"uid":"b668-26"}],"isExternal":true},"b668-89":{"id":"react-responsive","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-10"}],"isExternal":true},"b668-90":{"id":"@imperium/state","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-2"}],"isExternal":true},"b668-91":{"id":"@reduxjs/toolkit","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-2"}],"isExternal":true},"b668-92":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-16"},{"uid":"b668-50"},{"uid":"b668-52"},{"uid":"b668-62"}],"isExternal":true},"b668-93":{"id":"@imperium/auth-client","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-20"},{"uid":"b668-52"}],"isExternal":true},"b668-94":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-22"},{"uid":"b668-40"},{"uid":"b668-38"},{"uid":"b668-42"},{"uid":"b668-44"},{"uid":"b668-50"},{"uid":"b668-54"},{"uid":"b668-56"},{"uid":"b668-58"},{"uid":"b668-62"},{"uid":"b668-78"},{"uid":"b668-80"},{"uid":"b668-82"},{"uid":"b668-72"},{"uid":"b668-74"}],"isExternal":true},"b668-95":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-24"},{"uid":"b668-32"},{"uid":"b668-30"},{"uid":"b668-52"},{"uid":"b668-68"},{"uid":"b668-70"}],"isExternal":true},"b668-96":{"id":"mingo","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-44"},{"uid":"b668-54"}],"isExternal":true},"b668-97":{"id":"react-router","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-66"}],"isExternal":true},"b668-98":{"id":"@thx/controls","moduleParts":{},"imported":[],"importedBy":[{"uid":"b668-74"}],"isExternal":true}},"env":{"rollup":"2.79.1"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
|
|
2672
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src/index.ts","uid":"4a21-1"}]},{"name":"state.js","children":[{"name":"src/state.ts","uid":"4a21-3"}]},{"name":"content/dividerSidebarItem.js","children":[{"name":"src/content/dividerSidebarItem.ts","uid":"4a21-5"}]},{"name":"layout/withLayout.js","children":[{"name":"src/layout/withLayout.tsx","uid":"4a21-7"}]},{"name":"content/createPages.js","children":[{"name":"src/content/createPages.tsx","uid":"4a21-9"}]},{"name":"layout/hooks/useMobileLayout.js","children":[{"name":"src/layout/hooks/useMobileLayout.ts","uid":"4a21-11"}]},{"name":"types.js","children":[{"name":"src/types.ts","uid":"4a21-13"}]},{"name":"content/types.js","children":[{"name":"src/content/types.ts","uid":"4a21-15"}]},{"name":"datahooks/DataHooks.js","children":[{"name":"src/datahooks/DataHooks.tsx","uid":"4a21-17"}]},{"name":"datahooks/PermissionHooks.js","children":[{"name":"src/datahooks/PermissionHooks.tsx","uid":"4a21-19"}]},{"name":"datahooks/Permissions.js","children":[{"name":"src/datahooks/Permissions.tsx","uid":"4a21-21"}]},{"name":"layout/components/Layout.js","children":[{"name":"src/layout/components/Layout.tsx","uid":"4a21-23"}]},{"name":"content/components/ContentComponent.js","children":[{"name":"src/content/components/ContentComponent.tsx","uid":"4a21-25"}]},{"name":"utils.js","children":[{"name":"src/utils.ts","uid":"4a21-27"}]},{"name":"layout/moveItems.js","children":[{"name":"src/layout/moveItems.ts","uid":"4a21-29"}]},{"name":"datahooks/ExecuteDataHook.js","children":[{"name":"src/datahooks/ExecuteDataHook.tsx","uid":"4a21-31"}]},{"name":"layout/components/styles.module.css.js","children":[{"name":"src/layout/components/styles.module.css","uid":"4a21-33"}]},{"name":"datahooks/ExecutePermissionHook.js","children":[{"name":"src/datahooks/ExecutePermissionHook.tsx","uid":"4a21-35"}]},{"name":"content/components/styles.module.css.js","children":[{"name":"src/content/components/styles.module.css","uid":"4a21-37"}]},{"name":"layout/components/LayoutItemBar.js","children":[{"name":"src/layout/components/LayoutItemBar.tsx","uid":"4a21-39"}]},{"name":"layout/components/SecondaryMenuToggleItem.js","children":[{"name":"src/layout/components/SecondaryMenuToggleItem.tsx","uid":"4a21-41"}]},{"name":"content/hooks/useBuildContentData.js","children":[{"name":"src/content/hooks/useBuildContentData.ts","uid":"4a21-43"}]},{"name":"content/components/Header.js","children":[{"name":"src/content/components/Header.tsx","uid":"4a21-45"}]},{"name":"content/components/SidebarItemWrapper.js","children":[{"name":"src/content/components/SidebarItemWrapper.tsx","uid":"4a21-47"}]},{"name":"layout/types.js","children":[{"name":"src/layout/types.ts","uid":"4a21-49"}]},{"name":"layout/utils.js","children":[{"name":"src/layout/utils.tsx","uid":"4a21-51"}]},{"name":"hooks/useBuildData.js","children":[{"name":"src/hooks/useBuildData.ts","uid":"4a21-53"}]},{"name":"layout/components/LayoutItemWrapper.js","children":[{"name":"src/layout/components/LayoutItemWrapper.tsx","uid":"4a21-55"}]},{"name":"content/components/ActionFormSidebarItemComponent.js","children":[{"name":"src/content/components/ActionFormSidebarItemComponent.tsx","uid":"4a21-57"}]},{"name":"content/components/ActionSidebarItemComponent.js","children":[{"name":"src/content/components/ActionSidebarItemComponent.tsx","uid":"4a21-59"}]},{"name":"content/components/CustomSidebarItemComponent.js","children":[{"name":"src/content/components/CustomSidebarItemComponent.tsx","uid":"4a21-61"}]},{"name":"content/components/PlainSidebarItem.js","children":[{"name":"src/content/components/PlainSidebarItem.tsx","uid":"4a21-63"}]},{"name":"commonItems.js","children":[{"name":"src/commonItems.ts","uid":"4a21-65"}]},{"name":"hooks/useIsActiveRoute.js","children":[{"name":"src/hooks/useIsActiveRoute.ts","uid":"4a21-67"}]},{"name":"hooks/useSelectPermission.js","children":[{"name":"src/hooks/useSelectPermission.ts","uid":"4a21-69"}]},{"name":"hooks/useSelectState.js","children":[{"name":"src/hooks/useSelectState.ts","uid":"4a21-71"}]},{"name":"content/utils.js","children":[{"name":"src/content/utils.tsx","uid":"4a21-73"}]},{"name":"layout/components/CustomLayoutItemComponent.js","children":[{"name":"src/layout/components/CustomLayoutItemComponent.tsx","uid":"4a21-75"}]},{"name":"layout/components/DropdownItem.js","children":[{"name":"src/layout/components/DropdownItem.tsx","uid":"4a21-77"}]},{"name":"layout/components/PlainItem.js","children":[{"name":"src/layout/components/PlainItem.tsx","uid":"4a21-79"}]},{"name":"layout/components/MenuItem.js","children":[{"name":"src/layout/components/MenuItem.tsx","uid":"4a21-81"}]},{"name":"content/components/ActionForm.js","children":[{"name":"src/content/components/ActionForm.tsx","uid":"4a21-83"}]},{"name":"external/style-inject/dist/style-inject.es.js","children":[{"name":"home/darkadept/dev/imperium/node_modules/style-inject/dist/style-inject.es.js","uid":"4a21-85"}]}],"isRoot":true},"nodeParts":{"4a21-1":{"renderedLength":184,"gzipLength":150,"brotliLength":131,"mainUid":"4a21-0"},"4a21-3":{"renderedLength":489,"gzipLength":250,"brotliLength":217,"mainUid":"4a21-2"},"4a21-5":{"renderedLength":59,"gzipLength":73,"brotliLength":63,"mainUid":"4a21-4"},"4a21-7":{"renderedLength":1955,"gzipLength":562,"brotliLength":488,"mainUid":"4a21-6"},"4a21-9":{"renderedLength":650,"gzipLength":301,"brotliLength":268,"mainUid":"4a21-8"},"4a21-11":{"renderedLength":445,"gzipLength":265,"brotliLength":229,"mainUid":"4a21-10"},"4a21-13":{"renderedLength":121,"gzipLength":111,"brotliLength":90,"mainUid":"4a21-12"},"4a21-15":{"renderedLength":388,"gzipLength":167,"brotliLength":111,"mainUid":"4a21-14"},"4a21-17":{"renderedLength":1058,"gzipLength":390,"brotliLength":330,"mainUid":"4a21-16"},"4a21-19":{"renderedLength":339,"gzipLength":202,"brotliLength":164,"mainUid":"4a21-18"},"4a21-21":{"renderedLength":808,"gzipLength":351,"brotliLength":306,"mainUid":"4a21-20"},"4a21-23":{"renderedLength":2638,"gzipLength":748,"brotliLength":635,"mainUid":"4a21-22"},"4a21-25":{"renderedLength":1970,"gzipLength":653,"brotliLength":565,"mainUid":"4a21-24"},"4a21-27":{"renderedLength":145,"gzipLength":117,"brotliLength":116,"mainUid":"4a21-26"},"4a21-29":{"renderedLength":1401,"gzipLength":376,"brotliLength":347,"mainUid":"4a21-28"},"4a21-31":{"renderedLength":123,"gzipLength":111,"brotliLength":93,"mainUid":"4a21-30"},"4a21-33":{"renderedLength":3176,"gzipLength":928,"brotliLength":762,"mainUid":"4a21-32"},"4a21-35":{"renderedLength":345,"gzipLength":207,"brotliLength":172,"mainUid":"4a21-34"},"4a21-37":{"renderedLength":1639,"gzipLength":581,"brotliLength":473,"mainUid":"4a21-36"},"4a21-39":{"renderedLength":726,"gzipLength":294,"brotliLength":252,"mainUid":"4a21-38"},"4a21-41":{"renderedLength":335,"gzipLength":222,"brotliLength":169,"mainUid":"4a21-40"},"4a21-43":{"renderedLength":257,"gzipLength":158,"brotliLength":122,"mainUid":"4a21-42"},"4a21-45":{"renderedLength":1042,"gzipLength":377,"brotliLength":323,"mainUid":"4a21-44"},"4a21-47":{"renderedLength":1189,"gzipLength":399,"brotliLength":314,"mainUid":"4a21-46"},"4a21-49":{"renderedLength":191,"gzipLength":113,"brotliLength":89,"mainUid":"4a21-48"},"4a21-51":{"renderedLength":915,"gzipLength":393,"brotliLength":328,"mainUid":"4a21-50"},"4a21-53":{"renderedLength":799,"gzipLength":370,"brotliLength":330,"mainUid":"4a21-52"},"4a21-55":{"renderedLength":1503,"gzipLength":487,"brotliLength":399,"mainUid":"4a21-54"},"4a21-57":{"renderedLength":663,"gzipLength":346,"brotliLength":277,"mainUid":"4a21-56"},"4a21-59":{"renderedLength":362,"gzipLength":246,"brotliLength":185,"mainUid":"4a21-58"},"4a21-61":{"renderedLength":83,"gzipLength":97,"brotliLength":66,"mainUid":"4a21-60"},"4a21-63":{"renderedLength":344,"gzipLength":236,"brotliLength":186,"mainUid":"4a21-62"},"4a21-65":{"renderedLength":203,"gzipLength":136,"brotliLength":97,"mainUid":"4a21-64"},"4a21-67":{"renderedLength":514,"gzipLength":227,"brotliLength":187,"mainUid":"4a21-66"},"4a21-69":{"renderedLength":294,"gzipLength":155,"brotliLength":114,"mainUid":"4a21-68"},"4a21-71":{"renderedLength":326,"gzipLength":176,"brotliLength":141,"mainUid":"4a21-70"},"4a21-73":{"renderedLength":628,"gzipLength":259,"brotliLength":219,"mainUid":"4a21-72"},"4a21-75":{"renderedLength":82,"gzipLength":96,"brotliLength":66,"mainUid":"4a21-74"},"4a21-77":{"renderedLength":1179,"gzipLength":450,"brotliLength":362,"mainUid":"4a21-76"},"4a21-79":{"renderedLength":244,"gzipLength":177,"brotliLength":145,"mainUid":"4a21-78"},"4a21-81":{"renderedLength":252,"gzipLength":157,"brotliLength":116,"mainUid":"4a21-80"},"4a21-83":{"renderedLength":1667,"gzipLength":624,"brotliLength":519,"mainUid":"4a21-82"},"4a21-85":{"renderedLength":636,"gzipLength":318,"brotliLength":242,"mainUid":"4a21-84"}},"nodeMetas":{"4a21-0":{"id":"/src/index.ts","moduleParts":{"index.js":"4a21-1"},"imported":[{"uid":"4a21-10"},{"uid":"4a21-6"},{"uid":"4a21-2"},{"uid":"4a21-8"},{"uid":"4a21-4"}],"importedBy":[],"isEntry":true},"4a21-2":{"id":"/src/state.ts","moduleParts":{"state.js":"4a21-3"},"imported":[{"uid":"4a21-90"},{"uid":"4a21-91"}],"importedBy":[{"uid":"4a21-0"},{"uid":"4a21-10"},{"uid":"4a21-20"},{"uid":"4a21-22"},{"uid":"4a21-24"},{"uid":"4a21-34"},{"uid":"4a21-52"}]},"4a21-4":{"id":"/src/content/dividerSidebarItem.ts","moduleParts":{"content/dividerSidebarItem.js":"4a21-5"},"imported":[],"importedBy":[{"uid":"4a21-0"}]},"4a21-6":{"id":"/src/layout/withLayout.tsx","moduleParts":{"layout/withLayout.js":"4a21-7"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-86"},{"uid":"4a21-16"},{"uid":"4a21-18"},{"uid":"4a21-20"},{"uid":"4a21-12"},{"uid":"4a21-22"}],"importedBy":[{"uid":"4a21-0"}]},"4a21-8":{"id":"/src/content/createPages.tsx","moduleParts":{"content/createPages.js":"4a21-9"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-86"},{"uid":"4a21-24"},{"uid":"4a21-14"}],"importedBy":[{"uid":"4a21-0"}]},"4a21-10":{"id":"/src/layout/hooks/useMobileLayout.ts","moduleParts":{"layout/hooks/useMobileLayout.js":"4a21-11"},"imported":[{"uid":"4a21-86"},{"uid":"4a21-87"},{"uid":"4a21-88"},{"uid":"4a21-89"},{"uid":"4a21-2"}],"importedBy":[{"uid":"4a21-0"}]},"4a21-12":{"id":"/src/types.ts","moduleParts":{"types.js":"4a21-13"},"imported":[],"importedBy":[{"uid":"4a21-6"}]},"4a21-14":{"id":"/src/content/types.ts","moduleParts":{"content/types.js":"4a21-15"},"imported":[],"importedBy":[{"uid":"4a21-8"},{"uid":"4a21-44"},{"uid":"4a21-46"}]},"4a21-16":{"id":"/src/datahooks/DataHooks.tsx","moduleParts":{"datahooks/DataHooks.js":"4a21-17"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-86"},{"uid":"4a21-92"},{"uid":"4a21-30"}],"importedBy":[{"uid":"4a21-6"},{"uid":"4a21-24"}]},"4a21-18":{"id":"/src/datahooks/PermissionHooks.tsx","moduleParts":{"datahooks/PermissionHooks.js":"4a21-19"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-86"},{"uid":"4a21-34"}],"importedBy":[{"uid":"4a21-6"}]},"4a21-20":{"id":"/src/datahooks/Permissions.tsx","moduleParts":{"datahooks/Permissions.js":"4a21-21"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-93"},{"uid":"4a21-86"},{"uid":"4a21-88"},{"uid":"4a21-2"}],"importedBy":[{"uid":"4a21-6"}]},"4a21-22":{"id":"/src/layout/components/Layout.tsx","moduleParts":{"layout/components/Layout.js":"4a21-23"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-86"},{"uid":"4a21-94"},{"uid":"4a21-2"},{"uid":"4a21-28"},{"uid":"4a21-38"},{"uid":"4a21-40"},{"uid":"4a21-32"}],"importedBy":[{"uid":"4a21-6"}]},"4a21-24":{"id":"/src/content/components/ContentComponent.tsx","moduleParts":{"content/components/ContentComponent.js":"4a21-25"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-86"},{"uid":"4a21-95"},{"uid":"4a21-88"},{"uid":"4a21-16"},{"uid":"4a21-2"},{"uid":"4a21-26"},{"uid":"4a21-42"},{"uid":"4a21-44"},{"uid":"4a21-46"},{"uid":"4a21-36"}],"importedBy":[{"uid":"4a21-8"}]},"4a21-26":{"id":"/src/utils.ts","moduleParts":{"utils.js":"4a21-27"},"imported":[{"uid":"4a21-95"}],"importedBy":[{"uid":"4a21-24"},{"uid":"4a21-38"},{"uid":"4a21-54"}]},"4a21-28":{"id":"/src/layout/moveItems.ts","moduleParts":{"layout/moveItems.js":"4a21-29"},"imported":[{"uid":"4a21-86"},{"uid":"4a21-95"},{"uid":"4a21-48"}],"importedBy":[{"uid":"4a21-22"}]},"4a21-30":{"id":"/src/datahooks/ExecuteDataHook.tsx","moduleParts":{"datahooks/ExecuteDataHook.js":"4a21-31"},"imported":[{"uid":"4a21-87"}],"importedBy":[{"uid":"4a21-16"}]},"4a21-32":{"id":"/src/layout/components/styles.module.css","moduleParts":{"layout/components/styles.module.css.js":"4a21-33"},"imported":[{"uid":"4a21-84"}],"importedBy":[{"uid":"4a21-22"},{"uid":"4a21-40"},{"uid":"4a21-76"}]},"4a21-34":{"id":"/src/datahooks/ExecutePermissionHook.tsx","moduleParts":{"datahooks/ExecutePermissionHook.js":"4a21-35"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-88"},{"uid":"4a21-2"}],"importedBy":[{"uid":"4a21-18"}]},"4a21-36":{"id":"/src/content/components/styles.module.css","moduleParts":{"content/components/styles.module.css.js":"4a21-37"},"imported":[{"uid":"4a21-84"}],"importedBy":[{"uid":"4a21-24"},{"uid":"4a21-44"}]},"4a21-38":{"id":"/src/layout/components/LayoutItemBar.tsx","moduleParts":{"layout/components/LayoutItemBar.js":"4a21-39"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-86"},{"uid":"4a21-94"},{"uid":"4a21-26"},{"uid":"4a21-50"},{"uid":"4a21-54"}],"importedBy":[{"uid":"4a21-22"}]},"4a21-40":{"id":"/src/layout/components/SecondaryMenuToggleItem.tsx","moduleParts":{"layout/components/SecondaryMenuToggleItem.js":"4a21-41"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-94"},{"uid":"4a21-32"}],"importedBy":[{"uid":"4a21-22"}]},"4a21-42":{"id":"/src/content/hooks/useBuildContentData.ts","moduleParts":{"content/hooks/useBuildContentData.js":"4a21-43"},"imported":[{"uid":"4a21-52"}],"importedBy":[{"uid":"4a21-24"},{"uid":"4a21-46"}]},"4a21-44":{"id":"/src/content/components/Header.tsx","moduleParts":{"content/components/Header.js":"4a21-45"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-86"},{"uid":"4a21-94"},{"uid":"4a21-14"},{"uid":"4a21-36"}],"importedBy":[{"uid":"4a21-24"}]},"4a21-46":{"id":"/src/content/components/SidebarItemWrapper.tsx","moduleParts":{"content/components/SidebarItemWrapper.js":"4a21-47"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-86"},{"uid":"4a21-96"},{"uid":"4a21-94"},{"uid":"4a21-42"},{"uid":"4a21-14"},{"uid":"4a21-56"},{"uid":"4a21-58"},{"uid":"4a21-60"},{"uid":"4a21-62"}],"importedBy":[{"uid":"4a21-24"}]},"4a21-48":{"id":"/src/layout/types.ts","moduleParts":{"layout/types.js":"4a21-49"},"imported":[],"importedBy":[{"uid":"4a21-28"},{"uid":"4a21-54"}]},"4a21-50":{"id":"/src/layout/utils.tsx","moduleParts":{"layout/utils.js":"4a21-51"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-92"},{"uid":"4a21-94"},{"uid":"4a21-64"}],"importedBy":[{"uid":"4a21-38"},{"uid":"4a21-76"},{"uid":"4a21-78"}]},"4a21-52":{"id":"/src/hooks/useBuildData.ts","moduleParts":{"hooks/useBuildData.js":"4a21-53"},"imported":[{"uid":"4a21-93"},{"uid":"4a21-86"},{"uid":"4a21-95"},{"uid":"4a21-92"},{"uid":"4a21-2"},{"uid":"4a21-66"},{"uid":"4a21-68"},{"uid":"4a21-70"}],"importedBy":[{"uid":"4a21-42"},{"uid":"4a21-54"}]},"4a21-54":{"id":"/src/layout/components/LayoutItemWrapper.tsx","moduleParts":{"layout/components/LayoutItemWrapper.js":"4a21-55"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-86"},{"uid":"4a21-96"},{"uid":"4a21-94"},{"uid":"4a21-52"},{"uid":"4a21-26"},{"uid":"4a21-48"},{"uid":"4a21-74"},{"uid":"4a21-76"},{"uid":"4a21-80"},{"uid":"4a21-78"}],"importedBy":[{"uid":"4a21-38"}]},"4a21-56":{"id":"/src/content/components/ActionFormSidebarItemComponent.tsx","moduleParts":{"content/components/ActionFormSidebarItemComponent.js":"4a21-57"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-86"},{"uid":"4a21-94"},{"uid":"4a21-72"},{"uid":"4a21-82"}],"importedBy":[{"uid":"4a21-46"}]},"4a21-58":{"id":"/src/content/components/ActionSidebarItemComponent.tsx","moduleParts":{"content/components/ActionSidebarItemComponent.js":"4a21-59"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-94"},{"uid":"4a21-72"}],"importedBy":[{"uid":"4a21-46"}]},"4a21-60":{"id":"/src/content/components/CustomSidebarItemComponent.tsx","moduleParts":{"content/components/CustomSidebarItemComponent.js":"4a21-61"},"imported":[{"uid":"4a21-87"}],"importedBy":[{"uid":"4a21-46"}]},"4a21-62":{"id":"/src/content/components/PlainSidebarItem.tsx","moduleParts":{"content/components/PlainSidebarItem.js":"4a21-63"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-92"},{"uid":"4a21-94"},{"uid":"4a21-72"}],"importedBy":[{"uid":"4a21-46"}]},"4a21-64":{"id":"/src/commonItems.ts","moduleParts":{"commonItems.js":"4a21-65"},"imported":[],"importedBy":[{"uid":"4a21-50"},{"uid":"4a21-66"}]},"4a21-66":{"id":"/src/hooks/useIsActiveRoute.ts","moduleParts":{"hooks/useIsActiveRoute.js":"4a21-67"},"imported":[{"uid":"4a21-97"},{"uid":"4a21-64"}],"importedBy":[{"uid":"4a21-52"}]},"4a21-68":{"id":"/src/hooks/useSelectPermission.ts","moduleParts":{"hooks/useSelectPermission.js":"4a21-69"},"imported":[{"uid":"4a21-95"}],"importedBy":[{"uid":"4a21-52"}]},"4a21-70":{"id":"/src/hooks/useSelectState.ts","moduleParts":{"hooks/useSelectState.js":"4a21-71"},"imported":[{"uid":"4a21-95"}],"importedBy":[{"uid":"4a21-52"}]},"4a21-72":{"id":"/src/content/utils.tsx","moduleParts":{"content/utils.js":"4a21-73"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-94"}],"importedBy":[{"uid":"4a21-56"},{"uid":"4a21-58"},{"uid":"4a21-62"}]},"4a21-74":{"id":"/src/layout/components/CustomLayoutItemComponent.tsx","moduleParts":{"layout/components/CustomLayoutItemComponent.js":"4a21-75"},"imported":[{"uid":"4a21-87"}],"importedBy":[{"uid":"4a21-54"}]},"4a21-76":{"id":"/src/layout/components/DropdownItem.tsx","moduleParts":{"layout/components/DropdownItem.js":"4a21-77"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-86"},{"uid":"4a21-94"},{"uid":"4a21-50"},{"uid":"4a21-32"}],"importedBy":[{"uid":"4a21-54"}]},"4a21-78":{"id":"/src/layout/components/PlainItem.tsx","moduleParts":{"layout/components/PlainItem.js":"4a21-79"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-94"},{"uid":"4a21-50"}],"importedBy":[{"uid":"4a21-54"}]},"4a21-80":{"id":"/src/layout/components/MenuItem.tsx","moduleParts":{"layout/components/MenuItem.js":"4a21-81"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-94"}],"importedBy":[{"uid":"4a21-54"}]},"4a21-82":{"id":"/src/content/components/ActionForm.tsx","moduleParts":{"content/components/ActionForm.js":"4a21-83"},"imported":[{"uid":"4a21-87"},{"uid":"4a21-98"},{"uid":"4a21-86"},{"uid":"4a21-94"}],"importedBy":[{"uid":"4a21-56"}]},"4a21-84":{"id":"/home/darkadept/dev/imperium/node_modules/style-inject/dist/style-inject.es.js","moduleParts":{"external/style-inject/dist/style-inject.es.js":"4a21-85"},"imported":[],"importedBy":[{"uid":"4a21-32"},{"uid":"4a21-36"}]},"4a21-86":{"id":"debug","moduleParts":{},"imported":[],"importedBy":[{"uid":"4a21-10"},{"uid":"4a21-6"},{"uid":"4a21-8"},{"uid":"4a21-16"},{"uid":"4a21-18"},{"uid":"4a21-20"},{"uid":"4a21-22"},{"uid":"4a21-24"},{"uid":"4a21-28"},{"uid":"4a21-38"},{"uid":"4a21-44"},{"uid":"4a21-46"},{"uid":"4a21-54"},{"uid":"4a21-52"},{"uid":"4a21-56"},{"uid":"4a21-76"},{"uid":"4a21-82"}],"isExternal":true},"4a21-87":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"4a21-10"},{"uid":"4a21-6"},{"uid":"4a21-8"},{"uid":"4a21-16"},{"uid":"4a21-18"},{"uid":"4a21-20"},{"uid":"4a21-22"},{"uid":"4a21-24"},{"uid":"4a21-30"},{"uid":"4a21-34"},{"uid":"4a21-38"},{"uid":"4a21-40"},{"uid":"4a21-44"},{"uid":"4a21-46"},{"uid":"4a21-50"},{"uid":"4a21-54"},{"uid":"4a21-56"},{"uid":"4a21-58"},{"uid":"4a21-60"},{"uid":"4a21-62"},{"uid":"4a21-74"},{"uid":"4a21-76"},{"uid":"4a21-80"},{"uid":"4a21-78"},{"uid":"4a21-72"},{"uid":"4a21-82"}],"isExternal":true},"4a21-88":{"id":"react-redux","moduleParts":{},"imported":[],"importedBy":[{"uid":"4a21-10"},{"uid":"4a21-20"},{"uid":"4a21-24"},{"uid":"4a21-34"}],"isExternal":true},"4a21-89":{"id":"react-responsive","moduleParts":{},"imported":[],"importedBy":[{"uid":"4a21-10"}],"isExternal":true},"4a21-90":{"id":"@imperium/state","moduleParts":{},"imported":[],"importedBy":[{"uid":"4a21-2"}],"isExternal":true},"4a21-91":{"id":"@reduxjs/toolkit","moduleParts":{},"imported":[],"importedBy":[{"uid":"4a21-2"}],"isExternal":true},"4a21-92":{"id":"react-router-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"4a21-16"},{"uid":"4a21-50"},{"uid":"4a21-52"},{"uid":"4a21-62"}],"isExternal":true},"4a21-93":{"id":"@imperium/auth-client","moduleParts":{},"imported":[],"importedBy":[{"uid":"4a21-20"},{"uid":"4a21-52"}],"isExternal":true},"4a21-94":{"id":"semantic-ui-react","moduleParts":{},"imported":[],"importedBy":[{"uid":"4a21-22"},{"uid":"4a21-38"},{"uid":"4a21-40"},{"uid":"4a21-44"},{"uid":"4a21-46"},{"uid":"4a21-50"},{"uid":"4a21-54"},{"uid":"4a21-56"},{"uid":"4a21-58"},{"uid":"4a21-62"},{"uid":"4a21-76"},{"uid":"4a21-80"},{"uid":"4a21-78"},{"uid":"4a21-72"},{"uid":"4a21-82"}],"isExternal":true},"4a21-95":{"id":"lodash-es","moduleParts":{},"imported":[],"importedBy":[{"uid":"4a21-24"},{"uid":"4a21-28"},{"uid":"4a21-26"},{"uid":"4a21-52"},{"uid":"4a21-68"},{"uid":"4a21-70"}],"isExternal":true},"4a21-96":{"id":"mingo","moduleParts":{},"imported":[],"importedBy":[{"uid":"4a21-46"},{"uid":"4a21-54"}],"isExternal":true},"4a21-97":{"id":"react-router","moduleParts":{},"imported":[],"importedBy":[{"uid":"4a21-66"}],"isExternal":true},"4a21-98":{"id":"@thx/controls","moduleParts":{},"imported":[],"importedBy":[{"uid":"4a21-82"}],"isExternal":true}},"env":{"rollup":"2.79.1"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
|
|
2673
2673
|
|
|
2674
2674
|
const run = () => {
|
|
2675
2675
|
const width = window.innerWidth;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imperium/layout",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0",
|
|
4
4
|
"description": "Imperium Layout package",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/darkadept/imperium/issues"
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@imperium/auth-client": "^
|
|
35
|
-
"@imperium/client": "^
|
|
36
|
-
"@imperium/router": "^
|
|
37
|
-
"@imperium/state": "^
|
|
34
|
+
"@imperium/auth-client": "^13.0.0",
|
|
35
|
+
"@imperium/client": "^13.0.0",
|
|
36
|
+
"@imperium/router": "^13.0.0",
|
|
37
|
+
"@imperium/state": "^13.0.0",
|
|
38
38
|
"@thx/controls": "^17.0.1",
|
|
39
39
|
"debug": "^4.3.3",
|
|
40
40
|
"history": "^5.0.1",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"publishConfig": {
|
|
61
61
|
"access": "public"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "41b15cc067b6a4dad38ec1fce57c98889933de36"
|
|
64
64
|
}
|
package/dist/stats.txt
DELETED
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
-----------------------------
|
|
2
|
-
Rollup File Analysis
|
|
3
|
-
-----------------------------
|
|
4
|
-
bundle size: 32.208 KB
|
|
5
|
-
original size: 52.6 KB
|
|
6
|
-
code reduction: 38.77 %
|
|
7
|
-
module count: 43
|
|
8
|
-
|
|
9
|
-
/src/layout/components/styles.module.css
|
|
10
|
-
████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 9.86 % (3.176 KB)
|
|
11
|
-
/src/layout/components/Layout.tsx
|
|
12
|
-
████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.19 % (2.638 KB)
|
|
13
|
-
/src/content/components/ContentComponent.tsx
|
|
14
|
-
███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.12 % (1.97 KB)
|
|
15
|
-
/src/layout/withLayout.tsx
|
|
16
|
-
███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.07 % (1.955 KB)
|
|
17
|
-
/src/content/components/ActionForm.tsx
|
|
18
|
-
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.18 % (1.667 KB)
|
|
19
|
-
/src/content/components/styles.module.css
|
|
20
|
-
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 5.09 % (1.639 KB)
|
|
21
|
-
/src/layout/components/LayoutItemWrapper.tsx
|
|
22
|
-
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.67 % (1.503 KB)
|
|
23
|
-
/src/layout/moveItems.ts
|
|
24
|
-
██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.35 % (1.401 KB)
|
|
25
|
-
/src/content/components/SidebarItemWrapper.tsx
|
|
26
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.69 % (1.189 KB)
|
|
27
|
-
/src/layout/components/DropdownItem.tsx
|
|
28
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.66 % (1.179 KB)
|
|
29
|
-
/src/datahooks/DataHooks.tsx
|
|
30
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.28 % (1.058 KB)
|
|
31
|
-
/src/content/components/Header.tsx
|
|
32
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.24 % (1.042 KB)
|
|
33
|
-
/src/layout/utils.tsx
|
|
34
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.84 % (915 Bytes)
|
|
35
|
-
/src/hooks/useBuildData.ts
|
|
36
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.44 % (785 Bytes)
|
|
37
|
-
/src/layout/components/LayoutItemBar.tsx
|
|
38
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.25 % (726 Bytes)
|
|
39
|
-
/src/datahooks/Permissions.tsx
|
|
40
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.06 % (663 Bytes)
|
|
41
|
-
/src/content/components/ActionFormSidebarItemComponent.tsx
|
|
42
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.06 % (663 Bytes)
|
|
43
|
-
/src/content/createPages.tsx
|
|
44
|
-
█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.02 % (650 Bytes)
|
|
45
|
-
/home/mike/dev/imperium/node_modules/style-inject/dist/style-inject.es.js
|
|
46
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.97 % (636 Bytes)
|
|
47
|
-
/src/content/utils.tsx
|
|
48
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.95 % (628 Bytes)
|
|
49
|
-
/src/hooks/useIsActiveRoute.ts
|
|
50
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.6 % (514 Bytes)
|
|
51
|
-
/src/state.ts
|
|
52
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.52 % (489 Bytes)
|
|
53
|
-
/src/layout/hooks/useMobileLayout.ts
|
|
54
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.38 % (445 Bytes)
|
|
55
|
-
/src/content/types.ts
|
|
56
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.2 % (388 Bytes)
|
|
57
|
-
/src/content/components/ActionSidebarItemComponent.tsx
|
|
58
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.12 % (362 Bytes)
|
|
59
|
-
/src/datahooks/ExecutePermissionHook.tsx
|
|
60
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.07 % (345 Bytes)
|
|
61
|
-
/src/content/components/PlainSidebarItem.tsx
|
|
62
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.07 % (344 Bytes)
|
|
63
|
-
/src/datahooks/PermissionHooks.tsx
|
|
64
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.05 % (339 Bytes)
|
|
65
|
-
/src/layout/components/SecondaryMenuToggleItem.tsx
|
|
66
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.04 % (335 Bytes)
|
|
67
|
-
/src/hooks/useSelectState.ts
|
|
68
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.01 % (326 Bytes)
|
|
69
|
-
/src/hooks/useSelectPermission.ts
|
|
70
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.91 % (294 Bytes)
|
|
71
|
-
/src/content/hooks/useBuildContentData.ts
|
|
72
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.8 % (257 Bytes)
|
|
73
|
-
/src/layout/components/MenuItem.tsx
|
|
74
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.78 % (252 Bytes)
|
|
75
|
-
/src/layout/components/PlainItem.tsx
|
|
76
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.76 % (244 Bytes)
|
|
77
|
-
/src/commonItems.ts
|
|
78
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.63 % (203 Bytes)
|
|
79
|
-
/src/layout/types.ts
|
|
80
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.59 % (191 Bytes)
|
|
81
|
-
/src/index.ts
|
|
82
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.57 % (184 Bytes)
|
|
83
|
-
/src/utils.ts
|
|
84
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.45 % (145 Bytes)
|
|
85
|
-
/src/datahooks/ExecuteDataHook.tsx
|
|
86
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.38 % (123 Bytes)
|
|
87
|
-
/src/types.ts
|
|
88
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.38 % (121 Bytes)
|
|
89
|
-
/src/content/components/CustomSidebarItemComponent.tsx
|
|
90
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.26 % (83 Bytes)
|
|
91
|
-
/src/layout/components/CustomLayoutItemComponent.tsx
|
|
92
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.25 % (82 Bytes)
|
|
93
|
-
/src/content/dividerSidebarItem.ts
|
|
94
|
-
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0.18 % (59 Bytes)
|