Matthew Raymer
3b4f4dc125
style: reorder v-model and v-bind directives
Changes:
- Move v-model directives before other attributes
- Move v-bind directives before event handlers
- Reorder attributes for better readability
- Fix template attribute ordering across components
- Improve eslint rules
- add default vite config for testing (handles nostr error too)
This follows Vue.js style guide recommendations for attribute
ordering and improves template consistency.
4 months ago
Matthew Raymer
f6802cd160
refactor: improve router type safety and usage
- Add explicit Router type imports across views
- Replace $router type casting with proper typing
- Use $router.back() instead of $router.go(-1) for consistency
- Add proper route and router typings to components
- Clean up router navigation methods
- Fix router push/back method calls
This commit improves type safety and consistency in router usage across
the application's view components.
4 months ago
Matthew Raymer
c708716675
refactor: migrate interfaces to dedicated directory
Reorganizes TypeScript interfaces into a modular structure:
- Create dedicated interfaces directory with specialized files
- Split interfaces by domain (claims, common, limits, records, user)
- Update imports in endorserServer.ts to use new interface locations
- Replace 'any' types with 'unknown' for better type safety
- Add proper type imports and exports
This improves code organization and maintainability by:
- Centralizing interface definitions
- Reducing file size of endorserServer.ts
- Making interface relationships more explicit
- Improving type safety with stricter types
4 months ago
Trent Larson
802130d3b6
fix the marker storage & clearing logic, and add the second profile map when used
5 months ago
Trent Larson
702e44872f
switch so personal contact JWT is link to this server (not endorser.ch), make empty-did URL show user's info
5 months ago
Matthew Raymer
be8ba12df6
Refatored vite.config to be a bit more streamlined before adding alternate build options. This did end up requiring me to remove @ from imports for some reason. Tests came out fine.
5 months ago
Trent Larson
f405e7d02f
make notification errors go away automatically
5 months ago
Trent Larson
086ccce0bb
add a contact-edit page and allow saving of notes
5 months ago
Trent Larson
bb3807a805
switch the encryption secret from localStorage to IndexedDB (because localStorage gets lost so often)
6 months ago
Trent Larson
5effb76cf5
ensure overlays show on top of relative+absolute positioning like green pluses
7 months ago
Trent Larson
c004706425
add pages to see all the offers to user and offers to user's projects
7 months ago
Trent Larson
67b2b7199a
fix tests (from project-page switch 4 commits ago) and fix linting
8 months ago
Trent Larson
8a61d9df45
various look-and-feel improvements
8 months ago
Trent Larson
6f880d0df1
fix bad link to project page, fix improper action on invite-add-contact cancel
8 months ago
Trent Larson
534f3d8a8b
allow bulk-imported contacts to have visibility set
9 months ago
Trent Larson
008ae9e906
fix alert when looking at one's own activity
9 months ago
Trent Larson
8111b0e5cf
modify the settings to allow account-specific settings, eg. for "isRegistered"
9 months ago
Trent Larson
6aef08d7e8
copy a list of contacts and then import
10 months ago
Trent Larson
a5248af4a3
move contact actions into the details page (prepping for checkboxes)
10 months ago
Trent Larson
61fffbb13e
add a test for empty ID, fix some linting
11 months ago
Trent Larson
ff35e53367
show full contact details, plus other tweaks
11 months ago
Trent Larson
3b772f8b4a
make the list of all claims show a link to each specific claim
11 months ago
Trent Larson
59820a2f01
add more type casts
11 months ago
Trent Larson
145a1da37e
linting cleanup
11 months ago
Trent Larson
bce003e508
change accessToken to take a DID
11 months ago
Trent Larson
c48b8246f9
add registration inside contact import, with flag to hide it
1 year ago
Trent Larson
e2df848e96
add page to view all claims about a DID (which we'll have to restrict to visible people soon)
1 year ago