feat: replace Vue 2 + Vuetify 2 with Oat UI + vanilla JS#153
Merged
Conversation
- Remove Vue 2 (EOL), Vuetify 2, Axios, ClipboardJS, MDI fonts from global head (~620 KB removed from every page) - Rewrite AppStore page: Oat + vanilla JS with fetch(), search with URL deep-linking (?q=), pagination, collapsible repo groups, clipboard toast via navigator.clipboard - Rewrite IDE page: Vuetify v-tabs replaced with Oat <ot-tabs> - Oat 0.6.1 loaded only on pages that need it (not globally) - Fix pre-existing test failures: add **.vscode/** to ignored files (was causing 500 errors during RoqAndRoll test init)
|
🙈 The PR is closed and the preview is expired. |
- Fix dark background on /appstore and /ide when OS is in dark mode
(force color-scheme: light to override Oat's light-dark())
- Fix /appstore layout: full-width separator lines, left-aligned
headers, override Oat's details/summary chevron
- Fix /download missing icons: load MDI font locally on the page
- Fix /download tab overflow: reduce padding/font-size/min-width
- Unify copy-to-clipboard: global click-to-copy on all pre blocks
with consistent toast feedback ('Copied: <content>')
- Remove highlightjs-copy plugin (replaced by global click-to-copy)
- Appstore alias rows now clickable anywhere to copy command
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
Remove EOL Vue 2 + Vuetify 2 stack and replace with Oat UI (~8 KB) + vanilla JavaScript.
Changes
templates/partials/head/custom.html(~620 KB removed from every page load)fetch()instead of Axiosnavigator.clipboardinstead of ClipboardJS?q=...)<details>/<summary>v-tabs→ Oat<ot-tabs>web component**.vscode/**tosite.default-ignored-files— fixes pre-existing test failures caused by.vscode/settings.jsonbeing picked up by Roq as content (500 errors during RoqAndRoll init)Why
Testing
mvn package— BUILD SUCCESS, all 4 tests passtarget/roq/Follow-up ideas