269 lines
9.4 KiB
Vue
269 lines
9.4 KiB
Vue
<template>
|
|
<DashboardLayout>
|
|
<template #header-icon>
|
|
<DashboardIcon name="building-office" size="5" class="text-primary" />
|
|
</template>
|
|
<template #header-title>Подразделения</template>
|
|
<template #header-subtitle>Управление подразделениями института</template>
|
|
<template #header-actions>
|
|
<a
|
|
:href="route('dashboard.divisions.create')"
|
|
class="inline-flex items-center gap-2 px-4 py-2 bg-primary text-white text-sm font-medium rounded-lg hover:bg-primary-hover transition-all duration-200 shadow-sm hover:shadow-md"
|
|
>
|
|
<DashboardIcon name="plus" size="4" />
|
|
Создать подразделение
|
|
</a>
|
|
</template>
|
|
|
|
<!-- Flash Messages -->
|
|
<FlashMessages />
|
|
|
|
<!-- Filters Card -->
|
|
<DataFilters title="Фильтры" @reset="resetFilters">
|
|
<SearchInput
|
|
v-model="searchQuery"
|
|
label="Поиск по названию"
|
|
placeholder="Введите название подразделения..."
|
|
@search="search"
|
|
/>
|
|
|
|
<SelectFilter
|
|
v-model="isActiveQuery"
|
|
label="Статус"
|
|
placeholder="Все статусы"
|
|
@change="filterByStatus"
|
|
>
|
|
<option value="1">Активные</option>
|
|
<option value="0">Неактивные</option>
|
|
</SelectFilter>
|
|
</DataFilters>
|
|
|
|
<!-- Divisions Table -->
|
|
<div class="bg-layer border border-layer-line rounded-lg shadow-xs overflow-hidden">
|
|
<!-- Table Header Stats -->
|
|
<div class="px-6 py-4 border-b border-line-2 bg-white/50">
|
|
<div class="flex items-center justify-between">
|
|
<div class="flex items-center gap-4">
|
|
<span class="text-sm text-foreground">
|
|
Всего: <span class="font-medium">{{ divisions.total }}</span>
|
|
</span>
|
|
<span class="text-xs text-muted-foreground-1 px-2 py-0.5 bg-primary/10 text-primary rounded-full">
|
|
{{ divisions.data.length }} на странице
|
|
</span>
|
|
</div>
|
|
<div class="flex items-center gap-2">
|
|
<button
|
|
type="button"
|
|
@click="refreshPage"
|
|
class="p-2 text-muted-foreground-1 hover:text-foreground hover:bg-muted-hover rounded-lg transition-all"
|
|
title="Обновить"
|
|
>
|
|
<DashboardIcon name="arrow-path" size="4" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Table -->
|
|
<div class="overflow-x-auto">
|
|
<table class="min-w-full divide-y divide-line-2">
|
|
<thead class="bg-surface/50">
|
|
<tr>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-muted-foreground-1 uppercase tracking-wider">
|
|
Название
|
|
</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-muted-foreground-1 uppercase tracking-wider">
|
|
URL
|
|
</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-muted-foreground-1 uppercase tracking-wider">
|
|
Статус
|
|
</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-muted-foreground-1 uppercase tracking-wider">
|
|
Дата создания
|
|
</th>
|
|
<th class="px-6 py-3 text-right text-xs font-medium text-muted-foreground-1 uppercase tracking-wider">
|
|
Действия
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="divide-y divide-line-2">
|
|
<tr
|
|
v-for="division in divisions.data"
|
|
:key="division.id"
|
|
class="group hover:bg-muted-hover/50 transition-all duration-200"
|
|
>
|
|
<td class="px-6 py-4">
|
|
<div class="text-sm font-medium text-foreground group-hover:text-primary transition-colors">
|
|
{{ division.title }}
|
|
</div>
|
|
</td>
|
|
<td class="px-6 py-4">
|
|
<div class="text-sm text-muted-foreground-1 truncate max-w-xs" :title="division.slug">
|
|
{{ division.slug }}
|
|
</div>
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
<span :class="getStatusBadgeClass(division.is_active)">
|
|
<DashboardIcon v-if="division.is_active" name="check-circle" size="3" class="mr-1" />
|
|
<DashboardIcon v-else name="x-circle" size="3" class="mr-1" />
|
|
{{ division.is_active ? 'Активный' : 'Неактивный' }}
|
|
</span>
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap">
|
|
<div class="text-sm text-foreground">{{ formatDate(division.created_at) }}</div>
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-right">
|
|
<div class="flex items-center justify-end gap-1.5 opacity-0 group-hover:opacity-100 transition-opacity">
|
|
<a
|
|
:href="route('dashboard.divisions.edit', division.id)"
|
|
class="p-2 text-muted-foreground-1 hover:text-primary hover:bg-primary/10 rounded-lg transition-all"
|
|
title="Редактировать"
|
|
>
|
|
<DashboardIcon name="pencil-square" size="4" />
|
|
</a>
|
|
<button
|
|
@click.prevent="confirmDelete(division)"
|
|
class="p-2 text-muted-foreground-1 hover:text-rose-600 hover:bg-rose-500/10 rounded-lg transition-all"
|
|
title="Удалить"
|
|
>
|
|
<DashboardIcon name="trash" size="4" />
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- Empty State -->
|
|
<EmptyState
|
|
v-if="divisions.data.length === 0"
|
|
:columns="5"
|
|
title="Подразделения не найдены"
|
|
description="Создайте первое подразделение или измените параметры поиска"
|
|
:action-url="route('dashboard.divisions.create')"
|
|
action-text="Создать подразделение"
|
|
icon-path="M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z"
|
|
/>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<!-- Pagination -->
|
|
<Pagination :data="divisions" />
|
|
</div>
|
|
</DashboardLayout>
|
|
</template>
|
|
|
|
<script>
|
|
import DashboardLayout from '../Components/DashboardLayout.vue';
|
|
import DashboardIcon from '../Components/DashboardIcon.vue';
|
|
import FlashMessages from '../Components/shared/FlashMessages.vue';
|
|
import DataFilters from '../Components/shared/DataFilters.vue';
|
|
import SearchInput from '../Components/shared/SearchInput.vue';
|
|
import SelectFilter from '../Components/shared/SelectFilter.vue';
|
|
import EmptyState from '../Components/shared/EmptyState.vue';
|
|
import Pagination from '../Components/shared/Pagination.vue';
|
|
|
|
export default {
|
|
name: 'DivisionIndex',
|
|
components: {
|
|
DashboardLayout,
|
|
DashboardIcon,
|
|
FlashMessages,
|
|
DataFilters,
|
|
SearchInput,
|
|
SelectFilter,
|
|
EmptyState,
|
|
Pagination
|
|
},
|
|
|
|
props: {
|
|
divisions: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
filters: {
|
|
type: Object,
|
|
default: () => ({
|
|
is_active: '',
|
|
search: ''
|
|
})
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
searchQuery: this.filters?.search || '',
|
|
isActiveQuery: this.filters?.is_active || '',
|
|
}
|
|
},
|
|
|
|
mounted() {
|
|
this.SET_DOCUMENT_TITLE('Подразделения');
|
|
},
|
|
|
|
methods: {
|
|
getStatusBadgeClass(isActive) {
|
|
return isActive
|
|
? 'inline-flex items-center px-2.5 py-1 rounded-md text-xs font-medium bg-success/10 text-success border border-success/20'
|
|
: 'inline-flex items-center px-2.5 py-1 rounded-md text-xs font-medium bg-danger/10 text-danger border border-danger/20';
|
|
},
|
|
|
|
formatDate(date) {
|
|
if (!date) return '—';
|
|
return new Date(date).toLocaleDateString('ru-RU', {
|
|
day: 'numeric',
|
|
month: 'short',
|
|
year: 'numeric',
|
|
hour: '2-digit',
|
|
minute: '2-digit'
|
|
});
|
|
},
|
|
|
|
search() {
|
|
this.$inertia.get(route('dashboard.divisions.index'), {
|
|
search: this.searchQuery,
|
|
is_active: this.isActiveQuery
|
|
}, {
|
|
preserveState: true
|
|
});
|
|
},
|
|
|
|
filterByStatus() {
|
|
this.search();
|
|
},
|
|
|
|
resetFilters() {
|
|
this.searchQuery = '';
|
|
this.isActiveQuery = '';
|
|
this.$inertia.get(route('dashboard.divisions.index'), {}, {
|
|
preserveState: true
|
|
});
|
|
},
|
|
|
|
confirmDelete(division) {
|
|
if (confirm(`Вы уверены, что хотите удалить подразделение "${division.title}"?`)) {
|
|
this.deleteDivision(division);
|
|
}
|
|
},
|
|
|
|
deleteDivision(division) {
|
|
this.$inertia.delete(route('dashboard.divisions.destroy', division.id), {
|
|
preserveScroll: true
|
|
});
|
|
},
|
|
|
|
refreshPage() {
|
|
this.$inertia.get(route('dashboard.divisions.index'), {
|
|
search: this.searchQuery,
|
|
is_active: this.isActiveQuery
|
|
}, {
|
|
preserveState: true
|
|
});
|
|
},
|
|
|
|
route(name, params) {
|
|
return route(name, params);
|
|
}
|
|
}
|
|
}
|
|
</script>
|