github add

This commit is contained in:
2022-04-18 10:34:55 +03:00
parent 96b571d09e
commit e0d3fc9061
112 changed files with 10 additions and 1 deletions

0
src/app/components/login-layout/LoginLayout.tsx Normal file → Executable file
View File

0
src/app/components/login-layout/index.ts Normal file → Executable file
View File

0
src/app/components/main-layout/MainLayout.tsx Normal file → Executable file
View File

0
src/app/components/main-layout/index.ts Normal file → Executable file
View File

0
src/app/components/menu/Menu.tsx Normal file → Executable file
View File

0
src/app/components/menu/index.ts Normal file → Executable file
View File

0
src/app/components/page/Page.tsx Normal file → Executable file
View File

0
src/app/components/page/index.ts Normal file → Executable file
View File

0
src/app/index.tsx Normal file → Executable file
View File

0
src/core/api/CrudAPI.ts Normal file → Executable file
View File

9
src/core/blocks/connected-router/ConnectedRouter.tsx Normal file → Executable file
View File

@ -20,3 +20,12 @@ const ConnectedRouter: FC<PropsWithChildren<unknown>> = ({children}) => {
};
export default memo(ConnectedRouter);
class Service {
constructor() {
}
}

0
src/core/blocks/connected-router/index.ts Normal file → Executable file
View File

0
src/core/blocks/entity-sidebar/EntitySidebar.tsx Normal file → Executable file
View File

0
src/core/blocks/entity-sidebar/index.ts Normal file → Executable file
View File

0
src/core/blocks/entity-table/EntityTable.tsx Normal file → Executable file
View File

0
src/core/blocks/entity-table/index.ts Normal file → Executable file
View File

0
src/core/consts/common.ts Normal file → Executable file
View File

0
src/core/dts/comon.d.ts vendored Normal file → Executable file
View File

0
src/core/hooks/useEqualMemo.ts Normal file → Executable file
View File

0
src/core/hooks/useParams.ts Normal file → Executable file
View File

0
src/core/hooks/useQuery.ts Normal file → Executable file
View File

0
src/core/hooks/useToggle.ts Normal file → Executable file
View File

0
src/core/infrastructure/AuthServiceAPI.ts Normal file → Executable file
View File

0
src/core/infrastructure/Http.ts Normal file → Executable file
View File

0
src/core/infrastructure/HttpAuthAPI.ts Normal file → Executable file
View File

0
src/core/infrastructure/StorageAPI.ts Normal file → Executable file
View File

0
src/core/infrastructure/TokenAPI.ts Normal file → Executable file
View File

0
src/core/infrastructure/atom/authAtom.ts Normal file → Executable file
View File

0
src/core/infrastructure/atom/createEntityAtoms.ts Normal file → Executable file
View File

0
src/core/infrastructure/atom/routerAtom.ts Normal file → Executable file
View File

0
src/core/infrastructure/atom/store.ts Normal file → Executable file
View File

0
src/core/infrastructure/atom/usersAtom.ts Normal file → Executable file
View File

0
src/core/referers/__test__/common.test.ts Normal file → Executable file
View File

0
src/core/referers/common.ts Normal file → Executable file
View File

0
src/core/services/CrudService.ts Normal file → Executable file
View File

0
src/core/services/RouterService.ts Normal file → Executable file
View File

0
src/core/types/EntityModes.ts Normal file → Executable file
View File

0
src/core/utils/__test__/getParamFromUrl.test.ts Normal file → Executable file
View File

0
src/core/utils/__test__/getQueryParamFromUrl.test.ts Normal file → Executable file
View File

0
src/core/utils/__test__/jsonParse.test.ts Normal file → Executable file
View File

0
src/core/utils/__test__/parsers.test.ts Normal file → Executable file
View File

0
src/core/utils/__test__/performTextSearch.test.ts Normal file → Executable file
View File

0
src/core/utils/__test__/queryParsers.test.ts Normal file → Executable file
View File

0
src/core/utils/__test__/toArray.test.ts Normal file → Executable file
View File

0
src/core/utils/__test__/toRequestParamValue.test.ts Normal file → Executable file
View File

0
src/core/utils/getParamFromUrl.ts Normal file → Executable file
View File

0
src/core/utils/getQueryFromUrl.ts Normal file → Executable file
View File

0
src/core/utils/jsonParse.ts Normal file → Executable file
View File

0
src/core/utils/jsonStringify.ts Normal file → Executable file
View File

0
src/core/utils/objectEntries.ts Normal file → Executable file
View File

0
src/core/utils/objectKeys.ts Normal file → Executable file
View File

0
src/core/utils/parsers.ts Normal file → Executable file
View File

0
src/core/utils/performTextSearch.ts Normal file → Executable file
View File

0
src/core/utils/queryParsers.ts Normal file → Executable file
View File

0
src/core/utils/toArray.ts Normal file → Executable file
View File

0
src/core/utils/toRequestParamValue.ts Normal file → Executable file
View File

0
src/core/utils/triggerLink.ts Normal file → Executable file
View File

0
src/pages/actions/components/page/Page.tsx Normal file → Executable file
View File

0
src/pages/actions/components/page/index.ts Normal file → Executable file
View File

2
src/pages/actions/routing.tsx Normal file → Executable file
View File

@ -4,5 +4,5 @@ import {ROUTES} from '_consts/common';
import Page from './components/page';
export default (
<Route component={Page} path={ROUTES.ACTIONS} exact />
<Route component={Page} path={ROUTES} exact />
);

0
src/pages/actions/types.ts Normal file → Executable file
View File

0
src/pages/conditions/components/page/Page.tsx Normal file → Executable file
View File

0
src/pages/conditions/components/page/index.ts Normal file → Executable file
View File

0
src/pages/conditions/routing.tsx Normal file → Executable file
View File

0
src/pages/conditions/types.ts Normal file → Executable file
View File

0
src/pages/currencies/components/page/Page.tsx Normal file → Executable file
View File

0
src/pages/currencies/components/page/index.ts Normal file → Executable file
View File

0
src/pages/currencies/routing.tsx Normal file → Executable file
View File

0
src/pages/currencies/types.ts Normal file → Executable file
View File

0
src/pages/graphs/components/page/Page.tsx Normal file → Executable file
View File

0
src/pages/graphs/components/page/index.ts Normal file → Executable file
View File

0
src/pages/graphs/routing.tsx Normal file → Executable file
View File

0
src/pages/graphs/types.ts Normal file → Executable file
View File

0
src/pages/main/components/page/Page.tsx Normal file → Executable file
View File

0
src/pages/main/components/page/index.ts Normal file → Executable file
View File

0
src/pages/main/routing.tsx Normal file → Executable file
View File

0
src/pages/not-found/components/page/Page.tsx Normal file → Executable file
View File

0
src/pages/not-found/components/page/index.ts Normal file → Executable file
View File

0
src/pages/users/api/UsersAPI.ts Normal file → Executable file
View File

0
src/pages/users/api/types.ts Normal file → Executable file
View File

View File

0
src/pages/users/components/page/Page.tsx Normal file → Executable file
View File

0
src/pages/users/components/page/index.ts Normal file → Executable file
View File

View File

0
src/pages/users/components/user-sidebar/index.ts Normal file → Executable file
View File

0
src/pages/users/components/users-table/UsersTable.tsx Normal file → Executable file
View File

0
src/pages/users/components/users-table/index.ts Normal file → Executable file
View File

0
src/pages/users/consts.ts Normal file → Executable file
View File

0
src/pages/users/enums.ts Normal file → Executable file
View File

0
src/pages/users/routing.tsx Normal file → Executable file
View File

0
src/pages/users/services/UsersServices.ts Normal file → Executable file
View File

0
src/pages/users/types.ts Normal file → Executable file
View File

0
src/pages/users/utils.ts Normal file → Executable file
View File