|
@ -11,7 +11,7 @@ |
|
|
<span> |
|
|
<span> |
|
|
<a |
|
|
<a |
|
|
@click="showHintsForOnboarding()" |
|
|
@click="showHintsForOnboarding()" |
|
|
class="text-xs uppercase bg-blue-500 text-white px-1.5 py-1 rounded-md ml-1" |
|
|
class="text-xs uppercase bg-gradient-to-b from-blue-400 to-blue-700 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white px-1.5 py-1 rounded-md ml-1" |
|
|
> |
|
|
> |
|
|
Onboarding Guide |
|
|
Onboarding Guide |
|
|
</a> |
|
|
</a> |
|
@ -22,7 +22,7 @@ |
|
|
<div class="mt-4 mb-4 flex items-stretch"> |
|
|
<div class="mt-4 mb-4 flex items-stretch"> |
|
|
<router-link |
|
|
<router-link |
|
|
:to="{ name: 'contact-qr' }" |
|
|
:to="{ name: 'contact-qr' }" |
|
|
class="flex items-center bg-slate-500 text-white px-1.5 py-1 mr-1 rounded-md" |
|
|
class="flex items-center bg-gradient-to-b from-slate-400 to-slate-700 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white px-1.5 py-1 mr-1 rounded-md" |
|
|
> |
|
|
> |
|
|
<fa icon="qrcode" class="fa-fw text-2xl" /> |
|
|
<fa icon="qrcode" class="fa-fw text-2xl" /> |
|
|
</router-link> |
|
|
</router-link> |
|
@ -75,7 +75,7 @@ |
|
|
<br /> |
|
|
<br /> |
|
|
(Only most recent hours included. To see more, click |
|
|
(Only most recent hours included. To see more, click |
|
|
<span |
|
|
<span |
|
|
class="text-sm uppercase bg-slate-500 text-white px-1 py-1 rounded-md" |
|
|
class="text-sm uppercase bg-gradient-to-b from-slate-400 to-slate-700 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white px-1 py-1 rounded-md" |
|
|
> |
|
|
> |
|
|
<fa icon="file-lines" class="fa-fw" /> |
|
|
<fa icon="file-lines" class="fa-fw" /> |
|
|
</span> |
|
|
</span> |
|
@ -100,7 +100,7 @@ |
|
|
></EntityIcon> |
|
|
></EntityIcon> |
|
|
{{ contact.name || AppString.NO_CONTACT_NAME }} |
|
|
{{ contact.name || AppString.NO_CONTACT_NAME }} |
|
|
<button |
|
|
<button |
|
|
class="text-sm uppercase bg-slate-500 text-white px-1 rounded-md" |
|
|
class="text-sm uppercase bg-gradient-to-b from-slate-400 to-slate-700 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white px-1 rounded-md" |
|
|
@click=" |
|
|
@click=" |
|
|
contactEdit = contact; |
|
|
contactEdit = contact; |
|
|
contactNewName = contact.name; |
|
|
contactNewName = contact.name; |
|
@ -137,7 +137,7 @@ |
|
|
<div v-if="activeDid"> |
|
|
<div v-if="activeDid"> |
|
|
<button |
|
|
<button |
|
|
v-if="contact.seesMe" |
|
|
v-if="contact.seesMe" |
|
|
class="text-sm uppercase bg-slate-500 text-white mx-0.5 my-0.5 px-2 py-1.5 rounded-md" |
|
|
class="text-sm uppercase bg-gradient-to-b from-slate-400 to-slate-700 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white mx-0.5 my-0.5 px-2 py-1.5 rounded-md" |
|
|
@click="setVisibility(contact, false, true)" |
|
|
@click="setVisibility(contact, false, true)" |
|
|
title="They can see you" |
|
|
title="They can see you" |
|
|
> |
|
|
> |
|
@ -145,14 +145,14 @@ |
|
|
</button> |
|
|
</button> |
|
|
<button |
|
|
<button |
|
|
v-else |
|
|
v-else |
|
|
class="text-sm uppercase bg-slate-500 text-white mx-0.5 my-0.5 px-2 py-1.5 rounded-md" |
|
|
class="text-sm uppercase bg-gradient-to-b from-slate-400 to-slate-700 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white mx-0.5 my-0.5 px-2 py-1.5 rounded-md" |
|
|
@click="setVisibility(contact, true, true)" |
|
|
@click="setVisibility(contact, true, true)" |
|
|
title="They cannot see you" |
|
|
title="They cannot see you" |
|
|
> |
|
|
> |
|
|
<fa icon="eye-slash" class="fa-fw" /> |
|
|
<fa icon="eye-slash" class="fa-fw" /> |
|
|
</button> |
|
|
</button> |
|
|
<button |
|
|
<button |
|
|
class="text-sm uppercase bg-slate-500 text-white mx-0.5 my-0.5 px-2 py-1.5 rounded-md" |
|
|
class="text-sm uppercase bg-gradient-to-b from-slate-400 to-slate-700 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white mx-0.5 my-0.5 px-2 py-1.5 rounded-md" |
|
|
@click="checkVisibility(contact)" |
|
|
@click="checkVisibility(contact)" |
|
|
title="Check Visibility" |
|
|
title="Check Visibility" |
|
|
v-if="activeDid" |
|
|
v-if="activeDid" |
|
@ -161,7 +161,7 @@ |
|
|
</button> |
|
|
</button> |
|
|
<button |
|
|
<button |
|
|
@click="register(contact)" |
|
|
@click="register(contact)" |
|
|
class="text-sm uppercase bg-slate-500 text-white ml-6 px-2 py-1.5 rounded-md" |
|
|
class="text-sm uppercase bg-gradient-to-b from-slate-400 to-slate-700 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white ml-6 px-2 py-1.5 rounded-md" |
|
|
v-if="activeDid" |
|
|
v-if="activeDid" |
|
|
title="Registration" |
|
|
title="Registration" |
|
|
> |
|
|
> |
|
@ -176,7 +176,7 @@ |
|
|
|
|
|
|
|
|
<button |
|
|
<button |
|
|
@click="deleteContact(contact)" |
|
|
@click="deleteContact(contact)" |
|
|
class="text-sm uppercase bg-red-600 text-white ml-24 px-2 py-1.5 rounded-md" |
|
|
class="text-sm uppercase bg-gradient-to-b from-rose-500 to-rose-800 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white ml-24 px-2 py-1.5 rounded-md" |
|
|
title="Delete" |
|
|
title="Delete" |
|
|
> |
|
|
> |
|
|
<fa icon="trash-can" class="fa-fw" /> |
|
|
<fa icon="trash-can" class="fa-fw" /> |
|
@ -187,7 +187,7 @@ |
|
|
class="ml-auto flex gap-1.5" |
|
|
class="ml-auto flex gap-1.5" |
|
|
> |
|
|
> |
|
|
<button |
|
|
<button |
|
|
class="text-sm bg-blue-600 text-white px-2 py-1.5 rounded-l-md" |
|
|
class="text-sm bg-gradient-to-b from-blue-400 to-blue-700 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white px-2 py-1.5 rounded-l-md" |
|
|
@click="onClickAddGive(activeDid, contact.did)" |
|
|
@click="onClickAddGive(activeDid, contact.did)" |
|
|
:title="givenByMeDescriptions[contact.did] || ''" |
|
|
:title="givenByMeDescriptions[contact.did] || ''" |
|
|
> |
|
|
> |
|
@ -229,7 +229,7 @@ |
|
|
name: 'contact-amounts', |
|
|
name: 'contact-amounts', |
|
|
query: { contactDid: contact.did }, |
|
|
query: { contactDid: contact.did }, |
|
|
}" |
|
|
}" |
|
|
class="text-sm uppercase bg-slate-500 text-white px-2 py-1.5 rounded-md" |
|
|
class="text-sm uppercase bg-gradient-to-b from-slate-400 to-slate-700 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white px-2 py-1.5 rounded-md" |
|
|
title="See more given activity" |
|
|
title="See more given activity" |
|
|
> |
|
|
> |
|
|
<fa icon="file-lines" class="fa-fw" /> |
|
|
<fa icon="file-lines" class="fa-fw" /> |
|
|