├── .eslintrc.cjs ├── .gitignore ├── .npmrc ├── README.MD ├── graphql.config.ts ├── index.html ├── package.json ├── public └── favicon.ico ├── src ├── App.tsx ├── components │ ├── accordion.tsx │ ├── custom-avatar.tsx │ ├── home │ │ ├── deals-chart.tsx │ │ ├── latest-activities.tsx │ │ ├── total-count-card.tsx │ │ └── upcoming-events.tsx │ ├── index.ts │ ├── layout │ │ ├── account-settings.tsx │ │ ├── current-user.tsx │ │ ├── header.tsx │ │ └── index.tsx │ ├── select-option-with-avatar.tsx │ ├── skeleton │ │ ├── accordion-header.tsx │ │ ├── kanban.tsx │ │ ├── latest-activities.tsx │ │ ├── project-card.tsx │ │ └── upcoming-events.tsx │ ├── tags │ │ ├── contact-status-tag.tsx │ │ └── user-tag.tsx │ ├── tasks │ │ ├── form │ │ │ ├── description.tsx │ │ │ ├── due-date.tsx │ │ │ ├── header.tsx │ │ │ ├── stage.tsx │ │ │ ├── title.tsx │ │ │ └── users.tsx │ │ └── kanban │ │ │ ├── add-card-button.tsx │ │ │ ├── board.tsx │ │ │ ├── card.tsx │ │ │ ├── column.tsx │ │ │ └── item.tsx │ ├── text-icon.tsx │ └── text.tsx ├── config │ └── resources.tsx ├── constants │ └── index.tsx ├── graphql │ ├── mutations.ts │ ├── queries.ts │ ├── schema.types.ts │ └── types.ts ├── index.tsx ├── pages │ ├── company │ │ ├── contacts-table.tsx │ │ ├── create.tsx │ │ ├── edit.tsx │ │ └── list.tsx │ ├── forgotPassword │ │ └── index.tsx │ ├── home │ │ └── index.tsx │ ├── index.ts │ ├── login │ │ └── index.tsx │ ├── register │ │ └── index.tsx │ └── tasks │ │ ├── create.tsx │ │ ├── edit.tsx │ │ └── list.tsx ├── providers │ ├── auth.ts │ ├── data │ │ ├── fetch-wrapper.ts │ │ └── index.tsx │ └── index.ts ├── utilities │ ├── currency-number.ts │ ├── date │ │ ├── get-date-colors.ts │ │ └── index.ts │ ├── get-name-initials.ts │ ├── get-random-color.ts │ ├── helpers.ts │ └── index.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/.npmrc -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/README.MD -------------------------------------------------------------------------------- /graphql.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/graphql.config.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/accordion.tsx -------------------------------------------------------------------------------- /src/components/custom-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/custom-avatar.tsx -------------------------------------------------------------------------------- /src/components/home/deals-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/home/deals-chart.tsx -------------------------------------------------------------------------------- /src/components/home/latest-activities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/home/latest-activities.tsx -------------------------------------------------------------------------------- /src/components/home/total-count-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/home/total-count-card.tsx -------------------------------------------------------------------------------- /src/components/home/upcoming-events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/home/upcoming-events.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/layout/account-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/layout/account-settings.tsx -------------------------------------------------------------------------------- /src/components/layout/current-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/layout/current-user.tsx -------------------------------------------------------------------------------- /src/components/layout/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/layout/header.tsx -------------------------------------------------------------------------------- /src/components/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/layout/index.tsx -------------------------------------------------------------------------------- /src/components/select-option-with-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/select-option-with-avatar.tsx -------------------------------------------------------------------------------- /src/components/skeleton/accordion-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/skeleton/accordion-header.tsx -------------------------------------------------------------------------------- /src/components/skeleton/kanban.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/skeleton/kanban.tsx -------------------------------------------------------------------------------- /src/components/skeleton/latest-activities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/skeleton/latest-activities.tsx -------------------------------------------------------------------------------- /src/components/skeleton/project-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/skeleton/project-card.tsx -------------------------------------------------------------------------------- /src/components/skeleton/upcoming-events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/skeleton/upcoming-events.tsx -------------------------------------------------------------------------------- /src/components/tags/contact-status-tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/tags/contact-status-tag.tsx -------------------------------------------------------------------------------- /src/components/tags/user-tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/tags/user-tag.tsx -------------------------------------------------------------------------------- /src/components/tasks/form/description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/tasks/form/description.tsx -------------------------------------------------------------------------------- /src/components/tasks/form/due-date.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/tasks/form/due-date.tsx -------------------------------------------------------------------------------- /src/components/tasks/form/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/tasks/form/header.tsx -------------------------------------------------------------------------------- /src/components/tasks/form/stage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/tasks/form/stage.tsx -------------------------------------------------------------------------------- /src/components/tasks/form/title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/tasks/form/title.tsx -------------------------------------------------------------------------------- /src/components/tasks/form/users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/tasks/form/users.tsx -------------------------------------------------------------------------------- /src/components/tasks/kanban/add-card-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/tasks/kanban/add-card-button.tsx -------------------------------------------------------------------------------- /src/components/tasks/kanban/board.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/tasks/kanban/board.tsx -------------------------------------------------------------------------------- /src/components/tasks/kanban/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/tasks/kanban/card.tsx -------------------------------------------------------------------------------- /src/components/tasks/kanban/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/tasks/kanban/column.tsx -------------------------------------------------------------------------------- /src/components/tasks/kanban/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/tasks/kanban/item.tsx -------------------------------------------------------------------------------- /src/components/text-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/text-icon.tsx -------------------------------------------------------------------------------- /src/components/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/components/text.tsx -------------------------------------------------------------------------------- /src/config/resources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/config/resources.tsx -------------------------------------------------------------------------------- /src/constants/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/constants/index.tsx -------------------------------------------------------------------------------- /src/graphql/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/graphql/mutations.ts -------------------------------------------------------------------------------- /src/graphql/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/graphql/queries.ts -------------------------------------------------------------------------------- /src/graphql/schema.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/graphql/schema.types.ts -------------------------------------------------------------------------------- /src/graphql/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/graphql/types.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/company/contacts-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/pages/company/contacts-table.tsx -------------------------------------------------------------------------------- /src/pages/company/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/pages/company/create.tsx -------------------------------------------------------------------------------- /src/pages/company/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/pages/company/edit.tsx -------------------------------------------------------------------------------- /src/pages/company/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/pages/company/list.tsx -------------------------------------------------------------------------------- /src/pages/forgotPassword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/pages/forgotPassword/index.tsx -------------------------------------------------------------------------------- /src/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/pages/home/index.tsx -------------------------------------------------------------------------------- /src/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/pages/index.ts -------------------------------------------------------------------------------- /src/pages/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/pages/login/index.tsx -------------------------------------------------------------------------------- /src/pages/register/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/pages/register/index.tsx -------------------------------------------------------------------------------- /src/pages/tasks/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/pages/tasks/create.tsx -------------------------------------------------------------------------------- /src/pages/tasks/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/pages/tasks/edit.tsx -------------------------------------------------------------------------------- /src/pages/tasks/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/pages/tasks/list.tsx -------------------------------------------------------------------------------- /src/providers/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/providers/auth.ts -------------------------------------------------------------------------------- /src/providers/data/fetch-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/providers/data/fetch-wrapper.ts -------------------------------------------------------------------------------- /src/providers/data/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/providers/data/index.tsx -------------------------------------------------------------------------------- /src/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/providers/index.ts -------------------------------------------------------------------------------- /src/utilities/currency-number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/utilities/currency-number.ts -------------------------------------------------------------------------------- /src/utilities/date/get-date-colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/utilities/date/get-date-colors.ts -------------------------------------------------------------------------------- /src/utilities/date/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./get-date-colors"; 2 | -------------------------------------------------------------------------------- /src/utilities/get-name-initials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/utilities/get-name-initials.ts -------------------------------------------------------------------------------- /src/utilities/get-random-color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/utilities/get-random-color.ts -------------------------------------------------------------------------------- /src/utilities/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/utilities/helpers.ts -------------------------------------------------------------------------------- /src/utilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/src/utilities/index.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emredkyc/react_admin_dashboard/HEAD/vite.config.ts --------------------------------------------------------------------------------