Add view for showing contact details.

This commit is contained in:
Eli Ribble 2026-05-18 23:37:59 +00:00
parent 66c0da1bbe
commit cfe166c0f2
No known key found for this signature in database
3 changed files with 57 additions and 6 deletions

View file

@ -1,3 +1,40 @@
<template>
<p>detail</p>
<div v-if="contact">
<div class="card shadow-sm mb-3">
<div class="card-header bg-white pane-header">
Contact '{{ contact.name }}'
</div>
<div class="card-body">
<div v-if="contact.emails.length > 0">
<ul>
<li v-for="(email, index) in contact.emails">{{ email }}</li>
</ul>
</div>
<div v-else>
<p>No email addresses</p>
</div>
<div v-if="contact.phones.length > 0">
<ul>
<li v-for="(phone, index) in contact.phones">
{{ phone.e164 }} {{ phone.can_sms }}
</li>
</ul>
</div>
<div v-else>
<p>No phone numbers</p>
</div>
</div>
</div>
</div>
<div v-else>
<p>select a contact</p>
</div>
</template>
<script setup lang="ts">
import { Contact } from "@/type/api";
interface Props {
contact?: Contact;
}
const props = defineProps<Props>();
</script>