diff --git a/project.task.yaml b/project.task.yaml index e2d52d7c..e793ecdb 100644 --- a/project.task.yaml +++ b/project.task.yaml @@ -6,6 +6,7 @@ tasks: - push, where we trigger a ServiceWorker(?) in the app to reach out and check for new data assignee:matthew - 01 add my bounding box(es) of interest for searches on Nearby part of Discovery page +- .5 fix the look-and-feel of the map on the Discovery page assignee-group:ui - .5 search by a bounding box(s) of interest for local projects (see API by clicking on "Nearby") - 01 Replace Gifted/Give in ContactsView with GiftedDialog assignee:matthew diff --git a/src/db/tables/settings.ts b/src/db/tables/settings.ts index 02f7ba7f..e0eee3e6 100644 --- a/src/db/tables/settings.ts +++ b/src/db/tables/settings.ts @@ -1,3 +1,10 @@ +export type BoundingBox = { + maxLat: number; + maxLong: number; + minLat: number; + minLong: number; +}; + // a singleton export type Settings = { id: number; // there's only one entry: MASTER_SETTINGS_KEY @@ -7,6 +14,7 @@ export type Settings = { firstName?: string; lastName?: string; lastViewedClaimId?: string; + searchBoxes?: Array; showContactGivesInline?: boolean; }; diff --git a/src/views/DiscoverView.vue b/src/views/DiscoverView.vue index dba8066f..cdaf2f19 100644 --- a/src/views/DiscoverView.vue +++ b/src/views/DiscoverView.vue @@ -9,7 +9,7 @@ -
+