|
|
|
<template>
|
|
|
|
<QuickNav selected="Discover"></QuickNav>
|
|
|
|
|
|
|
|
<!-- CONTENT -->
|
|
|
|
<section id="Content" class="p-6 pb-24">
|
|
|
|
<!-- Heading -->
|
|
|
|
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">
|
|
|
|
Discover
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
<!-- Quick Search -->
|
|
|
|
<div id="QuickSearch" class="mb-4 flex" v-on:keyup.enter="searchAll()">
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
v-model="searchTerms"
|
|
|
|
placeholder="Search…"
|
|
|
|
class="block w-full rounded-l border border-r-0 border-slate-400 px-3 py-2"
|
|
|
|
/>
|
|
|
|
<button
|
|
|
|
@click="searchAll()"
|
|
|
|
class="px-4 rounded-r bg-slate-200 border border-l-0 border-slate-400"
|
|
|
|
>
|
|
|
|
<fa icon="magnifying-glass" class="fa-fw"></fa>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Result Tabs -->
|
|
|
|
<div class="text-center text-slate-500 border-b border-slate-300">
|
|
|
|
<ul class="flex flex-wrap justify-center gap-4 -mb-px">
|
|
|
|
<li>
|
|
|
|
<a
|
|
|
|
href="#"
|
|
|
|
@click="
|
|
|
|
projects = [];
|
|
|
|
searchLocal();
|
|
|
|
"
|
|
|
|
v-bind:class="computedLocalTabClassNames()"
|
|
|
|
>
|
|
|
|
Nearby
|
|
|
|
<span
|
|
|
|
class="font-semibold text-sm bg-slate-200 px-1.5 py-0.5 rounded-md"
|
|
|
|
>{{ localCount }}</span
|
|
|
|
>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a
|
|
|
|
href="#"
|
|
|
|
v-bind:class="computedRemoteTabClassNames()"
|
|
|
|
@click="
|
|
|
|
projects = [];
|
|
|
|
searchAll();
|
|
|
|
"
|
|
|
|
>
|
|
|
|
Remote
|
|
|
|
<span
|
|
|
|
class="font-semibold text-sm bg-slate-200 px-1.5 py-0.5 rounded-md"
|
|
|
|
>{{ remoteCount }}</span
|
|
|
|
>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Loading Animation -->
|
|
|
|
<div
|
|
|
|
class="fixed left-6 bottom-24 text-center text-4xl leading-none bg-slate-400 text-white w-14 py-2.5 rounded-full"
|
|
|
|
v-if="isLoading"
|
|
|
|
>
|
|
|
|
<fa icon="spinner" class="fa-spin-pulse"></fa>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Results List -->
|
|
|
|
<InfiniteScroll @reached-bottom="loadMoreData">
|
|
|
|
<ul>
|
|
|
|
<li
|
|
|
|
class="border-b border-slate-300"
|
|
|
|
v-for="project in projects"
|
|
|
|
:key="project.handleId"
|
|
|
|
>
|
|
|
|
<a
|
|
|
|
@click="onClickLoadProject(project.handleId)"
|
|
|
|
class="block py-4 flex gap-4"
|
|
|
|
>
|
|
|
|
<div class="w-12">
|
|
|
|
<EntityIcon
|
|
|
|
:entityId="project.handleId"
|
|
|
|
:iconSize="48"
|
|
|
|
class="block border border-slate-300 rounded-md"
|
|
|
|
></EntityIcon>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="grow">
|
|
|
|
<h2 class="text-base font-semibold">{{ project.name }}</h2>
|
|
|
|
<div class="text-sm">
|
|
|
|
<fa icon="user" class="fa-fw text-slate-400"></fa>
|
|
|
|
{{
|
|
|
|
didInfo(project.issuerDid, activeDid, allMyDids, allContacts)
|
|
|
|
}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</InfiniteScroll>
|
|
|
|
|
|
|
|
<div
|
|
|
|
v-if="isLocalActive && searchBoxes.length === 0"
|
|
|
|
style="height: 600px; width: 800px"
|
|
|
|
>
|
|
|
|
<l-map
|
|
|
|
ref="map"
|
|
|
|
v-model:zoom="localZoom"
|
|
|
|
:center="[0, 0]"
|
|
|
|
@click="
|
|
|
|
(event) => {
|
|
|
|
localLatitude = event.latlng.lat;
|
|
|
|
localLongitude = event.latlng.lng;
|
|
|
|
}
|
|
|
|
"
|
|
|
|
>
|
|
|
|
<l-tile-layer
|
|
|
|
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
|
|
|
|
layer-type="base"
|
|
|
|
name="OpenStreetMap"
|
|
|
|
/>
|
|
|
|
<l-marker
|
|
|
|
v-if="localLatitude || localLongitude"
|
|
|
|
:lat-lng="[localLatitude, localLongitude]"
|
|
|
|
/>
|
|
|
|
<l-rectangle
|
|
|
|
:bounds="[
|
|
|
|
[localLatitude - 0.1, localLongitude - 0.1],
|
|
|
|
[localLatitude + 0.1, localLongitude + 0.1],
|
|
|
|
]"
|
|
|
|
:color="ff7800"
|
|
|
|
:weight="1"
|
|
|
|
/>
|
|
|
|
</l-map>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<AlertMessage :alertTitle="alertTitle" :alertMessage="alertMessage" />
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import "leaflet/dist/leaflet.css";
|
|
|
|
import { Component, Vue } from "vue-facing-decorator";
|
|
|
|
import {
|
|
|
|
LMap,
|
|
|
|
LMarker,
|
|
|
|
LRectangle,
|
|
|
|
LTileLayer,
|
|
|
|
} from "@vue-leaflet/vue-leaflet";
|
|
|
|
|
|
|
|
import { accountsDB, db } from "@/db";
|
|
|
|
import { Contact } from "@/db/tables/contacts";
|
|
|
|
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
|
|
|
import { accessToken } from "@/libs/crypto";
|
|
|
|
import { didInfo } from "@/libs/endorserServer";
|
|
|
|
import AlertMessage from "@/components/AlertMessage";
|
|
|
|
import QuickNav from "@/components/QuickNav";
|
|
|
|
import InfiniteScroll from "@/components/InfiniteScroll";
|
|
|
|
import EntityIcon from "@/components/EntityIcon";
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
components: {
|
|
|
|
LRectangle,
|
|
|
|
AlertMessage,
|
|
|
|
QuickNav,
|
|
|
|
InfiniteScroll,
|
|
|
|
EntityIcon,
|
|
|
|
LMap,
|
|
|
|
LMarker,
|
|
|
|
LTileLayer,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
export default class DiscoverView extends Vue {
|
|
|
|
activeDid = "";
|
|
|
|
allContacts: Array<Contact> = [];
|
|
|
|
allMyDids: Array<string> = [];
|
|
|
|
apiServer = "";
|
|
|
|
searchTerms = "";
|
|
|
|
alertMessage = "";
|
|
|
|
alertTitle = "";
|
|
|
|
projects: ProjectData[] = [];
|
|
|
|
isLocalActive = true;
|
|
|
|
isRemoteActive = false;
|
|
|
|
localCount = 0;
|
|
|
|
localLatitude = 0;
|
|
|
|
localLongitude = 0;
|
|
|
|
localZoom = 2;
|
|
|
|
remoteCount = 0;
|
|
|
|
searchBoxes = [];
|
|
|
|
isLoading = false;
|
|
|
|
|
|
|
|
// make this function available to the Vue template
|
|
|
|
didInfo = didInfo;
|
|
|
|
|
|
|
|
async mounted() {
|
|
|
|
await db.open();
|
|
|
|
const settings = await db.settings.get(MASTER_SETTINGS_KEY);
|
|
|
|
this.activeDid = settings?.activeDid || "";
|
|
|
|
this.apiServer = settings?.apiServer || "";
|
|
|
|
this.searchBoxes = settings?.searchBoxes || [];
|
|
|
|
this.allContacts = await db.contacts.toArray();
|
|
|
|
|
|
|
|
await accountsDB.open();
|
|
|
|
const allAccounts = await accountsDB.accounts.toArray();
|
|
|
|
this.allMyDids = allAccounts.map((acc) => acc.did);
|
|
|
|
|
|
|
|
this.searchLocal();
|
|
|
|
}
|
|
|
|
|
|
|
|
public async buildHeaders() {
|
|
|
|
const headers = { "Content-Type": "application/json" };
|
|
|
|
|
|
|
|
if (this.activeDid) {
|
|
|
|
await accountsDB.open();
|
|
|
|
const allAccounts = await accountsDB.accounts.toArray();
|
|
|
|
const account = allAccounts.find((acc) => acc.did === this.activeDid);
|
|
|
|
const identity = JSON.parse(account?.identity || "null");
|
|
|
|
|
|
|
|
if (!identity) {
|
|
|
|
throw new Error(
|
|
|
|
"An ID is chosen but there are no keys for it so it cannot be used to talk with the service.",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
headers["Authorization"] = "Bearer " + (await accessToken(identity));
|
|
|
|
} else {
|
|
|
|
// it's OK without auth... we just won't get any identifiers
|
|
|
|
}
|
|
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async searchAll(beforeId?: string) {
|
|
|
|
let queryParams = "claimContents=" + encodeURIComponent(this.searchTerms);
|
|
|
|
|
|
|
|
if (beforeId) {
|
|
|
|
queryParams = queryParams + `&beforeId=${beforeId}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.isRemoteActive = true;
|
|
|
|
this.isLocalActive = false;
|
|
|
|
|
|
|
|
try {
|
|
|
|
this.isLoading = true;
|
|
|
|
const response = await fetch(
|
|
|
|
this.apiServer + "/api/v2/report/plans?" + queryParams,
|
|
|
|
{
|
|
|
|
method: "GET",
|
|
|
|
headers: await this.buildHeaders(),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
if (response.status !== 200) {
|
|
|
|
const details = await response.text();
|
|
|
|
this.$notify(
|
|
|
|
{
|
|
|
|
group: "alert",
|
|
|
|
type: "danger",
|
|
|
|
title: "Error",
|
|
|
|
text: `There was a problem accessing the server. Please try again later. (${details})`,
|
|
|
|
},
|
|
|
|
-1,
|
|
|
|
);
|
|
|
|
|
|
|
|
throw details;
|
|
|
|
}
|
|
|
|
|
|
|
|
const results = await response.json();
|
|
|
|
|
|
|
|
const plans: ProjectData[] = results.data;
|
|
|
|
if (plans) {
|
|
|
|
for (const plan of plans) {
|
|
|
|
const { name, description, handleId, rowid, issuerDid } = plan;
|
|
|
|
this.projects.push({ name, description, handleId, rowid, issuerDid });
|
|
|
|
}
|
|
|
|
this.remoteCount = this.projects.length;
|
|
|
|
} else {
|
|
|
|
throw JSON.stringify(results);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.log("Error with feed load:", e);
|
|
|
|
this.$notify(
|
|
|
|
{
|
|
|
|
group: "alert",
|
|
|
|
type: "danger",
|
|
|
|
title: "Error",
|
|
|
|
text: e.userMessage || "There was a problem retrieving projects.",
|
|
|
|
},
|
|
|
|
-1,
|
|
|
|
);
|
|
|
|
} finally {
|
|
|
|
this.isLoading = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public async searchLocal(beforeId?: string) {
|
|
|
|
const claimContents =
|
|
|
|
"claimContents=" + encodeURIComponent(this.searchTerms);
|
|
|
|
let queryParams = [
|
|
|
|
claimContents,
|
|
|
|
"minLocLat=40.901000",
|
|
|
|
"maxLocLat=40.904000",
|
|
|
|
"westLocLon=-111.914000",
|
|
|
|
"eastLocLon=-111.909000",
|
|
|
|
].join("&");
|
|
|
|
|
|
|
|
if (beforeId) {
|
|
|
|
queryParams = queryParams + `&beforeId=${beforeId}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
this.isLoading = true;
|
|
|
|
this.isLocalActive = true;
|
|
|
|
this.isRemoteActive = false;
|
|
|
|
const response = await fetch(
|
|
|
|
this.apiServer + "/api/v2/report/plansByLocation?" + queryParams,
|
|
|
|
{
|
|
|
|
method: "GET",
|
|
|
|
headers: await this.buildHeaders(),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
if (response.status !== 200) {
|
|
|
|
const details = await response.text();
|
|
|
|
this.$notify(
|
|
|
|
{
|
|
|
|
group: "alert",
|
|
|
|
type: "danger",
|
|
|
|
title: "Error",
|
|
|
|
text: `There was a problem accessing the server. Please try again later. (${details})`,
|
|
|
|
},
|
|
|
|
-1,
|
|
|
|
);
|
|
|
|
throw await response.text();
|
|
|
|
}
|
|
|
|
|
|
|
|
const results = await response.json();
|
|
|
|
|
|
|
|
if (results.data) {
|
|
|
|
if (beforeId) {
|
|
|
|
const plans: ProjectData[] = results.data;
|
|
|
|
for (const plan of plans) {
|
|
|
|
const { name, description, handleId = plan.handleId, rowid } = plan;
|
|
|
|
if (beforeId !== plan["rowid"]) {
|
|
|
|
this.projects.push({ name, description, handleId, rowid });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.projects = results.data;
|
|
|
|
}
|
|
|
|
this.localCount = this.projects.length;
|
|
|
|
} else {
|
|
|
|
throw JSON.stringify(results);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.log("Error with feed load:", e);
|
|
|
|
this.$notify(
|
|
|
|
{
|
|
|
|
group: "alert",
|
|
|
|
type: "danger",
|
|
|
|
title: "Error",
|
|
|
|
text: e.userMessage || "There was a problem retrieving projects.",
|
|
|
|
},
|
|
|
|
-1,
|
|
|
|
);
|
|
|
|
} finally {
|
|
|
|
this.isLoading = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Data loader used by infinite scroller
|
|
|
|
* @param payload is the flag from the InfiniteScroll indicating if it should load
|
|
|
|
**/
|
|
|
|
async loadMoreData(payload: boolean) {
|
|
|
|
if (this.projects.length > 0 && payload) {
|
|
|
|
const latestProject = this.projects[this.projects.length - 1];
|
|
|
|
if (this.isLocalActive) {
|
|
|
|
this.searchLocal(latestProject["rowid"]);
|
|
|
|
} else if (this.isRemoteActive) {
|
|
|
|
this.searchAll(latestProject["rowid"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle clicking on a project entry found in the list
|
|
|
|
* @param id of the project
|
|
|
|
**/
|
|
|
|
onClickLoadProject(id: string) {
|
|
|
|
localStorage.setItem("projectId", id);
|
|
|
|
const route = {
|
|
|
|
name: "project",
|
|
|
|
};
|
|
|
|
this.$router.push(route);
|
|
|
|
}
|
|
|
|
|
|
|
|
public computedLocalTabClassNames() {
|
|
|
|
return {
|
|
|
|
"inline-block": true,
|
|
|
|
"py-3": true,
|
|
|
|
"rounded-t-lg": true,
|
|
|
|
"border-b-2": true,
|
|
|
|
active: this.isLocalActive,
|
|
|
|
"text-blue-600": this.isLocalActive,
|
|
|
|
"border-blue-600": this.isLocalActive,
|
|
|
|
"font-semibold": this.isLocalActive,
|
|
|
|
"border-transparent": !this.isLocalActive,
|
|
|
|
"hover:text-slate-600": !this.isLocalActive,
|
|
|
|
"hover:border-slate-300": !this.isLocalActive,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public computedRemoteTabClassNames() {
|
|
|
|
return {
|
|
|
|
"inline-block": true,
|
|
|
|
"py-3": true,
|
|
|
|
"rounded-t-lg": true,
|
|
|
|
"border-b-2": true,
|
|
|
|
active: this.isRemoteActive,
|
|
|
|
"text-blue-600": this.isRemoteActive,
|
|
|
|
"border-blue-600": this.isRemoteActive,
|
|
|
|
"font-semibold": this.isRemoteActive,
|
|
|
|
"border-transparent": !this.isRemoteActive,
|
|
|
|
"hover:text-slate-600": !this.isRemoteActive,
|
|
|
|
"hover:border-slate-300": !this.isRemoteActive,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|