Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEAT]: Revamp Admin dashboard #1507

Open
wants to merge 30 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
005507d
merge main
senthil-athiban Sep 14, 2024
03e2fac
(feat): add admin dashboard
senthil-athiban Oct 24, 2024
2eab322
(feat): add admin page
senthil-athiban Oct 24, 2024
b4cafa6
(feat): add assignment and classes page
senthil-athiban Oct 24, 2024
19b8626
(feat): add admin dashboard components
senthil-athiban Oct 24, 2024
abbf5e8
(feat): add shadcn components
senthil-athiban Oct 24, 2024
326b64a
(feat): add zod schema
senthil-athiban Oct 24, 2024
77afe11
(feat): install deps
senthil-athiban Oct 24, 2024
15b4dc8
(feat): add schema migrations
senthil-athiban Oct 24, 2024
2213894
(feat): add api routes
senthil-athiban Oct 24, 2024
c190776
(feat): add db queries
senthil-athiban Oct 24, 2024
ecbe926
(feat): add css changes
senthil-athiban Oct 24, 2024
19355a1
(feat): add assets
senthil-athiban Oct 24, 2024
cf771ea
(refactor): revert changes
senthil-athiban Oct 24, 2024
6137d1c
(fix): build issues
senthil-athiban Oct 24, 2024
4901c3b
(refactor): bunch of changes
senthil-athiban Oct 24, 2024
2946220
(fix): add mobile side bar button
senthil-athiban Oct 24, 2024
9961f30
(fix): errors
senthil-athiban Oct 24, 2024
c1308e7
(feat): add discord integration while adding video or notion
senthil-athiban Oct 24, 2024
002ea29
(feat): add collapse toggle
senthil-athiban Oct 24, 2024
fd58f21
(feat): indicate submission status
senthil-athiban Oct 24, 2024
31226ad
(refactor): errors
senthil-athiban Oct 24, 2024
9fd700b
(fix): logical issues
senthil-athiban Oct 24, 2024
5f9d409
(fix): build issues
senthil-athiban Oct 24, 2024
351e1f0
(refactor): remove unused code
senthil-athiban Oct 25, 2024
c2d404f
(refactor): rename files
senthil-athiban Oct 25, 2024
1df0fce
(refactor): consolidate imports
senthil-athiban Oct 25, 2024
8dfbca5
(refactor): code quality
senthil-athiban Oct 25, 2024
404e089
(fix): change logic for class
senthil-athiban Oct 25, 2024
ab18bbe
(fix): change button variants
senthil-athiban Oct 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,23 +36,32 @@
"@auth/prisma-adapter": "^1.0.6",
"@discordjs/core": "^1.1.1",
"@discordjs/next": "^0.1.1-dev.1673526225-a580768.0",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/react": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@hello-pangea/dnd": "^16.6.0",
"@hookform/resolvers": "^3.6.0",
"@icons-pack/react-simple-icons": "^9.4.0",
"@prisma/client": "^5.18.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tooltip": "^1.0.7",
"@tabler/icons-react": "^3.14.0",
"@tanstack/react-table": "^8.19.2",
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.5",
"@uiw/react-markdown-preview": "^5.1.3",
Expand Down Expand Up @@ -86,7 +95,7 @@
"qs": "^6.13.0",
"react": "^18",
"react-big-calendar": "^1.13.2",
"react-day-picker": "8.10.1",
"react-day-picker": "^9.0.8",
"react-dom": "^18",
"react-hook-form": "^7.50.1",
"react-icons": "^5.1.0",
Expand All @@ -97,6 +106,7 @@
"storybook": "^8.0.8",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-textshadow": "^2.1.3",
"vaul": "^0.8.9",
"video.js": "^8.6.1",
"videojs-contrib-eme": "^3.11.1",
Expand Down
Loading