From 58c091cdaa358f1b31c4904512b3cd74ccb2be6d Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Fri, 3 Nov 2023 16:48:34 -0600 Subject: [PATCH] add test view to hold testing functionality --- project.task.yaml | 8 +-- src/router/index.ts | 14 +++- src/views/HomeView.vue | 136 +------------------------------------ src/views/TestView.vue | 151 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 167 insertions(+), 142 deletions(-) create mode 100644 src/views/TestView.vue diff --git a/project.task.yaml b/project.task.yaml index 3abe6c4..b489cd3 100644 --- a/project.task.yaml +++ b/project.task.yaml @@ -3,7 +3,6 @@ tasks: - in endorser-push-server - mount folder for persistent sqlite DB outside of container - test alerts on all pages -- or refactor to new "notify" (since AlertMessage refactoring may require a change, et. ContactQRScanShowView) -- .2 bug - on contacts view, click on "to" & "from" and nothing happens - 40 notifications : - push, where we trigger a ServiceWorker(?) in the app to reach out and check for new data assignee:matthew @@ -28,16 +27,15 @@ tasks: - 24 Move to Vite assignee:matthew +- .2 fit more icons on home screen, with a "more" button to contacts page if there is more than 2 rows - .1 Remove notification alert visuals on home page - .5 Add infinite scroll to gifts on the home page - .5 bug - search for "Safari" does not find the project, but if already on the "Anywhere" tab it shows all - .2 figure out why endorser-mobile search doesn't find recently created PlanAction - .1 when creating a plan, select location and then make sure you can deselect on Android -- .2 Edit Plan does not have icons across the bottom assignee-group:ui -- .5 include the hash of the latest commit, and maybe a version +- .5 include a version, maybe the hash of the latest commit -- figuring out how it works on prod now - .5 add link to further project / people when a project pays ahead - .5 add project ID to the URL, to make a project publicly-accessible -- .5 remove edit from project page for projects owned by others - .5 fix where user 0 sees no txns from user 1 on contacts page but sees them on list page - .2 on ProjectViewView, show different messages for "to" and "from" sections if none exist assignee-group:ui - .2 fix static icon to the right on project page (Matthew - I've made "Rotary" into issuer?) assignee:jose assignee-group:ui @@ -58,6 +56,8 @@ tasks: - .2 Show a warning if both giver and recipient are the same (but still allow?) assignee-group:ui - 01 Would it look better to shrink the buttons on many pages so they don't expand to the width of the screen? assignee-group:ui - .5 Display a more appealing confirmation on the map when erasing the marker assignee-group:ui +- .5 make a VC details page +- .1 Add units or different icon to the coins (to distinguish $, BTC, etc) - contacts v+ : - 01 Import all the non-sensitive data (ie. contacts & settings). diff --git a/src/router/index.ts b/src/router/index.ts index e541d07..efb4cd0 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -58,6 +58,14 @@ const routes: Array = [ /* webpackChunkName: "contact-amounts" */ "../views/ContactAmountsView.vue" ), }, + { + path: "/contact-gives", + name: "contact-gives", + component: () => + import( + /* webpackChunkName: "contact-gives" */ "../views/ContactGiftingView.vue" + ), + }, { path: "/contact-qr", name: "contact-qr", @@ -185,11 +193,11 @@ const routes: Array = [ ), }, { - path: "/contact-gives", - name: "contact-gives", + path: "/test", + name: "test", component: () => import( - /* webpackChunkName: "contact-gives" */ "../views/ContactGiftingView.vue" + /* webpackChunkName: "test" */ "../views/TestView.vue" ), }, ]; diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index b938062..234eb10 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -7,141 +7,7 @@
-

Notiwind Alert Test Suite

- - - - - - - - - - - - - - - - -
- -
-

Quick Action

-

Record a gift from a contact:

+

Record a Gift

  • diff --git a/src/views/TestView.vue b/src/views/TestView.vue new file mode 100644 index 0000000..10a4973 --- /dev/null +++ b/src/views/TestView.vue @@ -0,0 +1,151 @@ + + +