├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── components.json ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public └── background.avif ├── renovate.json ├── src ├── App.tsx ├── components │ ├── ui │ │ ├── Collapse │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── checkbox.tsx │ │ ├── command.tsx │ │ ├── data-table-column-header.tsx │ │ ├── data-table-pagination.tsx │ │ ├── date-picker.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── popover.tsx │ │ ├── select.tsx │ │ ├── table.tsx │ │ └── textarea.tsx │ ├── universal │ │ ├── Button │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── Calendar │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── CheckBox │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── Color │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── Editable │ │ │ └── index.tsx │ │ ├── Editor │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── FileContextMenu │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── FloatBtn │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── Loading │ │ │ └── index.tsx │ │ ├── Modal │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── Radio │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── Space │ │ │ └── index.tsx │ │ ├── Tabs │ │ │ └── index.module.css │ │ ├── Tags │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── Title │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ └── Toggle │ │ │ ├── index.module.css │ │ │ └── index.tsx │ └── widgets │ │ ├── ActionButtons │ │ ├── index.module.css │ │ └── index.tsx │ │ ├── AnyListDataTable │ │ ├── anyColumn.tsx │ │ └── table.tsx │ │ ├── CommandDialog │ │ └── index.tsx │ │ ├── Footer │ │ ├── index.module.css │ │ └── index.tsx │ │ ├── Sidebar │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── item │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ └── ThemeComponent │ │ ├── ThemeSelect.tsx │ │ ├── ThemeTextarea.tsx │ │ └── index.tsx ├── constants │ └── services.ts ├── hooks │ ├── useAppCheck.ts │ ├── useHomeAggregateData.ts │ ├── useInitalData.ts │ ├── useSeo.ts │ └── useValidateUser.ts ├── index.css ├── libs │ ├── cn.ts │ └── dialogs.ts ├── main.tsx ├── pages │ ├── Categories │ │ ├── index.module.css │ │ └── index.tsx │ ├── Comments │ │ ├── Table │ │ │ ├── column.tsx │ │ │ └── data-table.tsx │ │ ├── component.tsx │ │ ├── index.module.css │ │ └── index.tsx │ ├── Files │ │ ├── components.tsx │ │ ├── index.module.css │ │ └── index.tsx │ ├── Friends │ │ ├── Table │ │ │ ├── column.tsx │ │ │ └── data-table.tsx │ │ ├── index.module.css │ │ └── index.tsx │ ├── Home │ │ ├── Table │ │ │ ├── columns.tsx │ │ │ └── data-table.tsx │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── universal.tsx │ ├── InternelServerErrorPage │ │ ├── index.module.css │ │ └── index.tsx │ ├── Login │ │ ├── index.module.css │ │ └── index.tsx │ ├── Pages │ │ └── Index │ │ │ ├── Table │ │ │ ├── column.tsx │ │ │ └── data-table.tsx │ │ │ └── index.tsx │ ├── Posts │ │ ├── Friends │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ └── Index │ │ │ ├── Table │ │ │ ├── column.tsx │ │ │ └── data-table.tsx │ │ │ ├── index.module.css │ │ │ └── index.tsx │ ├── Register │ │ └── index.tsx │ ├── Schedule │ │ ├── Table │ │ │ ├── column.tsx │ │ │ └── data-table.tsx │ │ ├── index.module.css │ │ └── index.tsx │ ├── Settings │ │ ├── index.module.css │ │ └── index.tsx │ ├── Status │ │ ├── index.module.css │ │ └── index.tsx │ ├── Themes │ │ ├── Table │ │ │ ├── column.tsx │ │ │ └── data-table.tsx │ │ ├── index.module.css │ │ └── index.tsx │ └── Write │ │ ├── Input.tsx │ │ ├── fields.tsx │ │ ├── index.module.css │ │ └── index.tsx ├── router │ └── router.tsx ├── sidebar.tsx ├── states │ ├── app.ts │ └── private.ts ├── style.css ├── types.d.ts ├── types │ └── basic.ts ├── utils │ ├── avatar.ts │ ├── cookie.ts │ ├── date.ts │ ├── env.ts │ ├── mock.ts │ ├── mouse.ts │ ├── path.ts │ ├── promise.ts │ ├── request.ts │ ├── storage.ts │ └── url.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- 1 | tmp -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/components.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/background.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/public/background.avif -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/renovate.json -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/ui/Collapse/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/Collapse/index.module.css -------------------------------------------------------------------------------- /src/components/ui/Collapse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/Collapse/index.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/data-table-column-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/data-table-column-header.tsx -------------------------------------------------------------------------------- /src/components/ui/data-table-pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/data-table-pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/date-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/date-picker.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/universal/Button/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Button/index.module.css -------------------------------------------------------------------------------- /src/components/universal/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Button/index.tsx -------------------------------------------------------------------------------- /src/components/universal/Calendar/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Calendar/index.module.css -------------------------------------------------------------------------------- /src/components/universal/Calendar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Calendar/index.tsx -------------------------------------------------------------------------------- /src/components/universal/CheckBox/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/CheckBox/index.module.css -------------------------------------------------------------------------------- /src/components/universal/CheckBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/CheckBox/index.tsx -------------------------------------------------------------------------------- /src/components/universal/Color/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Color/index.module.css -------------------------------------------------------------------------------- /src/components/universal/Color/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Color/index.tsx -------------------------------------------------------------------------------- /src/components/universal/Editable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Editable/index.tsx -------------------------------------------------------------------------------- /src/components/universal/Editor/index.module.css: -------------------------------------------------------------------------------- 1 | .editor { 2 | margin-top: 50px; 3 | 4 | } -------------------------------------------------------------------------------- /src/components/universal/Editor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Editor/index.tsx -------------------------------------------------------------------------------- /src/components/universal/FileContextMenu/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/FileContextMenu/index.module.css -------------------------------------------------------------------------------- /src/components/universal/FileContextMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/FileContextMenu/index.tsx -------------------------------------------------------------------------------- /src/components/universal/FloatBtn/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/FloatBtn/index.module.css -------------------------------------------------------------------------------- /src/components/universal/FloatBtn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/FloatBtn/index.tsx -------------------------------------------------------------------------------- /src/components/universal/Loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Loading/index.tsx -------------------------------------------------------------------------------- /src/components/universal/Modal/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Modal/index.module.css -------------------------------------------------------------------------------- /src/components/universal/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Modal/index.tsx -------------------------------------------------------------------------------- /src/components/universal/Radio/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Radio/index.module.css -------------------------------------------------------------------------------- /src/components/universal/Radio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Radio/index.tsx -------------------------------------------------------------------------------- /src/components/universal/Space/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Space/index.tsx -------------------------------------------------------------------------------- /src/components/universal/Tabs/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Tabs/index.module.css -------------------------------------------------------------------------------- /src/components/universal/Tags/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Tags/index.module.css -------------------------------------------------------------------------------- /src/components/universal/Tags/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Tags/index.tsx -------------------------------------------------------------------------------- /src/components/universal/Title/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Title/index.module.css -------------------------------------------------------------------------------- /src/components/universal/Title/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Title/index.tsx -------------------------------------------------------------------------------- /src/components/universal/Toggle/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Toggle/index.module.css -------------------------------------------------------------------------------- /src/components/universal/Toggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/universal/Toggle/index.tsx -------------------------------------------------------------------------------- /src/components/widgets/ActionButtons/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/widgets/ActionButtons/index.module.css -------------------------------------------------------------------------------- /src/components/widgets/ActionButtons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/widgets/ActionButtons/index.tsx -------------------------------------------------------------------------------- /src/components/widgets/AnyListDataTable/anyColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/widgets/AnyListDataTable/anyColumn.tsx -------------------------------------------------------------------------------- /src/components/widgets/AnyListDataTable/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/widgets/AnyListDataTable/table.tsx -------------------------------------------------------------------------------- /src/components/widgets/CommandDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/widgets/CommandDialog/index.tsx -------------------------------------------------------------------------------- /src/components/widgets/Footer/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/widgets/Footer/index.module.css -------------------------------------------------------------------------------- /src/components/widgets/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/widgets/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/widgets/Sidebar/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/widgets/Sidebar/index.module.css -------------------------------------------------------------------------------- /src/components/widgets/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/widgets/Sidebar/index.tsx -------------------------------------------------------------------------------- /src/components/widgets/Sidebar/item/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/widgets/Sidebar/item/index.module.css -------------------------------------------------------------------------------- /src/components/widgets/Sidebar/item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/widgets/Sidebar/item/index.tsx -------------------------------------------------------------------------------- /src/components/widgets/ThemeComponent/ThemeSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/widgets/ThemeComponent/ThemeSelect.tsx -------------------------------------------------------------------------------- /src/components/widgets/ThemeComponent/ThemeTextarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/widgets/ThemeComponent/ThemeTextarea.tsx -------------------------------------------------------------------------------- /src/components/widgets/ThemeComponent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/components/widgets/ThemeComponent/index.tsx -------------------------------------------------------------------------------- /src/constants/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/constants/services.ts -------------------------------------------------------------------------------- /src/hooks/useAppCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/hooks/useAppCheck.ts -------------------------------------------------------------------------------- /src/hooks/useHomeAggregateData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/hooks/useHomeAggregateData.ts -------------------------------------------------------------------------------- /src/hooks/useInitalData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/hooks/useInitalData.ts -------------------------------------------------------------------------------- /src/hooks/useSeo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/hooks/useSeo.ts -------------------------------------------------------------------------------- /src/hooks/useValidateUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/hooks/useValidateUser.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/index.css -------------------------------------------------------------------------------- /src/libs/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/libs/cn.ts -------------------------------------------------------------------------------- /src/libs/dialogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/libs/dialogs.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/Categories/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Categories/index.module.css -------------------------------------------------------------------------------- /src/pages/Categories/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Categories/index.tsx -------------------------------------------------------------------------------- /src/pages/Comments/Table/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Comments/Table/column.tsx -------------------------------------------------------------------------------- /src/pages/Comments/Table/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Comments/Table/data-table.tsx -------------------------------------------------------------------------------- /src/pages/Comments/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Comments/component.tsx -------------------------------------------------------------------------------- /src/pages/Comments/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Comments/index.module.css -------------------------------------------------------------------------------- /src/pages/Comments/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Comments/index.tsx -------------------------------------------------------------------------------- /src/pages/Files/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Files/components.tsx -------------------------------------------------------------------------------- /src/pages/Files/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Files/index.module.css -------------------------------------------------------------------------------- /src/pages/Files/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Files/index.tsx -------------------------------------------------------------------------------- /src/pages/Friends/Table/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Friends/Table/column.tsx -------------------------------------------------------------------------------- /src/pages/Friends/Table/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Friends/Table/data-table.tsx -------------------------------------------------------------------------------- /src/pages/Friends/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Friends/index.module.css -------------------------------------------------------------------------------- /src/pages/Friends/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Friends/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/Table/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Home/Table/columns.tsx -------------------------------------------------------------------------------- /src/pages/Home/Table/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Home/Table/data-table.tsx -------------------------------------------------------------------------------- /src/pages/Home/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Home/index.module.css -------------------------------------------------------------------------------- /src/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Home/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/universal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Home/universal.tsx -------------------------------------------------------------------------------- /src/pages/InternelServerErrorPage/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/InternelServerErrorPage/index.module.css -------------------------------------------------------------------------------- /src/pages/InternelServerErrorPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/InternelServerErrorPage/index.tsx -------------------------------------------------------------------------------- /src/pages/Login/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Login/index.module.css -------------------------------------------------------------------------------- /src/pages/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Login/index.tsx -------------------------------------------------------------------------------- /src/pages/Pages/Index/Table/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Pages/Index/Table/column.tsx -------------------------------------------------------------------------------- /src/pages/Pages/Index/Table/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Pages/Index/Table/data-table.tsx -------------------------------------------------------------------------------- /src/pages/Pages/Index/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Pages/Index/index.tsx -------------------------------------------------------------------------------- /src/pages/Posts/Friends/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Posts/Friends/index.module.css -------------------------------------------------------------------------------- /src/pages/Posts/Friends/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Posts/Friends/index.tsx -------------------------------------------------------------------------------- /src/pages/Posts/Index/Table/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Posts/Index/Table/column.tsx -------------------------------------------------------------------------------- /src/pages/Posts/Index/Table/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Posts/Index/Table/data-table.tsx -------------------------------------------------------------------------------- /src/pages/Posts/Index/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Posts/Index/index.module.css -------------------------------------------------------------------------------- /src/pages/Posts/Index/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Posts/Index/index.tsx -------------------------------------------------------------------------------- /src/pages/Register/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Register/index.tsx -------------------------------------------------------------------------------- /src/pages/Schedule/Table/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Schedule/Table/column.tsx -------------------------------------------------------------------------------- /src/pages/Schedule/Table/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Schedule/Table/data-table.tsx -------------------------------------------------------------------------------- /src/pages/Schedule/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Schedule/index.module.css -------------------------------------------------------------------------------- /src/pages/Schedule/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Schedule/index.tsx -------------------------------------------------------------------------------- /src/pages/Settings/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Settings/index.module.css -------------------------------------------------------------------------------- /src/pages/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Settings/index.tsx -------------------------------------------------------------------------------- /src/pages/Status/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Status/index.module.css -------------------------------------------------------------------------------- /src/pages/Status/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Status/index.tsx -------------------------------------------------------------------------------- /src/pages/Themes/Table/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Themes/Table/column.tsx -------------------------------------------------------------------------------- /src/pages/Themes/Table/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Themes/Table/data-table.tsx -------------------------------------------------------------------------------- /src/pages/Themes/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Themes/index.module.css -------------------------------------------------------------------------------- /src/pages/Themes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Themes/index.tsx -------------------------------------------------------------------------------- /src/pages/Write/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Write/Input.tsx -------------------------------------------------------------------------------- /src/pages/Write/fields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Write/fields.tsx -------------------------------------------------------------------------------- /src/pages/Write/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Write/index.module.css -------------------------------------------------------------------------------- /src/pages/Write/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/pages/Write/index.tsx -------------------------------------------------------------------------------- /src/router/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/router/router.tsx -------------------------------------------------------------------------------- /src/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/sidebar.tsx -------------------------------------------------------------------------------- /src/states/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/states/app.ts -------------------------------------------------------------------------------- /src/states/private.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/states/private.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/style.css -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /src/types/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/types/basic.ts -------------------------------------------------------------------------------- /src/utils/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/utils/avatar.ts -------------------------------------------------------------------------------- /src/utils/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/utils/cookie.ts -------------------------------------------------------------------------------- /src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/utils/date.ts -------------------------------------------------------------------------------- /src/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/utils/env.ts -------------------------------------------------------------------------------- /src/utils/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/utils/mock.ts -------------------------------------------------------------------------------- /src/utils/mouse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/utils/mouse.ts -------------------------------------------------------------------------------- /src/utils/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/utils/path.ts -------------------------------------------------------------------------------- /src/utils/promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/utils/promise.ts -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/utils/request.ts -------------------------------------------------------------------------------- /src/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/utils/storage.ts -------------------------------------------------------------------------------- /src/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/src/utils/url.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogland/console/HEAD/vite.config.ts --------------------------------------------------------------------------------