Commit dbd7527
authored
Replace PrimeVue with DaisyUI (#27)
* chore: update dependencies and configuration files
- Updated various dependencies in package.json to their latest versions for improved performance and security.
- Simplified Tailwind CSS imports in main.scss.
- Enhanced TypeScript configuration in tsconfig.app.json and tsconfig.node.json with composite and preserveSymlinks options.
- Added additional files to be included in tsconfig.node.json for better type checking.
- Introduced a new Prettier configuration file (.prettierrc.cjs) to manage code formatting.
- Created a new ESLint configuration file (eslint.config.ts) to enforce coding standards and integrate with Prettier.
* refactor: standardize import statements and improve code readability across multiple components
feat: enhance MessageDialog and MessageDialogError components with improved error handling and display
fix: update MessageHeader component to ensure proper prop definition
chore: refactor Messages component for better state management and user experience
style: update router configuration for consistency and clarity
fix: improve date and error utility functions for better performance and readability
style: update Tailwind CSS configuration for improved theme management
chore: update Vite configuration for better build process and environment handling
style: add global styles for Tailwind CSS and DaisyUI integration
* feat: implement confirmation dialog, modal, theme switcher, and toast notifications components
* feat: Enhance BrokerTopics and Messages pages with sorting and pagination features
- Implemented sorting functionality for subscription fields in BrokerTopics.vue.
- Added pagination support to BrokerTopics.vue and Messages.vue for better data management.
- Refactored the table structure in Messages.vue to use a standard HTML table with Tailwind CSS styling.
- Updated error handling utility to return a structured error object.
- Modified Tailwind CSS configuration to support dark mode based on a selector.
- Removed unused PrimeVue components and adjusted Vite configuration for Tailwind CSS integration.
* refactor: remove unused CSS files and replace icon usage with Vue components
- Deleted treeselect.css and treetable.css as they are no longer needed.
- Added new icon components for ArrowLeft, ArrowRight, Bars, ChevronLeft, ChevronRight, CircleFilled, Clock, Database, Eraser, Hourglass, Refresh, Replay, Sitemap, Trash, and XMark.
- Updated various components to use the new icon components instead of icon classes.
- Refactored MessageDialog, Messages, Broker, and AppLayout components to improve readability and maintainability.
* refactor: streamline auto-refresh dropdown implementation and improve backdrop handling
* refactor: improve UI components and layout for broker pages
- Enhanced navigation tabs in Broker.vue for better accessibility and styling.
- Adjusted table layouts and styles in BrokerOverview.vue, BrokerQueues.vue, and BrokerTopics.vue for consistency and improved readability.
- Updated message display in MessageDialog.vue and Messages.vue for better user experience.
- Introduced new icons (ChartBarIcon, ChevronDownIcon, ChevronUpIcon) for enhanced visual representation.
- Improved search bar styling across various components for a more cohesive design.
* refactor: update styling and layout for message components to enhance readability and consistency
* refactor: enhance queue header layout and display additional queue information
* feat: implement CustomExampleTestConsumer and associated message types
* refactor: update queue header styling and improve queue type button interactions
* refactor: migrate user settings to local settings and update related components
* feat: add CopyIcon component and integrate clipboard functionality in MessageDialog and MessageDialogError
* refactor: remove unused refetchInterval parameter from useQueuesQuery and update related usages
* Refactor message handling features to remove OperationResult wrapper
- Updated IDeleteMessagesFeature, IGetMessagesFeature, IPurgeQueueFeature, IRequeueMessagesFeature, and IRequeueSpecificMessagesFeature interfaces to return response types directly instead of wrapping them in OperationResult.
- Modified corresponding feature implementations to return response types directly.
- Introduced ResQueueExceptionMiddleware for centralized exception handling.
- Removed OperationResult class as it is no longer needed.
- Updated frontend components to reflect changes in routing and layout, including the addition of a new Dashboard component and removal of the BrokerOverview component.
- Enhanced error handling in errorUtils to provide more informative error messages.
* refactor: update checkbox styling and add message count display in Messages component
* feat: enhance RequeueDialog with queue status visualization and improve empty states in Messages and Broker pages
* feat: migrate to DaisyUI themes and enhance theme management in the application
* feat: add DotnetStackTraceHighlighter component and integrate it into MessageDialogError for improved error stack trace visualization
* feat: enhance MessageDialog with additional message metadata display and improved styling
* feat: add consumers for birthday invites, drink orders, party scheduling, and weather checks; remove unused test consumer and messages
* feat: add scheduled and recurring message indicators in MessageDialog; update enqueue time display logic in Messages
* feat: enhance DrinkOrderConsumer with immediate retry policy; update MessageDialog and Messages components for improved scheduling and delivery display
* feat: enhance Messages component with improved status display and URN formatting; add pending and failed status logic
* feat: update MessageDialog and MessageDialogError components with error handling logic and improved styling; adjust layout in Messages component
* feat: update BrokerQueues component to remove 'locked' sorting option and enhance 'scheduled' display with improved styling
* feat: update message handling components with improved status display and add MessagesTable for better organization
* feat: enhance theme handling and UI components with new dark theme detection; update job state DTO and message dialogs for improved error display and layout
* feat: update deployment configuration to version 2.0.0 and enhance changelog with new features and updates1 parent 8573425 commit dbd7527
File tree
233 files changed
+6705
-10631
lines changed- .github/workflows
- backend/ResQueue
- ResQueue
- Endpoints
- Exceptions
- Features
- Messages
- DeleteMessages
- GetMessages
- GetSingleMessage
- PurgeQueue
- RequeueMessages
- RequeueSpecificMessages
- Subscriptions/GetSubscriptions
- Middleware
- WebSample
- Consumers
- frontend
- src
- api
- auth
- jobs
- messages
- queues
- subscriptions
- assets
- primevue
- components
- icons
- composables
- config
- constants
- dialogs
- dtos
- job
- message
- queue
- subscriptions
- layouts
- pages
- broker
- overview
- queues
- topics
- messages
- router
- utils
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
233 files changed
+6705
-10631
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
43 | 43 | | |
44 | 44 | | |
45 | 45 | | |
46 | | - | |
| 46 | + | |
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
5 | 15 | | |
6 | 16 | | |
7 | 17 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
Lines changed: 10 additions & 35 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
21 | | - | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
| 20 | + | |
| 21 | + | |
27 | 22 | | |
28 | 23 | | |
29 | 24 | | |
30 | 25 | | |
31 | 26 | | |
32 | | - | |
33 | | - | |
34 | | - | |
35 | | - | |
36 | | - | |
37 | | - | |
38 | | - | |
| 27 | + | |
| 28 | + | |
39 | 29 | | |
40 | 30 | | |
41 | 31 | | |
42 | 32 | | |
43 | 33 | | |
44 | | - | |
45 | | - | |
46 | | - | |
47 | | - | |
48 | | - | |
49 | | - | |
50 | | - | |
| 34 | + | |
| 35 | + | |
51 | 36 | | |
52 | 37 | | |
53 | 38 | | |
54 | 39 | | |
55 | 40 | | |
56 | | - | |
57 | | - | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | | - | |
| 41 | + | |
| 42 | + | |
63 | 43 | | |
64 | 44 | | |
65 | 45 | | |
66 | 46 | | |
67 | | - | |
68 | | - | |
69 | | - | |
70 | | - | |
71 | | - | |
72 | | - | |
73 | | - | |
| 47 | + | |
| 48 | + | |
74 | 49 | | |
75 | 50 | | |
76 | 51 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
4 | 3 | | |
5 | 4 | | |
6 | 5 | | |
| |||
61 | 60 | | |
62 | 61 | | |
63 | 62 | | |
64 | | - | |
| 63 | + | |
65 | 64 | | |
66 | 65 | | |
67 | 66 | | |
| |||
112 | 111 | | |
113 | 112 | | |
114 | 113 | | |
115 | | - | |
| 114 | + | |
116 | 115 | | |
117 | 116 | | |
118 | 117 | | |
| |||
151 | 150 | | |
152 | 151 | | |
153 | 152 | | |
154 | | - | |
| 153 | + | |
155 | 154 | | |
156 | 155 | | |
157 | 156 | | |
| |||
187 | 186 | | |
188 | 187 | | |
189 | 188 | | |
190 | | - | |
| 189 | + | |
191 | 190 | | |
192 | 191 | | |
193 | 192 | | |
194 | | - | |
| 193 | + | |
195 | 194 | | |
196 | 195 | | |
197 | | - | |
198 | | - | |
199 | | - | |
200 | | - | |
| 196 | + | |
201 | 197 | | |
202 | 198 | | |
203 | 199 | | |
Lines changed: 2 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
15 | | - | |
16 | | - | |
17 | | - | |
18 | | - | |
19 | | - | |
| 14 | + | |
| 15 | + | |
20 | 16 | | |
21 | 17 | | |
22 | 18 | | |
Lines changed: 20 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
Lines changed: 2 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
4 | 3 | | |
5 | 4 | | |
6 | 5 | | |
| |||
19 | 18 | | |
20 | 19 | | |
21 | 20 | | |
22 | | - | |
| 21 | + | |
23 | 22 | | |
24 | 23 | | |
25 | 24 | | |
| |||
44 | 43 | | |
45 | 44 | | |
46 | 45 | | |
47 | | - | |
| 46 | + | |
48 | 47 | | |
49 | 48 | | |
50 | 49 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
6 | 6 | | |
0 commit comments