Program Commit
This commit is contained in:
54
checklist.md
Normal file
54
checklist.md
Normal file
@@ -0,0 +1,54 @@
|
||||
# Project Checklist
|
||||
|
||||
## Backend
|
||||
- [x] Create backend directory
|
||||
- [x] Initialize Node.js project
|
||||
- [x] Install backend dependencies
|
||||
- [x] Create a basic Express server
|
||||
- [x] Set up Discord OAuth2
|
||||
- [x] Create API endpoint to get user's servers
|
||||
- [x] Store user theme preference on the backend
|
||||
|
||||
## Frontend
|
||||
- [x] Create login page
|
||||
- [x] Create dashboard page
|
||||
- [x] Connect frontend to backend
|
||||
- [x] Improve frontend UI with a component library
|
||||
- [x] Implement server-specific settings pages
|
||||
- [x] Persist user data on the frontend
|
||||
- [x] Add logout functionality
|
||||
- [x] Add more styling and animations to the UI
|
||||
- [x] Remember scroll position
|
||||
- [x] Fix issue with fetching server names
|
||||
- [x] Implement theme switching (light, dark, Discord grey)
|
||||
- [x] Create a user settings menu
|
||||
- [x] Set Discord grey as the default theme
|
||||
- [x] Refine user settings menu UI
|
||||
- [x] Further refine user settings menu UI
|
||||
- [x] Add server icons to dashboard cards
|
||||
- [x] Ensure responsive and uniform card sizing
|
||||
- [x] Fine-tune card sizing
|
||||
- [x] Further fine-tune card UI
|
||||
- [x] Add Commands section to server settings page
|
||||
- [x] Refine 'Back to Dashboard' button
|
||||
- [x] Place 'Invite' button beside the server title on dashboard/server cards
|
||||
- Acceptance criteria: the invite button appears horizontally adjacent to the server title (to the right), remains visible and usable on tablet and desktop layouts, is keyboard-focusable, and has an accessible aria-label (e.g. "Invite bot to SERVER_NAME").
|
||||
- [x] Show the server name in a rounded "bubble" and render it bold
|
||||
- Acceptance criteria: server name is inside a rounded container (padding + border-radius), the text is bold, background provides sufficient contrast, and the bubble adapts to long names (truncation or wrapping) to avoid layout breakage.
|
||||
- [x] Update Dashboard component to use bubble title + invite-button layout
|
||||
- Acceptance criteria: visual matches design spec above; small-screen fallback stacks invite button under the title or shows a compact icon; no regressions to other card elements.
|
||||
- [x] Add pre-invite check to dashboard invite button
|
||||
- Acceptance criteria: Clicking invite button checks if bot is already in the server. If so, show a dismissible message (e.g., a snackbar or modal) saying "Bot is already in this server." If not, proceed with the invite.
|
||||
- [x] Center invite button on Server Settings page
|
||||
- Acceptance criteria: On the server-specific settings page, the "Invite Bot" button (or the "Bot is already in this server" text) should be vertically and horizontally aligned with the main server name title for a cleaner look.
|
||||
- [x] Fix incorrect invite link on dashboard cards
|
||||
- Acceptance criteria: The invite link generated for the dashboard cards should correctly redirect to the Discord OAuth2 authorization page with the proper client ID, permissions, and scope, matching the functionality of the invite button in the server settings panel.
|
||||
|
||||
## Discord Bot
|
||||
- [x] Create a basic Discord bot
|
||||
- [x] Add a feature with both slash and web commands
|
||||
- [x] Implement bot invitation functionality
|
||||
- [x] Reorganize bot file structure
|
||||
- [x] Implement command handler
|
||||
- [x] Implement event handler
|
||||
- [x] Set bot status on ready event
|
||||
Reference in New Issue
Block a user