Skip to content
Merged
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
15ec9f8
feat: new sidebar and new homepage
bassgeta Oct 17, 2025
d30bd74
feat: move all invoice pages to new routes
bassgeta Oct 17, 2025
a9ee670
feat: move ecommerce and subscriptions to new routes
bassgeta Oct 17, 2025
c0bcfe6
feat: move payouts to new nav and routes
bassgeta Oct 17, 2025
ed89978
feat: move recurring payouts to new routes, consolidate folder structure
bassgeta Oct 20, 2025
bc05dbb
refactor: move all route page components to that route's _components …
bassgeta Oct 20, 2025
4a8fc97
refactor: new route groups so we can have 2 layouts, add topbar nav
bassgeta Oct 20, 2025
2fcae90
feat: refactor the layout, make all pages have meaningful titles and …
bassgeta Oct 21, 2025
022796b
feat: code review align, create reusable auth guard
bassgeta Oct 22, 2025
113a097
feat: code review align
bassgeta Oct 22, 2025
79839fa
fix: initialize default dashboard route from the URL
bassgeta Oct 22, 2025
a86ae00
feat: payments -> payouts and fix login redirect to /home
bassgeta Oct 24, 2025
dc6225d
feat: move widget and create playground, need to resolve tanstack ver…
bassgeta Oct 23, 2025
1fc0d43
feat: upgrade trpc to v11 and tanstack query to v5 and perform necess…
bassgeta Oct 23, 2025
227df7c
feat: port the widget playground from rn-checkout
bassgeta Oct 24, 2025
252e7e3
feat: add dropdown for client id select (now that we can)
bassgeta Oct 24, 2025
4d06646
feat: make the default checkout URL be easy invoice instead of checkout
bassgeta Oct 24, 2025
844f7cb
fix: recurring payment nav routes to payouts
bassgeta Oct 24, 2025
662c21f
feat: resolve merge conflicts, move recurring payment components to s…
bassgeta Oct 27, 2025
7e56484
Merge branch 'feat/161-nav-rework' into feat/167-checkout-widget-play…
bassgeta Oct 27, 2025
38e093a
fix: header and selection bug
bassgeta Oct 27, 2025
240575c
Merge branch 'feat/161-nav-rework' into feat/167-checkout-widget-play…
bassgeta Oct 27, 2025
cc451fc
Merge branch 'main' of github.com:RequestNetwork/easy-invoice into fe…
bassgeta Oct 28, 2025
9f7fa4a
feat: realign after code review
bassgeta Oct 29, 2025
0c197a3
fix: code review align #2
bassgeta Oct 29, 2025
542f915
fix: code review align #3
bassgeta Oct 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ REDIS_URL=redis://localhost:7379
# NEXT_PUBLIC_GTM_ID=""
# NEXT_PUBLIC_CRYPTO_TO_FIAT_TRUSTED_ORIGINS=""
INVOICE_PROCESSING_TTL="60"
NEXT_PUBLIC_DEFAULT_ECOMMERCE_DOMAIN=http://localhost:3001
NEXT_PUBLIC_DEFAULT_ECOMMERCE_DOMAIN=http://localhost:3000
7 changes: 6 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@
},
"files": {
"ignoreUnknown": false,
"ignore": ["dist/**/*", "node_modules/**/*", ".next/**/*"]
"ignore": [
"dist/**/*",
"node_modules/**/*",
".next/**/*",
"src/components/payment-widget/**"
]
},
"formatter": {
"enabled": true,
Expand Down
7 changes: 5 additions & 2 deletions components.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,8 @@
"lib": "@/lib",
"hooks": "@/hooks"
},
"iconLibrary": "lucide"
}
"iconLibrary": "lucide",
"registries": {
"@requestnetwork": "https://ui.request.network/r/{name}.json"
}
}
Loading