This commit is contained in:
F4ilji
2026-04-07 17:54:26 +05:00
parent 04adba6682
commit 936b1fb5b0
468 changed files with 43498 additions and 4176 deletions
@@ -0,0 +1,195 @@
<template>
<DashboardLayout>
<template #header-icon>
<DashboardIcon name="plus" size="5" class="text-primary" />
</template>
<template #header-title>Создание факультета</template>
<template #header-subtitle>Добавление нового факультета в систему</template>
<template #header-actions>
<a
:href="route('dashboard.faculties.index')"
class="inline-flex items-center gap-2 px-4 py-2 bg-surface text-foreground text-sm font-medium rounded-lg border border-layer-line hover:bg-muted-hover transition-all duration-200"
>
<DashboardIcon name="arrow-left" size="4" />
Назад к списку
</a>
</template>
<!-- Flash Messages -->
<FlashMessages />
<!-- Form Card -->
<div class="bg-layer border border-layer-line rounded-lg shadow-xs overflow-hidden">
<form @submit.prevent="submit">
<div class="p-6 space-y-6">
<!-- Основные поля -->
<div class="space-y-4">
<h3 class="text-lg font-medium text-foreground">Основная информация</h3>
<div class="grid grid-cols-1 gap-4">
<div>
<label class="block text-sm font-medium text-foreground mb-1">
Полное название <span class="text-danger">*</span>
</label>
<input
v-model="form.title"
type="text"
required
maxlength="255"
placeholder="Например: Факультет информационных технологий"
class="w-full px-3 py-2 border border-layer-line rounded-lg bg-white text-foreground placeholder-muted-foreground-1 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent"
@input="generateSlug"
/>
<p v-if="errors.title" class="mt-1 text-sm text-danger">{{ errors.title }}</p>
</div>
<div>
<label class="block text-sm font-medium text-foreground mb-1">
URL-адрес <span class="text-danger">*</span>
</label>
<div class="flex items-center">
<span class="inline-flex items-center px-3 py-2 border border-r-0 border-layer-line rounded-l-lg bg-muted text-muted-foreground-1 text-sm">
{{ baseUrl }}/
</span>
<input
v-model="form.slug"
type="text"
required
readonly
class="flex-1 px-3 py-2 border border-layer-line rounded-r-lg bg-muted text-muted-foreground-1 text-sm cursor-not-allowed"
/>
</div>
<p class="mt-1 text-xs text-muted-foreground-1">Формируется автоматически из названия</p>
<p v-if="errors.slug" class="mt-1 text-sm text-danger">{{ errors.slug }}</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label class="block text-sm font-medium text-foreground mb-1">
Аббревиатура <span class="text-danger">*</span>
</label>
<input
v-model="form.abbreviation"
type="text"
required
maxlength="10"
placeholder="Например: ФИТ"
class="w-full px-3 py-2 border border-layer-line rounded-lg bg-white text-foreground placeholder-muted-foreground-1 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent"
/>
<p class="mt-1 text-xs text-muted-foreground-1">Короткое обозначение факультета</p>
<p v-if="errors.abbreviation" class="mt-1 text-sm text-danger">{{ errors.abbreviation }}</p>
</div>
<div>
<label class="block text-sm font-medium text-foreground mb-1">
Статус
</label>
<div class="flex items-center mt-2">
<input
v-model="form.is_active"
type="checkbox"
class="h-4 w-4 text-primary focus:ring-primary border-layer-line rounded"
/>
<label class="ml-2 text-sm text-foreground">
Активный факультет
</label>
</div>
<p class="mt-1 text-xs text-muted-foreground-1">Отображать ли факультет на сайте</p>
</div>
</div>
</div>
</div>
<!-- Контент -->
<div class="space-y-4">
<h3 class="text-lg font-medium text-foreground">Контент</h3>
<ContentBuilder
v-model="form.content"
label="Содержимое страницы"
/>
</div>
</div>
<!-- Form Actions -->
<div class="px-6 py-4 bg-surface/50 border-t border-layer-line flex items-center justify-end gap-3">
<a
:href="route('dashboard.faculties.index')"
class="px-4 py-2 text-sm font-medium text-foreground bg-surface border border-layer-line rounded-lg hover:bg-muted-hover transition-all"
>
Отмена
</a>
<button
type="submit"
:disabled="processing"
class="px-4 py-2 text-sm font-medium text-white bg-primary rounded-lg hover:bg-primary-hover transition-all disabled:opacity-50 disabled:cursor-not-allowed"
>
<svg v-if="processing" class="animate-spin -ml-1 mr-2 h-4 w-4 text-white inline" fill="none" viewBox="0 0 24 24">
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
</svg>
{{ processing ? 'Создание...' : 'Создать факультет' }}
</button>
</div>
</form>
</div>
</DashboardLayout>
</template>
<script>
import DashboardLayout from '../Components/DashboardLayout.vue';
import DashboardIcon from '../Components/DashboardIcon.vue';
import FlashMessages from '../Components/shared/FlashMessages.vue';
import ContentBuilder from '../Components/ContentBuilder/ContentBuilder.vue';
export default {
name: 'FacultyCreate',
components: {
DashboardLayout,
DashboardIcon,
FlashMessages,
ContentBuilder,
},
props: {
errors: {
type: Object,
default: () => ({})
}
},
data() {
return {
form: {
title: '',
slug: '',
abbreviation: '',
is_active: true,
content: []
},
processing: false,
baseUrl: this.GET_BASE_URL() + 'faculty'
}
},
mounted() {
this.SET_DOCUMENT_TITLE('Создание факультета');
},
methods: {
generateSlug() {
if (this.form.title) {
this.form.slug = this.GENERATE_SLUG(this.form.title);
}
},
submit() {
this.processing = true;
this.$inertia.post(route('dashboard.faculties.store'), this.form, {
onFinish: () => {
this.processing = false;
}
});
}
}
}
</script>
@@ -0,0 +1,235 @@
<template>
<DashboardLayout>
<template #header-icon>
<DashboardIcon name="building-office" size="5" class="text-primary" />
</template>
<template #header-title>
<div class="flex items-center gap-2">
<span>Редактирование факультета</span>
<span class="text-muted-foreground-1">/</span>
<span class="text-primary">{{ faculty.title }}</span>
</div>
</template>
<template #header-subtitle>
<div class="flex items-center gap-3">
<span class="inline-flex items-center px-2 py-0.5 rounded-md text-xs font-medium bg-primary/10 text-primary border border-primary/20">
{{ faculty.abbreviation }}
</span>
<span class="text-muted-foreground-1"></span>
<span :class="faculty.is_active ? 'text-success' : 'text-danger'" class="flex items-center gap-1">
<DashboardIcon v-if="faculty.is_active" name="check-circle" size="3" class="text-success" />
<DashboardIcon v-else name="x-circle" size="3" class="text-danger" />
{{ faculty.is_active ? 'Активный' : 'Неактивный' }}
</span>
</div>
</template>
<template #header-actions>
<a
:href="route('dashboard.faculties.index')"
class="inline-flex items-center gap-2 px-4 py-2 bg-surface text-foreground text-sm font-medium rounded-lg border border-layer-line hover:bg-muted-hover transition-all duration-200"
>
<DashboardIcon name="arrow-left" size="4" />
Назад к списку
</a>
</template>
<!-- Flash Messages -->
<FlashMessages />
<!-- Form Card -->
<div class="bg-layer border border-layer-line rounded-lg shadow-xs overflow-hidden">
<form @submit.prevent="submit">
<div class="p-6 space-y-6">
<!-- Основные поля -->
<div class="space-y-4">
<h3 class="text-lg font-medium text-foreground">Основная информация</h3>
<div class="grid grid-cols-1 gap-4">
<div>
<label class="block text-sm font-medium text-foreground mb-1">
Полное название <span class="text-danger">*</span>
</label>
<input
v-model="form.title"
type="text"
required
maxlength="255"
placeholder="Например: Факультет информационных технологий"
class="w-full px-3 py-2 border border-layer-line rounded-lg bg-white text-foreground placeholder-muted-foreground-1 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent"
@input="generateSlug"
/>
<p v-if="errors.title" class="mt-1 text-sm text-danger">{{ errors.title }}</p>
</div>
<div>
<label class="block text-sm font-medium text-foreground mb-1">
URL-адрес <span class="text-danger">*</span>
</label>
<div class="flex items-center">
<span class="inline-flex items-center px-3 py-2 border border-r-0 border-layer-line rounded-l-lg bg-muted text-muted-foreground-1 text-sm">
{{ baseUrl }}/
</span>
<input
v-model="form.slug"
type="text"
required
readonly
class="flex-1 px-3 py-2 border border-layer-line rounded-r-lg bg-muted text-muted-foreground-1 text-sm cursor-not-allowed"
/>
</div>
<p class="mt-1 text-xs text-muted-foreground-1">Формируется автоматически из названия</p>
<p v-if="errors.slug" class="mt-1 text-sm text-danger">{{ errors.slug }}</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label class="block text-sm font-medium text-foreground mb-1">
Аббревиатура <span class="text-danger">*</span>
</label>
<input
v-model="form.abbreviation"
type="text"
required
maxlength="10"
placeholder="Например: ФИТ"
class="w-full px-3 py-2 border border-layer-line rounded-lg bg-white text-foreground placeholder-muted-foreground-1 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent"
/>
<p class="mt-1 text-xs text-muted-foreground-1">Короткое обозначение факультета</p>
<p v-if="errors.abbreviation" class="mt-1 text-sm text-danger">{{ errors.abbreviation }}</p>
</div>
<div>
<label class="block text-sm font-medium text-foreground mb-1">
Статус
</label>
<div class="flex items-center mt-2">
<input
v-model="form.is_active"
type="checkbox"
class="h-4 w-4 text-primary focus:ring-primary border-layer-line rounded"
/>
<label class="ml-2 text-sm text-foreground">
Активный факультет
</label>
</div>
<p class="mt-1 text-xs text-muted-foreground-1">Отображать ли факультет на сайте</p>
</div>
</div>
</div>
</div>
<!-- Контент -->
<div class="space-y-4">
<h3 class="text-lg font-medium text-foreground">Контент</h3>
<ContentBuilder
v-model="form.content"
label="Содержимое страницы"
/>
</div>
<!-- Сотрудники -->
<FacultyWorkers
v-if="faculty.id"
:faculty="faculty"
:workers="workers"
:available-users="availableWorkers"
/>
</div>
<!-- Form Actions -->
<div class="px-6 py-4 bg-surface/50 border-t border-layer-line flex items-center justify-end gap-3">
<a
:href="route('dashboard.faculties.index')"
class="px-4 py-2 text-sm font-medium text-foreground bg-surface border border-layer-line rounded-lg hover:bg-muted-hover transition-all"
>
Отмена
</a>
<button
type="submit"
:disabled="processing"
class="px-4 py-2 text-sm font-medium text-white bg-primary rounded-lg hover:bg-primary-hover transition-all disabled:opacity-50 disabled:cursor-not-allowed"
>
<svg v-if="processing" class="animate-spin -ml-1 mr-2 h-4 w-4 text-white inline" fill="none" viewBox="0 0 24 24">
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
</svg>
{{ processing ? 'Сохранение...' : 'Сохранить изменения' }}
</button>
</div>
</form>
</div>
</DashboardLayout>
</template>
<script>
import DashboardLayout from '../Components/DashboardLayout.vue';
import DashboardIcon from '../Components/DashboardIcon.vue';
import FlashMessages from '../Components/shared/FlashMessages.vue';
import ContentBuilder from '../Components/ContentBuilder/ContentBuilder.vue';
import FacultyWorkers from './Workers/Index.vue';
export default {
name: 'FacultyEdit',
components: {
DashboardLayout,
DashboardIcon,
FlashMessages,
ContentBuilder,
FacultyWorkers,
},
props: {
faculty: {
type: Object,
required: true
},
workers: {
type: Object,
default: () => ({ data: [], total: 0 })
},
availableWorkers: {
type: Array,
default: () => []
},
errors: {
type: Object,
default: () => ({})
}
},
data() {
return {
form: {
title: this.faculty.title || '',
slug: this.faculty.slug || '',
abbreviation: this.faculty.abbreviation || '',
is_active: Boolean(this.faculty.is_active ?? true),
content: this.faculty.content || []
},
processing: false,
baseUrl: this.GET_BASE_URL() + 'faculty'
}
},
mounted() {
this.SET_DOCUMENT_TITLE(`Редактирование факультета - ${this.faculty.title}`);
},
methods: {
generateSlug() {
if (this.form.title) {
this.form.slug = this.GENERATE_SLUG(this.form.title);
}
},
submit() {
this.processing = true;
this.$inertia.put(route('dashboard.faculties.update', this.faculty.id), this.form, {
onFinish: () => {
this.processing = false;
}
});
}
}
}
</script>
@@ -0,0 +1,268 @@
<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.faculties.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>
<!-- Faculties 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">{{ faculties.total }}</span>
</span>
<span class="text-xs text-muted-foreground-1 px-2 py-0.5 bg-primary/10 text-primary rounded-full">
{{ faculties.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">
Аббревиатура
</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="faculty in faculties.data"
:key="faculty.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">
{{ faculty.title }}
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="inline-flex items-center px-2.5 py-1 rounded-md text-xs font-medium bg-primary/10 text-primary border border-primary/20">
{{ faculty.abbreviation }}
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span :class="getStatusBadgeClass(faculty.is_active)">
<DashboardIcon v-if="faculty.is_active" name="check-circle" size="3" class="text-success" />
<DashboardIcon v-else name="x-circle" size="3" class="text-danger" />
{{ faculty.is_active ? 'Активный' : 'Неактивный' }}
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-foreground">{{ formatDate(faculty.updated_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.faculties.edit', faculty.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(faculty)"
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="faculties.data.length === 0"
:columns="5"
title="Факультеты не найдены"
description="Создайте первый факультет или измените параметры поиска"
:action-url="route('dashboard.faculties.create')"
action-text="Создать факультет"
icon-path="M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4"
/>
</tbody>
</table>
</div>
<!-- Pagination -->
<Pagination :data="faculties" />
</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: 'FacultyIndex',
components: {
DashboardLayout,
DashboardIcon,
FlashMessages,
DataFilters,
SearchInput,
SelectFilter,
EmptyState,
Pagination
},
props: {
faculties: {
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.faculties.index'), {
search: this.searchQuery,
is_active: this.isActiveQuery
}, {
preserveState: true
});
},
filterByStatus() {
this.search();
},
resetFilters() {
this.searchQuery = '';
this.isActiveQuery = '';
this.$inertia.get(route('dashboard.faculties.index'), {}, {
preserveState: true
});
},
confirmDelete(faculty) {
if (confirm(`Вы уверены, что хотите удалить факультет "${faculty.title}"?`)) {
this.deleteFaculty(faculty);
}
},
deleteFaculty(faculty) {
this.$inertia.delete(route('dashboard.faculties.destroy', faculty.id), {
preserveScroll: true
});
},
refreshPage() {
this.$inertia.get(route('dashboard.faculties.index'), {
search: this.searchQuery,
is_active: this.isActiveQuery
}, {
preserveState: true
});
},
route(name, params) {
return route(name, params);
}
}
}
</script>
@@ -0,0 +1,290 @@
<template>
<div class="space-y-4">
<!-- Header -->
<div class="flex items-center justify-between">
<h3 class="text-lg font-medium text-foreground">Сотрудники</h3>
<button
type="button"
@click="showAddModal = true"
class="inline-flex items-center gap-2 px-3 py-1.5 text-sm font-medium text-primary bg-primary/10 rounded-lg hover:bg-primary/20 transition-all"
>
<DashboardIcon name="plus" size="4" />
Добавить сотрудника
</button>
</div>
<!-- Workers Table -->
<div class="border border-layer-line rounded-lg overflow-hidden">
<table class="min-w-full divide-y divide-line-2">
<thead class="bg-muted/30">
<tr>
<th class="px-4 py-3 text-left text-xs font-medium text-muted-foreground-1 uppercase tracking-wider">
ФИО
</th>
<th class="px-4 py-3 text-left text-xs font-medium text-muted-foreground-1 uppercase tracking-wider">
Должность
</th>
<th class="px-4 py-3 text-left text-xs font-medium text-muted-foreground-1 uppercase tracking-wider">
Почта
</th>
<th class="px-4 py-3 text-left text-xs font-medium text-muted-foreground-1 uppercase tracking-wider">
Телефон
</th>
<th class="px-4 py-3 text-left text-xs font-medium text-muted-foreground-1 uppercase tracking-wider">
Кабинет
</th>
<th class="px-4 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 bg-layer">
<tr v-for="worker in workers.data" :key="worker.id" class="hover:bg-muted/20">
<td class="px-4 py-3 text-sm font-medium text-foreground">
{{ worker.name }}
</td>
<td class="px-4 py-3 text-sm text-foreground">
{{ worker.pivot.position }}
</td>
<td class="px-4 py-3 text-sm text-foreground">
{{ worker.pivot.service_email || '—' }}
</td>
<td class="px-4 py-3 text-sm text-foreground">
{{ worker.pivot.service_phone || '—' }}
</td>
<td class="px-4 py-3 text-sm text-foreground">
{{ worker.pivot.cabinet || '—' }}
</td>
<td class="px-4 py-3 text-right">
<div class="flex items-center justify-end gap-1">
<button
type="button"
@click="editWorker(worker)"
class="p-1.5 text-muted-foreground-1 hover:text-primary hover:bg-primary/10 rounded transition-all"
title="Редактировать"
>
<DashboardIcon name="pencil-square" size="4" />
</button>
<button
type="button"
@click="confirmDetach(worker)"
class="p-1.5 text-muted-foreground-1 hover:text-danger hover:bg-danger/10 rounded transition-all"
title="Удалить"
>
<DashboardIcon name="trash" size="4" />
</button>
</div>
</td>
</tr>
<!-- Empty State -->
<tr v-if="workers.data.length === 0">
<td colspan="6" class="px-4 py-12 text-center">
<DashboardIcon name="user-group" size="12" class="text-muted-foreground-1" />
<p class="mt-2 text-sm text-muted-foreground-1">Нет сотрудников</p>
<p class="text-xs text-muted-foreground-1">Добавьте первого сотрудника</p>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Add/Edit Modal -->
<div
v-if="showAddModal || editingWorker"
class="fixed inset-0 z-50 flex items-center justify-center p-4 bg-black/50"
@click.self="closeModal"
>
<div class="bg-layer border border-layer-line rounded-lg shadow-xl max-w-lg w-full">
<div class="px-6 py-4 border-b border-layer-line flex items-center justify-between">
<h3 class="text-lg font-medium text-foreground">
{{ editingWorker ? 'Редактировать сотрудника' : 'Добавить сотрудника' }}
</h3>
<button
type="button"
@click="closeModal"
class="p-1.5 text-muted-foreground-1 hover:text-foreground hover:bg-muted-hover rounded transition-all"
>
<DashboardIcon name="x-mark" size="5" />
</button>
</div>
<form @submit.prevent="submit" class="p-6 space-y-4">
<div v-if="!editingWorker">
<label class="block text-sm font-medium text-foreground mb-1">
Сотрудник <span class="text-danger">*</span>
</label>
<select
v-model="form.user_id"
required
class="w-full px-3 py-2 border border-layer-line rounded-lg bg-white text-foreground focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent"
>
<option :value="null">Выберите сотрудника...</option>
<option v-for="user in availableUsers" :key="user.id" :value="user.id">
{{ user.name }}
</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-foreground mb-1">
Должность <span class="text-danger">*</span>
</label>
<input
v-model="form.position"
type="text"
required
maxlength="255"
placeholder="Например: Декан факультета"
class="w-full px-3 py-2 border border-layer-line rounded-lg bg-white text-foreground placeholder-muted-foreground-1 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent"
/>
</div>
<div class="grid grid-cols-2 gap-3">
<div>
<label class="block text-sm font-medium text-foreground mb-1">
Рабочая почта
</label>
<input
v-model="form.service_email"
type="email"
maxlength="255"
placeholder="example@university.ru"
class="w-full px-3 py-2 border border-layer-line rounded-lg bg-white text-foreground placeholder-muted-foreground-1 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent"
/>
</div>
<div>
<label class="block text-sm font-medium text-foreground mb-1">
Рабочий телефон
</label>
<input
v-model="form.service_phone"
type="text"
maxlength="20"
placeholder="+7 (XXX) XXX-XX-XX"
class="w-full px-3 py-2 border border-layer-line rounded-lg bg-white text-foreground placeholder-muted-foreground-1 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent"
/>
</div>
</div>
<div>
<label class="block text-sm font-medium text-foreground mb-1">
Кабинет
</label>
<input
v-model="form.cabinet"
type="text"
maxlength="10"
placeholder="Например: 305а"
class="w-full px-3 py-2 border border-layer-line rounded-lg bg-white text-foreground placeholder-muted-foreground-1 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent"
/>
</div>
<div class="flex items-center justify-end gap-3 pt-4">
<button
type="button"
@click="closeModal"
class="px-4 py-2 text-sm font-medium text-foreground bg-surface border border-layer-line rounded-lg hover:bg-muted-hover transition-all"
>
Отмена
</button>
<button
type="submit"
:disabled="processing"
class="px-4 py-2 text-sm font-medium text-white bg-primary rounded-lg hover:bg-primary-hover transition-all disabled:opacity-50 disabled:cursor-not-allowed"
>
{{ processing ? 'Сохранение...' : 'Сохранить' }}
</button>
</div>
</form>
</div>
</div>
</div>
</template>
<script>
import DashboardIcon from '../../Components/DashboardIcon.vue';
export default {
name: 'FacultyWorkers',
components: {
DashboardIcon,
},
props: {
faculty: { type: Object, required: true },
workers: { type: Object, required: true },
availableUsers: { type: Array, required: true },
},
data() {
return {
showAddModal: false,
editingWorker: null,
processing: false,
form: {
user_id: null,
position: '',
service_email: '',
service_phone: '',
cabinet: ''
}
};
},
methods: {
editWorker(worker) {
this.editingWorker = worker;
this.form = {
user_id: worker.id,
position: worker.pivot.position,
service_email: worker.pivot.service_email || '',
service_phone: worker.pivot.service_phone || '',
cabinet: worker.pivot.cabinet || ''
};
},
confirmDetach(worker) {
if (confirm(`Вы уверены, что хотите удалить "${worker.name}" из сотрудников факультета?`)) {
this.detachWorker(worker);
}
},
detachWorker(worker) {
this.$inertia.delete(route('dashboard.faculties.workers.detach', [this.faculty.id, worker.id]), {
preserveScroll: true,
onSuccess: () => {
// Остаемся на странице edit, flash message покажется автоматически
}
});
},
submit() {
this.processing = true;
const url = this.editingWorker
? route('dashboard.faculties.workers.update', [this.faculty.id, this.editingWorker.id])
: route('dashboard.faculties.workers.attach', this.faculty.id);
const method = this.editingWorker ? 'put' : 'post';
this.$inertia[method](url, this.form, {
preserveScroll: true,
onSuccess: () => {
this.processing = false;
this.closeModal();
},
onError: () => {
this.processing = false;
}
});
},
closeModal() {
this.showAddModal = false;
this.editingWorker = null;
this.form = {
user_id: null,
position: '',
service_email: '',
service_phone: '',
cabinet: ''
};
}
}
}
</script>