feat: update
This commit is contained in:
438
pages/dashboard/interest-list.vue
Normal file
438
pages/dashboard/interest-list.vue
Normal file
@@ -0,0 +1,438 @@
|
||||
<template>
|
||||
<div>
|
||||
<v-container fluid>
|
||||
<!-- Header Section -->
|
||||
<v-row class="mb-6">
|
||||
<v-col cols="12">
|
||||
<h1 class="text-h4 font-weight-bold mb-2">
|
||||
<v-icon class="mr-2" color="primary">mdi-account-group</v-icon>
|
||||
Interest List
|
||||
</h1>
|
||||
<p class="text-subtitle-1 text-grey-darken-1">
|
||||
Manage and track all potential client interests
|
||||
</p>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
||||
<!-- Search and Filters Section -->
|
||||
<v-row class="mb-4">
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="search"
|
||||
label="Search interests..."
|
||||
placeholder="Search by name, yacht, email, phone..."
|
||||
prepend-inner-icon="mdi-magnify"
|
||||
variant="outlined"
|
||||
density="comfortable"
|
||||
clearable
|
||||
hide-details
|
||||
class="search-field"
|
||||
>
|
||||
<template v-slot:append-inner>
|
||||
<v-fade-transition>
|
||||
<v-chip
|
||||
v-if="filteredInterests.length !== interests?.list?.length"
|
||||
size="small"
|
||||
color="primary"
|
||||
variant="tonal"
|
||||
>
|
||||
{{ filteredInterests.length }} results
|
||||
</v-chip>
|
||||
</v-fade-transition>
|
||||
</template>
|
||||
</v-text-field>
|
||||
</v-col>
|
||||
<v-col cols="12" md="6" class="d-flex justify-end align-center">
|
||||
<v-chip-group
|
||||
v-model="selectedSalesLevel"
|
||||
selected-class="text-primary"
|
||||
column
|
||||
>
|
||||
<v-chip
|
||||
filter
|
||||
variant="outlined"
|
||||
size="small"
|
||||
value="all"
|
||||
>
|
||||
All Levels
|
||||
</v-chip>
|
||||
<v-chip
|
||||
filter
|
||||
variant="outlined"
|
||||
size="small"
|
||||
value="qualified"
|
||||
>
|
||||
Qualified
|
||||
</v-chip>
|
||||
<v-chip
|
||||
filter
|
||||
variant="outlined"
|
||||
size="small"
|
||||
value="loi"
|
||||
>
|
||||
LOI Sent
|
||||
</v-chip>
|
||||
<v-chip
|
||||
filter
|
||||
variant="outlined"
|
||||
size="small"
|
||||
value="reserved"
|
||||
>
|
||||
Reserved
|
||||
</v-chip>
|
||||
</v-chip-group>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
||||
<!-- Data Table -->
|
||||
<v-card elevation="0" class="rounded-lg">
|
||||
<v-data-table
|
||||
:headers="headers"
|
||||
:items="filteredInterests"
|
||||
:search="search"
|
||||
:sort-by="[{ key: 'Created At', order: 'desc' }, { key: 'Full Name', order: 'asc' }]"
|
||||
must-sort
|
||||
hover
|
||||
:loading="loading"
|
||||
loading-text="Loading interests..."
|
||||
:items-per-page="50"
|
||||
:items-per-page-options="[10, 20, 50, 100]"
|
||||
class="modern-table"
|
||||
>
|
||||
<template #item="{ item }">
|
||||
<tr @click="handleRowClick(item)" class="table-row">
|
||||
<td>
|
||||
<div class="d-flex align-center">
|
||||
<v-avatar size="32" color="primary" class="mr-3">
|
||||
<span class="text-white text-caption font-weight-bold">
|
||||
{{ getInitials(item["Full Name"]) }}
|
||||
</span>
|
||||
</v-avatar>
|
||||
<div>
|
||||
<div class="font-weight-medium">{{ item["Full Name"] }}</div>
|
||||
<div class="text-caption text-grey-darken-1">{{ item["Email Address"] }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div v-if="item['Yacht Name']" class="d-flex align-center">
|
||||
<v-icon size="small" class="mr-2" color="blue-darken-2">mdi-sail-boat</v-icon>
|
||||
<span>{{ item["Yacht Name"] }}</span>
|
||||
</div>
|
||||
<span v-else class="text-grey-darken-1">—</span>
|
||||
</td>
|
||||
<td>
|
||||
<v-chip
|
||||
v-if="item['Berth Number']"
|
||||
size="small"
|
||||
color="deep-purple"
|
||||
variant="tonal"
|
||||
>
|
||||
{{ item["Berth Number"] }}
|
||||
</v-chip>
|
||||
<span v-else class="text-grey-darken-1">—</span>
|
||||
</td>
|
||||
<td>
|
||||
<InterestSalesBadge
|
||||
:salesProcessLevel="item['Sales Process Level']"
|
||||
/>
|
||||
</td>
|
||||
<td>
|
||||
<div v-if="item['Phone Number']" class="d-flex align-center">
|
||||
<v-icon size="small" class="mr-2" color="green-darken-2">mdi-phone</v-icon>
|
||||
<span>{{ item["Phone Number"] }}</span>
|
||||
</div>
|
||||
<span v-else class="text-grey-darken-1">—</span>
|
||||
</td>
|
||||
<td><LeadCategoryBadge :leadCategory="item['Lead Category']" /></td>
|
||||
<td>
|
||||
<div class="text-caption">
|
||||
<div>{{ formatDate(item["Created At"]) }}</div>
|
||||
<div class="text-grey-darken-1">{{ getRelativeTime(item["Created At"]) }}</div>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<v-tooltip v-if="item['Extra Comments']" location="bottom">
|
||||
<template #activator="{ props }">
|
||||
<v-chip
|
||||
v-bind="props"
|
||||
size="small"
|
||||
color="orange"
|
||||
variant="tonal"
|
||||
>
|
||||
<v-icon start size="small">mdi-comment-text</v-icon>
|
||||
Note
|
||||
</v-chip>
|
||||
</template>
|
||||
<span>{{ item["Extra Comments"] }}</span>
|
||||
</v-tooltip>
|
||||
<span v-else class="text-grey-darken-1">—</span>
|
||||
</td>
|
||||
</tr>
|
||||
</template>
|
||||
|
||||
|
||||
</v-data-table>
|
||||
</v-card>
|
||||
</v-container>
|
||||
|
||||
<!-- Interest Details Modal -->
|
||||
<InterestDetailsModal
|
||||
v-model="showModal"
|
||||
:selected-interest="selectedInterest"
|
||||
@save="handleSaveInterest"
|
||||
@request-more-info-to-sales="handleRequestMoreInfoToSales"
|
||||
@request-more-information="handleRequestMoreInformation"
|
||||
@eoi-send-to-sales="handleEoiSendToSales"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import LeadCategoryBadge from "~/components/LeadCategoryBadge.vue";
|
||||
import InterestSalesBadge from "~/components/InterestSalesBadge.vue";
|
||||
import InterestDetailsModal from "~/components/InterestDetailsModal.vue";
|
||||
import { useFetch } from "#app";
|
||||
import { ref, computed } from "vue";
|
||||
import type { Interest } from "@/utils/types";
|
||||
|
||||
useHead({
|
||||
title: "Interest List",
|
||||
});
|
||||
|
||||
const user = useDirectusUser();
|
||||
const router = useRouter();
|
||||
const loading = ref(true);
|
||||
const showModal = ref(false);
|
||||
const selectedInterest = ref<Interest | null>(null);
|
||||
const selectedSalesLevel = ref('all');
|
||||
|
||||
const { data: interests, refresh } = useFetch<InterestsResponse>("/api/get-interests", {
|
||||
headers: {
|
||||
"x-tag": user.value?.email ? "094ut234" : "pjnvü1230",
|
||||
},
|
||||
onResponse() {
|
||||
loading.value = false;
|
||||
},
|
||||
onResponseError() {
|
||||
loading.value = false;
|
||||
},
|
||||
});
|
||||
|
||||
const search = ref("");
|
||||
|
||||
const handleRowClick = (interest: Interest) => {
|
||||
selectedInterest.value = { ...interest };
|
||||
showModal.value = true;
|
||||
};
|
||||
|
||||
// Event handlers for the modal
|
||||
const handleSaveInterest = async (interest: Interest) => {
|
||||
// Refresh the interests data to reflect the updates
|
||||
loading.value = true;
|
||||
await refresh();
|
||||
loading.value = false;
|
||||
};
|
||||
|
||||
const handleRequestMoreInfoToSales = (interest: Interest) => {
|
||||
// The modal component already handles the API call
|
||||
// You can add additional logic here if needed
|
||||
};
|
||||
|
||||
const handleRequestMoreInformation = (interest: Interest) => {
|
||||
// The modal component already handles the API call
|
||||
// You can add additional logic here if needed
|
||||
};
|
||||
|
||||
const handleEoiSendToSales = (interest: Interest) => {
|
||||
// The modal component already handles the API call
|
||||
// You can add additional logic here if needed
|
||||
};
|
||||
|
||||
const headers = [
|
||||
{ title: "Contact", key: "Full Name", sortable: true, width: "25%" },
|
||||
{ title: "Yacht", key: "Yacht Name", sortable: true },
|
||||
{ title: "Berth", key: "Berth Number", sortable: true },
|
||||
{ title: "Status", key: "Sales Process Level", sortable: true },
|
||||
{ title: "Phone", key: "Phone Number", sortable: false },
|
||||
{ title: "Category", key: "Lead Category", sortable: true },
|
||||
{ title: "Created", key: "Created At", sortable: true },
|
||||
{ title: "Notes", key: "Extra Comments", sortable: false },
|
||||
];
|
||||
|
||||
const formatDate = (dateString: string) => {
|
||||
if (!dateString) return "-";
|
||||
|
||||
try {
|
||||
// Handle DD-MM-YYYY format
|
||||
const parts = dateString.split("-");
|
||||
if (parts.length === 3) {
|
||||
const day = parseInt(parts[0], 10);
|
||||
const month = parseInt(parts[1], 10) - 1; // Month is 0-indexed in JavaScript
|
||||
const year = parseInt(parts[2], 10);
|
||||
|
||||
const date = new Date(year, month, day);
|
||||
|
||||
// Check if the date is valid
|
||||
if (isNaN(date.getTime())) {
|
||||
console.warn("Invalid date format:", dateString);
|
||||
return "-";
|
||||
}
|
||||
|
||||
return date.toLocaleDateString("en-US", {
|
||||
year: "numeric",
|
||||
month: "short",
|
||||
day: "numeric",
|
||||
});
|
||||
} else {
|
||||
// Fallback to standard Date parsing
|
||||
const date = new Date(dateString);
|
||||
|
||||
if (isNaN(date.getTime())) {
|
||||
console.warn("Invalid date format:", dateString);
|
||||
return "-";
|
||||
}
|
||||
|
||||
return date.toLocaleDateString("en-US", {
|
||||
year: "numeric",
|
||||
month: "short",
|
||||
day: "numeric",
|
||||
});
|
||||
}
|
||||
} catch (error) {
|
||||
console.error("Error formatting date:", dateString, error);
|
||||
return "-";
|
||||
}
|
||||
};
|
||||
|
||||
const filteredInterests = computed(() => {
|
||||
if (!interests.value?.list) return [];
|
||||
|
||||
let filtered = interests.value.list;
|
||||
|
||||
// Apply sales level filter
|
||||
if (selectedSalesLevel.value !== 'all') {
|
||||
filtered = filtered.filter((item) => {
|
||||
const level = item['Sales Process Level']?.toLowerCase() || '';
|
||||
switch (selectedSalesLevel.value) {
|
||||
case 'qualified':
|
||||
return level.includes('qualified');
|
||||
case 'loi':
|
||||
return level.includes('loi');
|
||||
case 'reserved':
|
||||
return level.includes('reservation') || level.includes('reserved');
|
||||
default:
|
||||
return true;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Apply search filter
|
||||
if (search.value) {
|
||||
const searchLower = search.value.toLowerCase();
|
||||
filtered = filtered.filter((item) => {
|
||||
return Object.values(item).some((value) =>
|
||||
String(value).toLowerCase().includes(searchLower)
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
return filtered;
|
||||
});
|
||||
|
||||
// Helper function to get initials
|
||||
const getInitials = (name: string) => {
|
||||
if (!name) return '?';
|
||||
const parts = name.split(' ');
|
||||
if (parts.length >= 2) {
|
||||
return (parts[0][0] + parts[parts.length - 1][0]).toUpperCase();
|
||||
}
|
||||
return name.substring(0, 2).toUpperCase();
|
||||
};
|
||||
|
||||
// Helper function to get relative time
|
||||
const getRelativeTime = (dateString: string) => {
|
||||
if (!dateString) return '';
|
||||
|
||||
try {
|
||||
let date: Date;
|
||||
|
||||
// Handle DD-MM-YYYY format
|
||||
if (dateString.includes('-')) {
|
||||
const parts = dateString.split('-');
|
||||
if (parts.length === 3) {
|
||||
const [day, month, year] = parts;
|
||||
date = new Date(parseInt(year), parseInt(month) - 1, parseInt(day));
|
||||
} else {
|
||||
date = new Date(dateString);
|
||||
}
|
||||
} else {
|
||||
date = new Date(dateString);
|
||||
}
|
||||
|
||||
if (isNaN(date.getTime())) return '';
|
||||
|
||||
const now = new Date();
|
||||
const diffTime = Math.abs(now.getTime() - date.getTime());
|
||||
const diffDays = Math.floor(diffTime / (1000 * 60 * 60 * 24));
|
||||
|
||||
if (diffDays === 0) return 'Today';
|
||||
if (diffDays === 1) return 'Yesterday';
|
||||
if (diffDays < 7) return `${diffDays} days ago`;
|
||||
if (diffDays < 30) return `${Math.floor(diffDays / 7)} weeks ago`;
|
||||
if (diffDays < 365) return `${Math.floor(diffDays / 30)} months ago`;
|
||||
return `${Math.floor(diffDays / 365)} years ago`;
|
||||
} catch (error) {
|
||||
return '';
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.search-field :deep(.v-field) {
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.search-field:focus-within :deep(.v-field) {
|
||||
box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
|
||||
}
|
||||
|
||||
.modern-table :deep(.v-table__wrapper) {
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.modern-table :deep(.v-data-table-header__content) {
|
||||
font-weight: 600;
|
||||
color: #424242;
|
||||
font-size: 0.875rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.025em;
|
||||
}
|
||||
|
||||
.modern-table :deep(tbody tr) {
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.modern-table :deep(tbody tr:hover) {
|
||||
background-color: #f8f9fa;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.table-row {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.table-row td {
|
||||
padding: 16px !important;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
.table-row:last-child td {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.v-avatar {
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
</style>
|
||||
@@ -1,296 +0,0 @@
|
||||
<template>
|
||||
<div>
|
||||
<v-container>
|
||||
<v-btn @click="router.back()" variant="text">
|
||||
<v-icon icon="mdi-arrow-left"></v-icon>
|
||||
Back to Contacts
|
||||
</v-btn>
|
||||
|
||||
<v-card flat>
|
||||
<v-card-text>
|
||||
<v-stepper
|
||||
v-model="currentStep"
|
||||
class="mb-6"
|
||||
variant="flat"
|
||||
alt-labels
|
||||
>
|
||||
<v-stepper-header>
|
||||
<template
|
||||
v-for="(level, index) in InterestSalesProcessLevelFlow"
|
||||
:key="index"
|
||||
>
|
||||
<v-stepper-item
|
||||
:step="index"
|
||||
:complete="currentStep + 1 > index"
|
||||
:title="level"
|
||||
/>
|
||||
<v-divider
|
||||
v-if="index < InterestSalesProcessLevelFlow.length - 1"
|
||||
></v-divider>
|
||||
</template>
|
||||
</v-stepper-header>
|
||||
</v-stepper>
|
||||
|
||||
<v-form v-if="interest" @submit.prevent="saveInterest">
|
||||
<v-row>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest['Full Name']"
|
||||
label="Full Name"
|
||||
variant="outlined"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest['Yacht Name']"
|
||||
label="Yacht Name"
|
||||
variant="outlined"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest.Length"
|
||||
label="Length"
|
||||
variant="outlined"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest.Address"
|
||||
label="Address"
|
||||
variant="outlined"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest['Email Address']"
|
||||
label="Email Address"
|
||||
variant="outlined"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
<v-col cols="12" md="6">
|
||||
<v-select
|
||||
v-model="interest['Sales Process Level']"
|
||||
label="Sales Process Level"
|
||||
variant="outlined"
|
||||
:items="InterestSalesProcessLevelFlow"
|
||||
></v-select>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest['Phone Number']"
|
||||
label="Phone Number"
|
||||
variant="outlined"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest['Extra Comments']"
|
||||
label="Extra Comments"
|
||||
variant="outlined"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest['Berth Size Desired']"
|
||||
label="Berth Size Desired"
|
||||
variant="outlined"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest['Berth Recommendations']"
|
||||
label="Berth Recommendations"
|
||||
variant="outlined"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest['Date Added']"
|
||||
label="Date Added"
|
||||
variant="outlined"
|
||||
readonly
|
||||
disabled
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest.Width"
|
||||
label="Width"
|
||||
variant="outlined"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest.Depth"
|
||||
label="Depth"
|
||||
variant="outlined"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest['Created At']"
|
||||
label="Created At"
|
||||
variant="outlined"
|
||||
readonly
|
||||
disabled
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest.Source"
|
||||
label="Source"
|
||||
variant="outlined"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest['Place of Residence']"
|
||||
label="Place of Residence"
|
||||
variant="outlined"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="12" md="6">
|
||||
<v-select
|
||||
v-model="interest['Contact Method Preferred']"
|
||||
label="Contact Method Preferred"
|
||||
variant="outlined"
|
||||
:items="ContactMethodPreferredFlow"
|
||||
></v-select>
|
||||
</v-col>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest['Request Form Sent']"
|
||||
label="Request Form Sent"
|
||||
variant="outlined"
|
||||
readonly
|
||||
disabled
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest['Berth Number']"
|
||||
label="Berth Number"
|
||||
variant="outlined"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest['EOI Time Sent']"
|
||||
label="EOI Time Sent"
|
||||
variant="outlined"
|
||||
readonly
|
||||
disabled
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="12" md="6">
|
||||
<v-select
|
||||
v-model="interest['Lead Category']"
|
||||
label="Lead Category"
|
||||
variant="outlined"
|
||||
:items="InterestLeadCategoryFlow"
|
||||
></v-select>
|
||||
</v-col>
|
||||
<v-col cols="12" md="6">
|
||||
<v-text-field
|
||||
v-model="interest['Time LOI Sent']"
|
||||
label="Time LOI Sent"
|
||||
variant="outlined"
|
||||
readonly
|
||||
disabled
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="12" class="d-flex">
|
||||
<v-btn @click="requestMoreInfoToSales" class="mr-2"
|
||||
>Request More Info - To Sales</v-btn
|
||||
>
|
||||
<v-btn @click="requestMoreInformation" class="mr-2"
|
||||
>Request More Information</v-btn
|
||||
>
|
||||
<v-btn @click="eoiSendToSales">EOI Send to Sales</v-btn>
|
||||
<v-spacer />
|
||||
<v-btn type="submit" color="primary" class="mr-2">Save</v-btn>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-form>
|
||||
</v-card-text>
|
||||
</v-card>
|
||||
</v-container>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { useRoute, useRouter } from "#app";
|
||||
import { ref, computed, onMounted } from "vue";
|
||||
import {
|
||||
InterestSalesProcessLevelFlow,
|
||||
InterestLeadCategoryFlow,
|
||||
ContactMethodPreferredFlow,
|
||||
} from "@/utils/types";
|
||||
|
||||
const router = useRouter();
|
||||
const route = useRoute();
|
||||
|
||||
const { data: interest } = useFetch<Interest>("/api/get-interest-by-id", {
|
||||
params: {
|
||||
id: route.params.id,
|
||||
},
|
||||
});
|
||||
|
||||
const currentStep = computed(() => {
|
||||
return InterestSalesProcessLevelFlow.indexOf(
|
||||
interest.value?.["Sales Process Level"] || ""
|
||||
);
|
||||
});
|
||||
|
||||
const fetchInterest = async () => {
|
||||
try {
|
||||
} catch (error) {
|
||||
console.error("Failed to fetch interest:", error);
|
||||
}
|
||||
};
|
||||
|
||||
const saveInterest = async () => {
|
||||
if (interest.value) {
|
||||
try {
|
||||
alert("Interest saved successfully!");
|
||||
} catch (error) {
|
||||
console.error("Failed to save interest:", error);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
const requestMoreInfoToSales = () => {
|
||||
alert("Request More Info - To Sales");
|
||||
};
|
||||
|
||||
const requestMoreInformation = () => {
|
||||
alert("Request More Information");
|
||||
};
|
||||
|
||||
const eoiSendToSales = () => {
|
||||
alert("EOI Send to Sales");
|
||||
};
|
||||
</script>
|
||||
@@ -1,124 +0,0 @@
|
||||
<template>
|
||||
<div>
|
||||
<v-container>
|
||||
<v-text-field
|
||||
v-model="search"
|
||||
label="Search contacts"
|
||||
prepend-inner-icon="mdi-magnify"
|
||||
variant="outlined"
|
||||
class="mb-4"
|
||||
clearable
|
||||
></v-text-field>
|
||||
|
||||
<v-data-table
|
||||
:headers="headers"
|
||||
:items="filteredInterests"
|
||||
:search="search"
|
||||
:sort-by="[{ key: 'Full Name', order: 'asc' }]"
|
||||
must-sort
|
||||
hover
|
||||
:loading="loading"
|
||||
loading-text="Loading... Please wait"
|
||||
:items-per-page="50"
|
||||
:items-per-page-options="[10, 20, 50, 100]"
|
||||
>
|
||||
<template #item="{ item }">
|
||||
<tr @click="handleRowClick(item)" class="cursor-pointer">
|
||||
<td>{{ item["Full Name"] }}</td>
|
||||
<td>{{ item["Yacht Name"] }}</td>
|
||||
<td>{{ item.Length }}</td>
|
||||
<td>{{ item.Width }}</td>
|
||||
<td>{{ item.Depth }}</td>
|
||||
<td>{{ item["Berth Number"] }}</td>
|
||||
<td>
|
||||
<InterestSalesBadge
|
||||
:salesProcessLevel="item['Sales Process Level']"
|
||||
/>
|
||||
</td>
|
||||
<td>{{ item["Phone Number"] }}</td>
|
||||
<td>{{ item["Email Address"] }}</td>
|
||||
<td><LeadCategoryBadge :leadCategory="item['Lead Category']" /></td>
|
||||
<td>
|
||||
<v-tooltip bottom>
|
||||
<template #activator="{ props }">
|
||||
<v-icon v-if="item['Extra Comments']" v-bind="props"
|
||||
>mdi-comment</v-icon
|
||||
>
|
||||
</template>
|
||||
<span>{{ item["Extra Comments"] }}</span>
|
||||
</v-tooltip>
|
||||
</td>
|
||||
</tr>
|
||||
</template>
|
||||
</v-data-table>
|
||||
</v-container>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import LeadCategoryBadge from "~/components/LeadCategoryBadge.vue";
|
||||
import InterestSalesBadge from "~/components/InterestSalesBadge.vue";
|
||||
import { useFetch } from "#app";
|
||||
import { ref, computed } from "vue";
|
||||
|
||||
useHead({
|
||||
title: "Interest List",
|
||||
});
|
||||
|
||||
const user = useDirectusUser();
|
||||
const router = useRouter();
|
||||
const loading = ref(true);
|
||||
|
||||
const { data: interests } = useFetch<InterestsResponse>("/api/get-interests", {
|
||||
headers: {
|
||||
"x-tag": user.value?.email ? "094ut234" : "pjnvü1230",
|
||||
},
|
||||
onResponse() {
|
||||
loading.value = false;
|
||||
},
|
||||
onResponseError() {
|
||||
loading.value = false;
|
||||
},
|
||||
});
|
||||
|
||||
const search = ref("");
|
||||
|
||||
const handleRowClick = (interest: Interest) => {
|
||||
router.push(`/dashboard/interest-list/${interest.Id}`);
|
||||
};
|
||||
|
||||
const headers = [
|
||||
{ title: "Full Name", key: "Full Name", sortable: true },
|
||||
{ title: "Yacht Name", key: "Yacht Name", sortable: true },
|
||||
{ title: "Length", key: "Length", sortable: true },
|
||||
{ title: "Width", key: "Width", sortable: true },
|
||||
{ title: "Depth", key: "Depth", sortable: true },
|
||||
{ title: "Berth Number", key: "Berth Number", sortable: true },
|
||||
{ title: "Sales Process Level", key: "Sales Process Level", sortable: true },
|
||||
{ title: "Phone", key: "Phone Number", sortable: false },
|
||||
{ title: "Email", key: "Email Address", sortable: false },
|
||||
{ title: "Lead Category", key: "Lead Category", sortable: true },
|
||||
{ title: "Comments", key: "Extra Comments", sortable: false }, // New column for comments
|
||||
];
|
||||
|
||||
const filteredInterests = computed(() => {
|
||||
if (!interests.value?.list) return [];
|
||||
|
||||
return interests.value.list.filter((item) => {
|
||||
const searchLower = search.value?.toLowerCase() || "";
|
||||
return Object.values(item).some((value) =>
|
||||
String(value).toLowerCase().includes(searchLower)
|
||||
);
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
tr:hover {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
.cursor-pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
@@ -1,85 +1,181 @@
|
||||
<template>
|
||||
<v-card>
|
||||
<v-card-text>
|
||||
<v-row class="overflow-x-auto flex-nowrap">
|
||||
<v-container fluid class="pa-4">
|
||||
<!-- Header -->
|
||||
<v-row class="mb-4">
|
||||
<v-col cols="12">
|
||||
<h1 class="text-h4 font-weight-bold mb-2">
|
||||
<v-icon class="mr-2" color="primary">mdi-view-column</v-icon>
|
||||
Interest Status Board
|
||||
</h1>
|
||||
<p class="text-subtitle-1 text-grey-darken-1">
|
||||
Track interests through the sales pipeline
|
||||
</p>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
||||
<!-- Kanban Board -->
|
||||
<div class="kanban-container">
|
||||
<v-row class="flex-nowrap overflow-x-auto" style="min-height: calc(100vh - 200px);">
|
||||
<v-col
|
||||
v-for="level in InterestSalesProcessLevelFlow"
|
||||
v-for="(level, index) in InterestSalesProcessLevelFlow"
|
||||
:key="level"
|
||||
class="v-col-auto"
|
||||
cols="auto"
|
||||
class="kanban-column"
|
||||
v-show="groupedInterests[level].length > 0"
|
||||
>
|
||||
<v-card v-if="groupedInterests[level].length" color="grey-lighten-5">
|
||||
<v-card-title>
|
||||
<InterestSalesBadge
|
||||
:sales-process-level="(level as InterestSalesProcessLevel)"
|
||||
/>
|
||||
</v-card-title>
|
||||
<v-card-text class="overflow-y-auto" style="max-height: 90vh">
|
||||
<v-card
|
||||
class="h-100 d-flex flex-column column-card"
|
||||
:style="{ minWidth: '340px', maxWidth: '340px' }"
|
||||
elevation="0"
|
||||
>
|
||||
<!-- Column Header -->
|
||||
<div class="column-header pa-3">
|
||||
<v-chip
|
||||
:color="getColumnColor(level)"
|
||||
class="text-white font-weight-medium"
|
||||
label
|
||||
>
|
||||
<v-icon start>{{ getColumnIcon(level) }}</v-icon>
|
||||
{{ level }}
|
||||
<v-chip
|
||||
size="small"
|
||||
variant="flat"
|
||||
color="white"
|
||||
class="ml-2"
|
||||
style="background: rgba(255,255,255,0.3) !important;"
|
||||
>
|
||||
{{ groupedInterests[level].length }}
|
||||
</v-chip>
|
||||
</v-chip>
|
||||
</div>
|
||||
|
||||
<!-- Column Content -->
|
||||
<v-card-text
|
||||
class="flex-grow-1 overflow-y-auto pa-3 column-content"
|
||||
@dragover="handleDragOver($event)"
|
||||
@drop="handleDrop($event, level)"
|
||||
@dragleave="handleDragLeave($event)"
|
||||
>
|
||||
<v-card
|
||||
v-for="interest in groupedInterests[level]"
|
||||
:key="interest.Id"
|
||||
class="mx-3 my-6"
|
||||
variant="flat"
|
||||
class="mb-3 interest-card"
|
||||
:class="{ 'dragging': draggedInterest?.Id === interest.Id }"
|
||||
elevation="1"
|
||||
draggable="true"
|
||||
@dragstart="handleDragStart($event, interest)"
|
||||
@dragend="handleDragEnd($event)"
|
||||
@click="handleInterestClick(interest.Id)"
|
||||
style="cursor: pointer"
|
||||
>
|
||||
<v-card-title>{{ interest["Full Name"] }}</v-card-title>
|
||||
<v-card-text>
|
||||
<v-list bg-color="transparent">
|
||||
<v-list-item>
|
||||
<v-list-item-title>Yacht Name</v-list-item-title>
|
||||
<v-list-item-subtitle>{{
|
||||
interest["Yacht Name"] || "-"
|
||||
}}</v-list-item-subtitle>
|
||||
</v-list-item>
|
||||
<v-list-item>
|
||||
<v-list-item-title>Email Address</v-list-item-title>
|
||||
<v-list-item-subtitle>{{
|
||||
interest["Email Address"] || "-"
|
||||
}}</v-list-item-subtitle>
|
||||
</v-list-item>
|
||||
<v-list-item>
|
||||
<v-list-item-title>Berth Number</v-list-item-title>
|
||||
<v-list-item-subtitle>{{
|
||||
interest["Berth Number"] || "-"
|
||||
}}</v-list-item-subtitle>
|
||||
</v-list-item>
|
||||
<v-list-item>
|
||||
<v-list-item-title>Phone Number</v-list-item-title>
|
||||
<v-list-item-subtitle>{{
|
||||
interest["Phone Number"] || "-"
|
||||
}}</v-list-item-subtitle>
|
||||
</v-list-item>
|
||||
<v-list-item>
|
||||
<v-list-item-title>Berth Size Desired</v-list-item-title>
|
||||
<v-list-item-subtitle>{{
|
||||
interest["Berth Size Desired"] || "-"
|
||||
}}</v-list-item-subtitle>
|
||||
</v-list-item>
|
||||
</v-list>
|
||||
<v-card-text class="pa-3">
|
||||
<!-- Name and Yacht -->
|
||||
<div class="d-flex align-center mb-2">
|
||||
<v-avatar size="32" :color="getColumnColor(level)" class="mr-2">
|
||||
<span class="text-white text-caption font-weight-bold">
|
||||
{{ getInitials(interest["Full Name"]) }}
|
||||
</span>
|
||||
</v-avatar>
|
||||
<div class="flex-grow-1">
|
||||
<div class="font-weight-medium">{{ interest["Full Name"] }}</div>
|
||||
<div class="text-caption text-grey-darken-1">{{ interest["Yacht Name"] || "No yacht specified" }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Contact Info -->
|
||||
<div class="mb-2">
|
||||
<div class="d-flex align-center mb-1" v-if="interest['Email Address']">
|
||||
<v-icon size="small" class="mr-2" color="grey-darken-2">mdi-email</v-icon>
|
||||
<span class="text-caption text-truncate">{{ interest["Email Address"] }}</span>
|
||||
</div>
|
||||
<div class="d-flex align-center mb-1" v-if="interest['Phone Number']">
|
||||
<v-icon size="small" class="mr-2" color="grey-darken-2">mdi-phone</v-icon>
|
||||
<span class="text-caption">{{ interest["Phone Number"] }}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Berth Info -->
|
||||
<div class="d-flex flex-wrap ga-1">
|
||||
<v-chip
|
||||
v-if="interest['Berth Number']"
|
||||
size="x-small"
|
||||
color="deep-purple"
|
||||
variant="tonal"
|
||||
>
|
||||
<v-icon start size="x-small">mdi-anchor</v-icon>
|
||||
{{ interest["Berth Number"] }}
|
||||
</v-chip>
|
||||
<v-chip
|
||||
v-if="interest['Berth Size Desired']"
|
||||
size="x-small"
|
||||
color="blue"
|
||||
variant="tonal"
|
||||
>
|
||||
<v-icon start size="x-small">mdi-ruler</v-icon>
|
||||
{{ interest["Berth Size Desired"] }}
|
||||
</v-chip>
|
||||
</div>
|
||||
|
||||
<!-- Extra Comments -->
|
||||
<div v-if="interest['Extra Comments']" class="mt-2">
|
||||
<v-chip size="x-small" color="orange" variant="tonal">
|
||||
<v-icon start size="x-small">mdi-comment</v-icon>
|
||||
Has notes
|
||||
</v-chip>
|
||||
</div>
|
||||
</v-card-text>
|
||||
</v-card>
|
||||
</v-card-text>
|
||||
</v-card>
|
||||
</v-col>
|
||||
|
||||
<!-- Empty state message if no columns are visible -->
|
||||
<v-col
|
||||
v-if="visibleColumnsCount === 0"
|
||||
cols="12"
|
||||
class="text-center py-8"
|
||||
>
|
||||
<v-icon size="64" color="grey-lighten-1">mdi-view-column-outline</v-icon>
|
||||
<h3 class="text-h5 mt-4 mb-2">No interests to display</h3>
|
||||
<p class="text-grey-darken-1">Interests will appear here as they progress through the sales pipeline</p>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-card-text>
|
||||
</v-card>
|
||||
</div>
|
||||
</v-container>
|
||||
|
||||
<!-- Interest Details Modal -->
|
||||
<InterestDetailsModal
|
||||
v-model="showModal"
|
||||
:selected-interest="selectedInterest"
|
||||
@save="handleSaveInterest"
|
||||
@request-more-info-to-sales="handleRequestMoreInfoToSales"
|
||||
@request-more-information="handleRequestMoreInformation"
|
||||
@eoi-send-to-sales="handleEoiSendToSales"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import InterestDetailsModal from "~/components/InterestDetailsModal.vue";
|
||||
import InterestSalesBadge from "~/components/InterestSalesBadge.vue";
|
||||
import { useFetch } from "#app";
|
||||
import { ref, computed } from "vue";
|
||||
import { useRouter } from "#app";
|
||||
|
||||
const router = useRouter();
|
||||
import type { Interest, InterestSalesProcessLevel, InterestsResponse } from "@/utils/types";
|
||||
import { InterestSalesProcessLevelFlow } from "@/utils/types";
|
||||
|
||||
useHead({
|
||||
title: "Interest Status",
|
||||
});
|
||||
|
||||
const user = useDirectusUser();
|
||||
const loading = ref(true);
|
||||
const showModal = ref(false);
|
||||
const selectedInterest = ref<Interest | null>(null);
|
||||
const draggedInterest = ref<Interest | null>(null);
|
||||
const draggedFromLevel = ref<string | null>(null);
|
||||
|
||||
const { data: interests } = useFetch<InterestsResponse>("/api/get-interests", {
|
||||
headers: {
|
||||
"x-tag": user.value?.email ? "094ut234" : "pjnvü1230",
|
||||
},
|
||||
onResponse() {
|
||||
loading.value = false;
|
||||
},
|
||||
@@ -102,41 +198,295 @@ const groupedInterests = computed(() => {
|
||||
}
|
||||
});
|
||||
|
||||
// Sort each group by "Full Name"
|
||||
// Sort each group by "Created At" (newest first)
|
||||
for (const level in groups) {
|
||||
groups[level].sort((a, b) => {
|
||||
if (a["Full Name"] < b["Full Name"]) return -1;
|
||||
if (a["Full Name"] > b["Full Name"]) return 1;
|
||||
return 0;
|
||||
// Convert date strings to comparable format
|
||||
const dateA = parseDate(a["Created At"]);
|
||||
const dateB = parseDate(b["Created At"]);
|
||||
return dateB.getTime() - dateA.getTime();
|
||||
});
|
||||
}
|
||||
|
||||
return groups;
|
||||
});
|
||||
|
||||
const handleInterestClick = (id: number) => {
|
||||
router.push(`/dashboard/interest-list/${id}`);
|
||||
// Count visible columns
|
||||
const visibleColumnsCount = computed(() => {
|
||||
return InterestSalesProcessLevelFlow.filter(level => groupedInterests.value[level].length > 0).length;
|
||||
});
|
||||
|
||||
// Helper function to parse date
|
||||
const parseDate = (dateString: string) => {
|
||||
if (!dateString) return new Date(0);
|
||||
|
||||
// Handle DD-MM-YYYY format
|
||||
if (dateString.includes('-')) {
|
||||
const parts = dateString.split('-');
|
||||
if (parts.length === 3) {
|
||||
const [day, month, year] = parts;
|
||||
return new Date(parseInt(year), parseInt(month) - 1, parseInt(day));
|
||||
}
|
||||
}
|
||||
|
||||
return new Date(dateString);
|
||||
};
|
||||
|
||||
// Helper function to get initials
|
||||
const getInitials = (name: string) => {
|
||||
if (!name) return '?';
|
||||
const parts = name.split(' ');
|
||||
if (parts.length >= 2) {
|
||||
return (parts[0][0] + parts[parts.length - 1][0]).toUpperCase();
|
||||
}
|
||||
return name.substring(0, 2).toUpperCase();
|
||||
};
|
||||
|
||||
// Get column color based on sales process level
|
||||
const getColumnColor = (level: string) => {
|
||||
const colorMap: Record<string, string> = {
|
||||
'General Qualified Interest': 'grey-darken-1',
|
||||
'Specific Qualified Interest': 'grey-darken-2',
|
||||
'LOI and NDA Sent': 'light-blue',
|
||||
'Signed LOI and NDA': 'blue',
|
||||
'Made Reservation': 'green',
|
||||
'Contract Negotiation': 'orange',
|
||||
'Contract Negotiations Finalized': 'deep-orange',
|
||||
'Contract Signed': 'green-darken-2'
|
||||
};
|
||||
return colorMap[level] || 'grey';
|
||||
};
|
||||
|
||||
// Get column icon based on sales process level
|
||||
const getColumnIcon = (level: string) => {
|
||||
const iconMap: Record<string, string> = {
|
||||
'General Qualified Interest': 'mdi-account-search',
|
||||
'Specific Qualified Interest': 'mdi-account-check',
|
||||
'LOI and NDA Sent': 'mdi-email-send',
|
||||
'Signed LOI and NDA': 'mdi-file-sign',
|
||||
'Made Reservation': 'mdi-calendar-check',
|
||||
'Contract Negotiation': 'mdi-handshake',
|
||||
'Contract Negotiations Finalized': 'mdi-file-document-check',
|
||||
'Contract Signed': 'mdi-check-circle'
|
||||
};
|
||||
return iconMap[level] || 'mdi-circle';
|
||||
};
|
||||
|
||||
const handleInterestClick = (interestId: number) => {
|
||||
// Find the interest by ID
|
||||
const interest = interests.value?.list.find(i => i.Id === interestId);
|
||||
if (interest) {
|
||||
selectedInterest.value = { ...interest };
|
||||
showModal.value = true;
|
||||
}
|
||||
};
|
||||
|
||||
// Event handlers for the modal
|
||||
const handleSaveInterest = (interest: Interest) => {
|
||||
// Update the interest in the local list if needed
|
||||
// The modal component already handles the API call and shows success/error messages
|
||||
// You can add additional logic here if needed
|
||||
};
|
||||
|
||||
const handleRequestMoreInfoToSales = (interest: Interest) => {
|
||||
// The modal component already handles the API call
|
||||
// You can add additional logic here if needed
|
||||
};
|
||||
|
||||
const handleRequestMoreInformation = (interest: Interest) => {
|
||||
// The modal component already handles the API call
|
||||
// You can add additional logic here if needed
|
||||
};
|
||||
|
||||
const handleEoiSendToSales = (interest: Interest) => {
|
||||
// The modal component already handles the API call
|
||||
// You can add additional logic here if needed
|
||||
};
|
||||
|
||||
// Drag and Drop handlers
|
||||
const handleDragStart = (event: DragEvent, interest: Interest) => {
|
||||
draggedInterest.value = interest;
|
||||
draggedFromLevel.value = interest["Sales Process Level"];
|
||||
|
||||
// Add visual feedback
|
||||
if (event.target instanceof HTMLElement) {
|
||||
event.target.style.opacity = '0.5';
|
||||
}
|
||||
|
||||
// Store interest data in dataTransfer
|
||||
event.dataTransfer!.effectAllowed = 'move';
|
||||
event.dataTransfer!.setData('text/plain', JSON.stringify(interest));
|
||||
};
|
||||
|
||||
const handleDragEnd = (event: DragEvent) => {
|
||||
// Remove visual feedback
|
||||
if (event.target instanceof HTMLElement) {
|
||||
event.target.style.opacity = '';
|
||||
}
|
||||
|
||||
draggedInterest.value = null;
|
||||
draggedFromLevel.value = null;
|
||||
};
|
||||
|
||||
const handleDragOver = (event: DragEvent) => {
|
||||
event.preventDefault();
|
||||
event.dataTransfer!.dropEffect = 'move';
|
||||
|
||||
// Add visual feedback to drop zone
|
||||
if (event.currentTarget instanceof HTMLElement) {
|
||||
event.currentTarget.classList.add('drag-over');
|
||||
}
|
||||
};
|
||||
|
||||
const handleDragLeave = (event: DragEvent) => {
|
||||
// Remove visual feedback from drop zone
|
||||
if (event.currentTarget instanceof HTMLElement) {
|
||||
event.currentTarget.classList.remove('drag-over');
|
||||
}
|
||||
};
|
||||
|
||||
const handleDrop = async (event: DragEvent, targetLevel: string) => {
|
||||
event.preventDefault();
|
||||
|
||||
// Remove visual feedback
|
||||
if (event.currentTarget instanceof HTMLElement) {
|
||||
event.currentTarget.classList.remove('drag-over');
|
||||
}
|
||||
|
||||
if (!draggedInterest.value || draggedFromLevel.value === targetLevel) {
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
// Update the interest's sales process level
|
||||
const response = await $fetch('/api/update-interest', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'x-tag': '094ut234'
|
||||
},
|
||||
body: {
|
||||
id: draggedInterest.value.Id,
|
||||
data: {
|
||||
'Sales Process Level': targetLevel
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// Update local data
|
||||
const interestIndex = interests.value?.list.findIndex(i => i.Id === draggedInterest.value!.Id);
|
||||
if (interestIndex !== undefined && interestIndex !== -1 && interests.value) {
|
||||
interests.value.list[interestIndex]['Sales Process Level'] = targetLevel;
|
||||
}
|
||||
|
||||
// Show success message
|
||||
const { $toast } = useNuxtApp();
|
||||
$toast.success(`Moved to ${targetLevel}`);
|
||||
|
||||
} catch (error) {
|
||||
console.error('Failed to update interest:', error);
|
||||
const { $toast } = useNuxtApp();
|
||||
$toast.error('Failed to update interest status');
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.v-card {
|
||||
border-radius: 8px;
|
||||
.kanban-container {
|
||||
background-color: #f5f5f5;
|
||||
border-radius: 12px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.v-card-title {
|
||||
font-weight: bold;
|
||||
.kanban-column {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.v-list-item {
|
||||
padding: 0;
|
||||
.column-card {
|
||||
background: #fafafa;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
.v-list-item-content {
|
||||
padding: 0;
|
||||
.column-header {
|
||||
background: white;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
.v-list-item-subtitle {
|
||||
white-space: normal;
|
||||
.column-content {
|
||||
background: transparent;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.column-content.drag-over {
|
||||
background: rgba(33, 150, 243, 0.1);
|
||||
border: 2px dashed #2196F3;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.interest-card {
|
||||
cursor: move;
|
||||
transition: all 0.2s ease;
|
||||
background: white;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
.interest-card:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
|
||||
border-color: #d0d0d0;
|
||||
}
|
||||
|
||||
.interest-card.dragging {
|
||||
opacity: 0.5;
|
||||
cursor: grabbing;
|
||||
}
|
||||
|
||||
.text-truncate {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
max-width: 240px;
|
||||
}
|
||||
|
||||
/* Custom scrollbar for column content */
|
||||
.v-card-text::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
}
|
||||
|
||||
.v-card-text::-webkit-scrollbar-track {
|
||||
background: rgba(0, 0, 0, 0.05);
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.v-card-text::-webkit-scrollbar-thumb {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.v-card-text::-webkit-scrollbar-thumb:hover {
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
/* Ensure horizontal scroll for the board */
|
||||
.overflow-x-auto {
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
.overflow-x-auto::-webkit-scrollbar {
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
.overflow-x-auto::-webkit-scrollbar-track {
|
||||
background: #f1f1f1;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.overflow-x-auto::-webkit-scrollbar-thumb {
|
||||
background: #888;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.overflow-x-auto::-webkit-scrollbar-thumb:hover {
|
||||
background: #555;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user