feat(ui): complete rebuild and modernization of the admin UI#91
Open
orielhaim wants to merge 5 commits intosocketio:developfrom
Open
feat(ui): complete rebuild and modernization of the admin UI#91orielhaim wants to merge 5 commits intosocketio:developfrom
orielhaim wants to merge 5 commits intosocketio:developfrom
Conversation
|
@orielhaim is attempting to deploy a commit to the SocketIO Team on Vercel. A member of the Team first needs to authorize it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Complete modernization of the Admin UI frontend (
ui/). The existing stack has not been meaningfully updated since April 2023 and relies on dependencies that are deprecated or end-of-life. This PR rebuilds the frontend with a current, actively-maintained toolchain while preserving all existing functionality.Motivation
The current UI depends on Vue 2 (EOL since Dec 31 2023), Webpack 4 via the deprecated
@vue/cli-service, Vuetify 2, and several unmaintained packages (node-sass,babel-eslint,webpack-remove-debug). These create security exposure, prevent contributors from using modern APIs, and make the project increasingly difficult to maintain.Migration details
@vue/cli-service4.5)Removed packages (no longer needed)
@vue/cli-plugin-babel,@vue/cli-plugin-eslint,@vue/cli-plugin-router,@vue/cli-plugin-vuex,@vue/cli-service,@vue/eslint-config-prettier,babel-eslint,core-js,eslint,eslint-plugin-prettier,eslint-plugin-vue,node-sass,prettier(ui),sass-loader,vue-cli-plugin-i18n,vue-cli-plugin-vuetify,vue-template-compiler,vuetify-loader,webpack-remove-debugAdded packages
@biomejs/biome,@vitejs/plugin-vue,@tailwindcss/vite,tailwindcss,vite,vite-plugin-vuetify,pinia,@mdi/fontUI refresh
Modernized the overall dashboard appearance for a cleaner, more contemporary look and feel, leveraging Vuetify 4's updated design language alongside TailwindCSS utility classes.
How to test
cd ui pnpm install pnpm devBreaking changes
ui/project now uses pnpm. Runpnpm installinstead ofnpm install.ui/dist/will differ, but the deployment method (static file hosting) remains the same.Related issues