From 1d362c314bce7311f43bf92b291735a69960a013 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Tue, 11 Jul 2023 18:31:58 +0800 Subject: [PATCH 1/3] Beginning of integration. Seems the data coming back from local and remote are different? --- src/views/DiscoverView.vue | 119 ++++++++++++++++++++++++++----------- 1 file changed, 84 insertions(+), 35 deletions(-) diff --git a/src/views/DiscoverView.vue b/src/views/DiscoverView.vue index d2fab61..659d415 100644 --- a/src/views/DiscoverView.vue +++ b/src/views/DiscoverView.vue @@ -30,7 +30,10 @@
  • Nearby @@ -44,7 +47,10 @@ Remote - + 0 && payload) { + const latestProject = this.projects[this.projects.length - 1]; + console.log("rowid", latestProject, payload); + console.log(Object.keys(latestProject)); + if (this.isLocalActive) { + this.searchLocal(latestProject["rowid"]); + } else if (this.isRemoteActive) { + this.search(latestProject["rowid"]); + } + } + } + /** * Handle clicking on a project entry found in the list * @param id of the project From b5e78e5dc83079bb26ced37e714dad57cc06dae4 Mon Sep 17 00:00:00 2001 From: anomalist Date: Tue, 11 Jul 2023 21:03:39 -0400 Subject: [PATCH 2/3] Update 'project.task.yaml' --- project.task.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/project.task.yaml b/project.task.yaml index 226dea2..778287a 100644 --- a/project.task.yaml +++ b/project.task.yaml @@ -5,6 +5,7 @@ tasks: - 01 add a location for a project via map pin - 04 search by a bounding box for local projects (see API by clicking on "Nearby") - 01 remove all the "form" fields (or at least investigate to see if that page refresh is desired) +- 01 Replace Gifted/Give in ContactsView with GiftedDialog - 08 Scan QR code to import into contacts. From c1f218c2f34ec47242740acc279ba40996720931 Mon Sep 17 00:00:00 2001 From: anomalist Date: Tue, 11 Jul 2023 21:10:33 -0400 Subject: [PATCH 3/3] Update 'project.task.yaml' --- project.task.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/project.task.yaml b/project.task.yaml index 778287a..92cd327 100644 --- a/project.task.yaml +++ b/project.task.yaml @@ -6,6 +6,7 @@ tasks: - 04 search by a bounding box for local projects (see API by clicking on "Nearby") - 01 remove all the "form" fields (or at least investigate to see if that page refresh is desired) - 01 Replace Gifted/Give in ContactsView with GiftedDialog +- 02 Fix images on projectview: allow choice of image from a pallete of images or a url image. - 08 Scan QR code to import into contacts.