|
|
@ -51,12 +51,20 @@ |
|
|
|
<fa icon="user" class="fa-fw text-slate-400"></fa> |
|
|
|
{{ issuerInfoObject?.displayName }} |
|
|
|
<span v-if="!serverUtil.isEmptyOrHiddenDid(issuer)"> |
|
|
|
<a :href="`/did/${issuer}`" target="_blank" class="text-blue-500"> |
|
|
|
<a |
|
|
|
:href="`/did/${issuer}`" |
|
|
|
target="_blank" |
|
|
|
class="text-blue-500" |
|
|
|
> |
|
|
|
<fa icon="arrow-up-right-from-square" class="fa-fw" /> |
|
|
|
</a> |
|
|
|
</span> |
|
|
|
<span v-else-if="serverUtil.isHiddenDid(issuer)"> |
|
|
|
<fa icon="info-circle" class="fa-fw text-blue-500 cursor-pointer" @click="openHiddenDidDialog()" /> |
|
|
|
<fa |
|
|
|
icon="info-circle" |
|
|
|
class="fa-fw text-blue-500 cursor-pointer" |
|
|
|
@click="openHiddenDidDialog()" |
|
|
|
/> |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
<div v-if="startTime"> |
|
|
@ -70,12 +78,19 @@ |
|
|
|
target="_blank" |
|
|
|
class="underline text-blue-500" |
|
|
|
>Map View |
|
|
|
<fa icon="arrow-up-right-from-square" class="fa-fw text-blue-500" /> |
|
|
|
<fa |
|
|
|
icon="arrow-up-right-from-square" |
|
|
|
class="fa-fw text-blue-500" |
|
|
|
/> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div v-if="url"> |
|
|
|
<fa icon="globe" class="fa-fw text-slate-400"></fa> |
|
|
|
<a :href="addScheme(url)" target="_blank" class="underline text-blue-500"> |
|
|
|
<a |
|
|
|
:href="addScheme(url)" |
|
|
|
target="_blank" |
|
|
|
class="underline text-blue-500" |
|
|
|
> |
|
|
|
{{ domainForWebsite(this.url) }} |
|
|
|
<fa icon="arrow-up-right-from-square" class="fa-fw" /> |
|
|
|
</a> |
|
|
@ -537,7 +552,11 @@ export default class ProjectViewView extends Vue { |
|
|
|
imageUrl = ""; |
|
|
|
isRegistered = false; |
|
|
|
issuer = ""; |
|
|
|
issuerInfoObject: { known: boolean; displayName: string; profileImageUrl?: string } | null = null; |
|
|
|
issuerInfoObject: { |
|
|
|
known: boolean; |
|
|
|
displayName: string; |
|
|
|
profileImageUrl?: string; |
|
|
|
} | null = null; |
|
|
|
issuerVisibleToDids: Array<string> = []; |
|
|
|
latitude = 0; |
|
|
|
longitude = 0; |
|
|
@ -623,7 +642,8 @@ export default class ProjectViewView extends Vue { |
|
|
|
startDateTime.toLocaleTimeString(); |
|
|
|
} |
|
|
|
this.agentDid = resp.data.claim?.agent?.identifier; |
|
|
|
this.agentDidVisibleToDids = resp.data.claim?.agent?.identifierVisibleToDids || []; |
|
|
|
this.agentDidVisibleToDids = |
|
|
|
resp.data.claim?.agent?.identifierVisibleToDids || []; |
|
|
|
this.imageUrl = resp.data.claim?.image; |
|
|
|
this.issuer = resp.data.issuer; |
|
|
|
this.issuerInfoObject = serverUtil.didInfoObject( |
|
|
@ -1171,7 +1191,7 @@ export default class ProjectViewView extends Vue { |
|
|
|
this.issuerVisibleToDids, |
|
|
|
this.allContacts, |
|
|
|
this.activeDid, |
|
|
|
this.allMyDids |
|
|
|
this.allMyDids, |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|