-
-
Notifications
You must be signed in to change notification settings - Fork 0
Feat: Extension overhaul and new features #2
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
Merged
Merged
Changes from 14 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
7a99455
feat: add spoo.me extension with theme provider, button component, an…
Zingzy ceacba1
feat: add API integration for URL management and authentication
Zingzy 7358480
feat: implement side panel with notification system and URL shortenin…
Zingzy 6636cd1
feat: add authentication section, offline banner, and theme provider
Zingzy 6341f65
feat: implement side panel with account, analytics, dashboard, QR, se…
Zingzy e3adc4a
feat: update UrlsTab to use new parameter naming conventions
Zingzy a9c4f20
feat: refactor AnalyticsTab and UrlsTab for improved readability and …
Zingzy cea8947
fix
Zingzy 8582179
feat: add toast notification system and update settings structure
Zingzy 260ced9
feat: refactor SettingsTab and UrlsTab for improved UI components and…
Zingzy 7689947
feat: add UserMenu component for user profile and logout functionality
Zingzy dfa9f94
feat: implement device authentication flow and refactor related compo…
Zingzy 757dbb7
feat: implement access token refresh mechanism and improve error hand…
Zingzy 905deb8
refactor: streamline import statements and type definitions for clarity
Zingzy d674c3a
feat: enhance authentication flow with timeout for token refresh and …
Zingzy 2e16f3f
fix: improve ChartTooltipContent to handle null values and enhance to…
Zingzy 72dbafa
refactor: update tsconfig.json by removing baseUrl for improved path …
Zingzy 572c0eb
feat: implement device refresh endpoint and enhance token management …
Zingzy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # API base URL — override for local development | ||
| # VITE_API_BASE_URL=http://127.0.0.1:8000 | ||
| # VITE_QR_API_BASE_URL=http://127.0.0.1:8001 |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| name: CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
| branches: [main] | ||
|
|
||
| jobs: | ||
| check: | ||
| name: Lint, Typecheck & Build | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - uses: oven-sh/setup-bun@v2 | ||
| with: | ||
| bun-version: latest | ||
|
|
||
| - name: Install dependencies | ||
| run: bun install --frozen-lockfile | ||
|
|
||
| - name: Lint | ||
| run: bun run lint | ||
|
|
||
| - name: Typecheck | ||
| run: bun run typecheck | ||
|
|
||
| - name: Build (Chrome) | ||
| run: bun run build | ||
|
|
||
| - name: Build (Firefox) | ||
| run: bun run build:firefox | ||
|
|
||
| - name: Check bundle size | ||
| run: | | ||
| TOTAL=$(du -sb .output/chrome-mv3/ | cut -f1) | ||
| TOTAL_KB=$((TOTAL / 1024)) | ||
| echo "Total bundle size: ${TOTAL_KB}KB" | ||
| if [ "$TOTAL_KB" -gt 1024 ]; then | ||
| echo "::error::Bundle size ${TOTAL_KB}KB exceeds 1MB limit" | ||
| exit 1 | ||
| fi |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| # Logs | ||
| logs | ||
| *.log | ||
| npm-debug.log* | ||
| yarn-debug.log* | ||
| yarn-error.log* | ||
| pnpm-debug.log* | ||
| lerna-debug.log* | ||
|
|
||
| node_modules | ||
| .output | ||
| *.tsbuildinfo | ||
| stats.html | ||
| stats-*.json | ||
| .wxt | ||
| web-ext.config.ts | ||
|
|
||
| # Editor directories and files | ||
| .vscode/* | ||
| !.vscode/extensions.json | ||
| .idea | ||
| .DS_Store | ||
| *.suo | ||
| *.ntvs* | ||
| *.njsproj | ||
| *.sln | ||
| *.sw? | ||
|
|
||
| .env | ||
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.