98 lines
3.4 KiB
Vue
98 lines
3.4 KiB
Vue
<script setup>
|
|
import { DottedMenu, EditIcon, TrashBinIcon, PlusIcon } from "@/Utilities/Icons";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger,
|
|
} from "@/Components/ui/dropdown-menu";
|
|
import { Card } from "@/Components/ui/card";
|
|
import { Button } from "../ui/button";
|
|
import { EllipsisVertical } from "lucide-vue-next";
|
|
|
|
const props = defineProps({
|
|
person: Object,
|
|
edit: { type: Boolean, default: true },
|
|
});
|
|
|
|
const emit = defineEmits(["add", "edit", "delete"]);
|
|
|
|
const getEmails = (p) => (Array.isArray(p?.emails) ? p.emails : []);
|
|
|
|
const handleAdd = () => emit("add");
|
|
const handleEdit = (id) => emit("edit", id);
|
|
const handleDelete = (id, label) => emit("delete", id, label);
|
|
</script>
|
|
|
|
<template>
|
|
<div class="grid grid-rows-* grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-3">
|
|
<template v-if="getEmails(person).length">
|
|
<Card class="p-2" v-for="(email, idx) in getEmails(person)" :key="idx">
|
|
<div class="flex items-center justify-between mb-2" v-if="edit">
|
|
<div class="flex flex-wrap gap-2">
|
|
<span
|
|
v-if="email?.label"
|
|
class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-gray-100 text-gray-800"
|
|
>
|
|
{{ email.label }}
|
|
</span>
|
|
<span
|
|
v-else
|
|
class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-indigo-100 text-indigo-800"
|
|
>
|
|
Email
|
|
</span>
|
|
</div>
|
|
<div v-if="edit">
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger as-child>
|
|
<Button variant="ghost" size="icon" title="Možnosti">
|
|
<EllipsisVertical />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuItem @click="handleEdit(email.id)">
|
|
<EditIcon size="sm" />
|
|
<span>Uredi</span>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem
|
|
@click="
|
|
handleDelete(email.id, email?.value || email?.email || email?.address)
|
|
"
|
|
class="text-red-600 focus:bg-red-50 focus:text-red-600"
|
|
>
|
|
<TrashBinIcon size="sm" class="text-red-600" />
|
|
<span>Izbriši</span>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
</div>
|
|
<p class="text-sm font-medium text-gray-900 leading-relaxed">
|
|
{{ email?.value || email?.email || email?.address || "-" }}
|
|
</p>
|
|
<p
|
|
v-if="email?.note"
|
|
class="mt-2 text-xs text-gray-600 whitespace-pre-wrap leading-relaxed"
|
|
>
|
|
{{ email.note }}
|
|
</p>
|
|
</Card>
|
|
</template>
|
|
<button
|
|
v-if="edit"
|
|
@click="handleAdd"
|
|
class="rounded-lg p-4 bg-white border-2 border-dashed border-gray-300 hover:border-gray-400 hover:bg-gray-50 transition-all flex items-center justify-center h-full"
|
|
title="Dodaj email"
|
|
>
|
|
<PlusIcon class="h-8 w-8 text-gray-400" />
|
|
</button>
|
|
<p
|
|
v-else-if="!edit && !getEmails(person).length"
|
|
class="col-span-full p-4 text-sm text-gray-500 text-center bg-gray-50 rounded-lg border border-gray-200"
|
|
>
|
|
Ni e-poštnih naslovov.
|
|
</p>
|
|
</div>
|
|
</template>
|