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,380 @@
<template>
<div class="min-h-screen bg-background-2">
<!-- Header -->
<div class="border-b border-line-2 bg-layer/50 backdrop-blur-sm sticky top-0 z-10 h-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 h-full">
<div class="flex items-center h-full gap-3">
<a
:href="route('dashboard.pages.index')"
class="p-2 text-muted-foreground-1 hover:text-foreground hover:bg-muted-hover rounded-lg transition-all"
>
<DashboardIcon name="arrow-left" size="5" />
</a>
<div class="flex items-center gap-3">
<div class="w-10 h-10 rounded-lg bg-primary/10 flex items-center justify-center">
<DashboardIcon name="plus" size="5" class="text-primary" />
</div>
<div>
<h1 class="text-lg font-medium text-foreground">Создание страницы</h1>
<p class="text-xs text-muted-foreground-1">Заполните информацию о новой странице</p>
</div>
</div>
</div>
</div>
</div>
<!-- Main Content -->
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-6">
<!-- Flash Messages -->
<FlashMessages />
<!-- Form Card -->
<div class="bg-layer border border-layer-line rounded-lg shadow-xs">
<!-- Tabs Navigation -->
<div class="border-b border-line-2">
<nav class="flex -mb-px">
<button
@click="activeTab = 'main'"
class="px-6 py-4 text-sm font-medium border-b-2 transition-all"
:class="activeTab === 'main' ? 'border-primary text-primary' : 'border-transparent text-muted-foreground-1 hover:text-foreground hover:border-line-2'"
>
<div class="flex items-center gap-2">
<DashboardIcon name="information-circle" size="4" />
Основная информация
</div>
</button>
<button
@click="activeTab = 'content'"
class="px-6 py-4 text-sm font-medium border-b-2 transition-all"
:class="activeTab === 'content' ? 'border-primary text-primary' : 'border-transparent text-muted-foreground-1 hover:text-foreground hover:border-line-2'"
>
<div class="flex items-center gap-2">
<DashboardIcon name="document-text" size="4" />
Содержание
</div>
</button>
<button
@click="activeTab = 'settings'"
class="px-6 py-4 text-sm font-medium border-b-2 transition-all"
:class="activeTab === 'settings' ? 'border-primary text-primary' : 'border-transparent text-muted-foreground-1 hover:text-foreground hover:border-line-2'"
>
<div class="flex items-center gap-2">
<DashboardIcon name="cog-6-tooth" size="4" />
Дополнительные настройки
</div>
</button>
</nav>
</div>
<form @submit.prevent="submit" class="p-6">
<!-- Tab: Main Info -->
<div v-show="activeTab === 'main'" class="space-y-6">
<!-- Title -->
<div>
<label for="title" class="block text-sm font-medium text-foreground mb-2">
Заголовок страницы <span class="text-rose-500">*</span>
</label>
<input
id="title"
v-model="form.title"
type="text"
@input="generateSlug"
placeholder="Например: О факультете"
:class="[
'w-full px-4 py-2.5 bg-surface border rounded-lg text-sm text-foreground placeholder-muted-foreground-2 focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all',
errors.title ? 'border-rose-500' : 'border-layer-line focus:border-primary'
]"
/>
<p v-if="errors.title" class="mt-1.5 text-xs text-rose-500">{{ errors.title }}</p>
</div>
<!-- Slug -->
<div>
<label for="slug" class="block text-sm font-medium text-foreground mb-2">
URL-адрес страницы <span class="text-rose-500">*</span>
</label>
<input
id="slug"
v-model="form.slug"
type="text"
placeholder="Например: about-faculty"
:class="[
'w-full px-4 py-2.5 bg-surface border rounded-lg text-sm text-foreground placeholder-muted-foreground-2 focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all',
errors.slug ? 'border-rose-500' : 'border-layer-line focus:border-primary'
]"
/>
<p v-if="errors.slug" class="mt-1.5 text-xs text-rose-500">{{ errors.slug }}</p>
<p class="mt-1.5 text-xs text-muted-foreground-1">
Автоматически генерируется из заголовка. Можно изменить.
</p>
</div>
<!-- SubSection -->
<div>
<label for="sub_section_id" class="block text-sm font-medium text-foreground mb-2">
Родительский подраздел
</label>
<select
id="sub_section_id"
v-model="form.sub_section_id"
:class="[
'w-full px-4 py-2.5 bg-surface border rounded-lg text-sm text-foreground focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all',
errors.sub_section_id ? 'border-rose-500' : 'border-layer-line focus:border-primary'
]"
>
<option value="">Без подраздела</option>
<option v-for="subSection in subSections" :key="subSection.id" :value="subSection.id">
{{ subSection.title }}
</option>
</select>
<p v-if="errors.sub_section_id" class="mt-1.5 text-xs text-rose-500">{{ errors.sub_section_id }}</p>
</div>
<!-- Code -->
<div>
<label for="code" class="block text-sm font-medium text-foreground mb-2">
HTTP статус страницы <span class="text-rose-500">*</span>
</label>
<select
id="code"
v-model="form.code"
:class="[
'w-full px-4 py-2.5 bg-surface border rounded-lg text-sm text-foreground focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all',
errors.code ? 'border-rose-500' : 'border-layer-line focus:border-primary'
]"
>
<option value="200">Обычная страница (200 OK)</option>
<option value="404">Страница не найдена (404 Not Found)</option>
<option value="500">Технические работы (500 Server Error)</option>
</select>
<p v-if="errors.code" class="mt-1.5 text-xs text-rose-500">{{ errors.code }}</p>
</div>
<!-- Searchable -->
<div class="flex items-center gap-3">
<input
id="searchable"
v-model="form.searchable"
type="checkbox"
class="h-4 w-4 rounded border-layer-line text-primary focus:ring-primary"
/>
<label for="searchable" class="text-sm font-medium text-foreground">
Индексировать в поиске
</label>
</div>
</div>
<!-- Tab: Content -->
<div v-show="activeTab === 'content'" class="space-y-6">
<ContentBuilder
v-model="form.content"
label="Содержание страницы"
/>
</div>
<!-- Tab: Settings -->
<div v-show="activeTab === 'settings'" class="space-y-6">
<!-- Display Settings -->
<div class="border border-layer-line rounded-lg">
<div class="px-4 py-3 border-b border-line-2 bg-surface/50">
<h3 class="text-sm font-medium text-foreground">Отображение элементов</h3>
<p class="text-xs text-muted-foreground-1 mt-0.5">Управление видимостью элементов на странице</p>
</div>
<div class="p-4 space-y-4">
<div class="flex items-center gap-3">
<input
id="hide_sub_section_links"
v-model="form.settings.hide_page_sub_section_links"
type="checkbox"
class="h-4 w-4 rounded border-layer-line text-primary focus:ring-primary"
/>
<label for="hide_sub_section_links" class="text-sm text-foreground">
Скрыть боковую панель с ссылками на страницы раздела
</label>
</div>
<div class="flex items-center gap-3">
<input
id="hide_page_navigate_links"
v-model="form.settings.hide_page_navigate_links"
type="checkbox"
class="h-4 w-4 rounded border-layer-line text-primary focus:ring-primary"
/>
<label for="hide_page_navigate_links" class="text-sm text-foreground">
Скрыть навигацию по странице
</label>
</div>
<div class="flex items-center gap-3">
<input
id="hide_breadcrumbs"
v-model="form.settings.hide_breadcrumbs"
type="checkbox"
class="h-4 w-4 rounded border-layer-line text-primary focus:ring-primary"
/>
<label for="hide_breadcrumbs" class="text-sm text-foreground">
Скрыть хлебные крошки
</label>
</div>
</div>
</div>
<!-- Floating Form Settings -->
<div class="border border-layer-line rounded-lg">
<div class="px-4 py-3 border-b border-line-2 bg-surface/50">
<h3 class="text-sm font-medium text-foreground">Плавающая форма на странице</h3>
<p class="text-xs text-muted-foreground-1 mt-0.5">Управление плавающей формой на странице</p>
</div>
<div class="p-4 space-y-4">
<div>
<label for="form_id" class="block text-sm font-medium text-foreground mb-2">
Прикрепить форму для страницы
</label>
<input
id="form_id"
v-model="form.settings.form.id"
type="text"
placeholder="ID формы"
class="w-full px-4 py-2.5 bg-surface border border-layer-line rounded-lg text-sm text-foreground placeholder-muted-foreground-2 focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all"
/>
</div>
<div>
<label for="form_title" class="block text-sm font-medium text-foreground mb-2">
Заголовок плавающего окна
</label>
<input
id="form_title"
v-model="form.settings.form.title"
type="text"
placeholder="Заголовок"
class="w-full px-4 py-2.5 bg-surface border border-layer-line rounded-lg text-sm text-foreground placeholder-muted-foreground-2 focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all"
/>
</div>
<div>
<label for="form_description" class="block text-sm font-medium text-foreground mb-2">
Описание плавающего окна
</label>
<input
id="form_description"
v-model="form.settings.form.description"
type="text"
placeholder="Описание"
class="w-full px-4 py-2.5 bg-surface border border-layer-line rounded-lg text-sm text-foreground placeholder-muted-foreground-2 focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all"
/>
</div>
<div>
<label for="form_button" class="block text-sm font-medium text-foreground mb-2">
Текст кнопки
</label>
<input
id="form_button"
v-model="form.settings.form.button"
type="text"
placeholder="Текст кнопки"
class="w-full px-4 py-2.5 bg-surface border border-layer-line rounded-lg text-sm text-foreground placeholder-muted-foreground-2 focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all"
/>
</div>
</div>
</div>
</div>
<!-- Submit Button -->
<div class="flex items-center justify-end gap-3 mt-8 pt-6 border-t border-line-2">
<a
:href="route('dashboard.pages.index')"
class="inline-flex items-center gap-2 px-4 py-2.5 bg-surface border border-layer-line text-foreground text-sm font-medium rounded-lg hover:bg-muted-hover transition-all"
>
Отмена
</a>
<button
type="submit"
:disabled="processing"
class="inline-flex items-center gap-2 px-4 py-2.5 bg-primary text-white text-sm font-medium rounded-lg hover:bg-primary-hover transition-all disabled:opacity-50 disabled:cursor-not-allowed"
>
<svg v-if="processing" class="animate-spin h-4 w-4" fill="none" viewBox="0 0 24 24">
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4" />
<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" />
</svg>
<DashboardIcon v-else name="check" size="4" />
{{ processing ? 'Сохранение...' : 'Создать страницу' }}
</button>
</div>
</form>
</div>
</div>
</div>
</template>
<script>
import DashboardIcon from '../Components/DashboardIcon.vue';
import FlashMessages from '../Components/shared/FlashMessages.vue';
import ContentBuilder from '../Components/ContentBuilder/ContentBuilder.vue';
export default {
name: 'PagesCreate',
components: {
DashboardIcon,
FlashMessages,
ContentBuilder
},
props: {
subSections: {
type: Array,
required: true
}
},
data() {
return {
activeTab: 'main',
form: {
title: '',
slug: '',
sub_section_id: '',
code: '200',
searchable: true,
icon: 'heroicon-o-academic-cap',
content: [],
settings: {
hide_page_sub_section_links: false,
hide_page_navigate_links: false,
hide_breadcrumbs: false,
form: {
id: '',
title: '',
description: '',
button: ''
}
}
},
errors: {},
processing: false
}
},
mounted() {
this.SET_DOCUMENT_TITLE('Создание страницы');
},
methods: {
generateSlug() {
if (!this.form.slug) {
this.form.slug = this.GENERATE_SLUG(this.form.title);
}
},
submit() {
this.processing = true;
this.errors = {};
this.$inertia.post(route('dashboard.pages.store'), this.form, {
onFinish: () => {
this.processing = false;
},
onError: (errors) => {
this.errors = errors;
}
});
}
}
}
</script>
+397
View File
@@ -0,0 +1,397 @@
<template>
<div class="min-h-screen bg-background-2">
<!-- Header -->
<div class="border-b border-line-2 bg-layer/50 backdrop-blur-sm sticky top-0 z-10 h-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 h-full">
<div class="flex items-center h-full gap-3">
<a
:href="route('dashboard.pages.index')"
class="p-2 text-muted-foreground-1 hover:text-foreground hover:bg-muted-hover rounded-lg transition-all"
>
<DashboardIcon name="arrow-left" size="5" />
</a>
<div class="flex items-center gap-3">
<div class="w-10 h-10 rounded-lg bg-primary/10 flex items-center justify-center">
<DashboardIcon name="pencil-square" size="5" class="text-primary" />
</div>
<div>
<h1 class="text-lg font-medium text-foreground">Редактирование страницы</h1>
<p class="text-xs text-muted-foreground-1">{{ page.title }}</p>
</div>
</div>
</div>
</div>
</div>
<!-- Main Content -->
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-6">
<!-- Flash Messages -->
<FlashMessages />
<!-- Form Card -->
<div class="bg-layer border border-layer-line rounded-lg shadow-xs">
<!-- Tabs Navigation -->
<div class="border-b border-line-2">
<nav class="flex -mb-px">
<button
@click="activeTab = 'main'"
class="px-6 py-4 text-sm font-medium border-b-2 transition-all"
:class="activeTab === 'main' ? 'border-primary text-primary' : 'border-transparent text-muted-foreground-1 hover:text-foreground hover:border-line-2'"
>
<div class="flex items-center gap-2">
<DashboardIcon name="information-circle" size="4" />
Основная информация
</div>
</button>
<button
@click="activeTab = 'content'"
class="px-6 py-4 text-sm font-medium border-b-2 transition-all"
:class="activeTab === 'content' ? 'border-primary text-primary' : 'border-transparent text-muted-foreground-1 hover:text-foreground hover:border-line-2'"
>
<div class="flex items-center gap-2">
<DashboardIcon name="document-text" size="4" />
Содержание
</div>
</button>
<button
@click="activeTab = 'settings'"
class="px-6 py-4 text-sm font-medium border-b-2 transition-all"
:class="activeTab === 'settings' ? 'border-primary text-primary' : 'border-transparent text-muted-foreground-1 hover:text-foreground hover:border-line-2'"
>
<div class="flex items-center gap-2">
<DashboardIcon name="cog-6-tooth" size="4" />
Дополнительные настройки
</div>
</button>
</nav>
</div>
<form @submit.prevent="submit" class="p-6">
<!-- Tab: Main Info -->
<div v-show="activeTab === 'main'" class="space-y-6">
<!-- Title -->
<div>
<label for="title" class="block text-sm font-medium text-foreground mb-2">
Заголовок страницы <span class="text-rose-500">*</span>
</label>
<input
id="title"
v-model="form.title"
type="text"
@input="generateSlug"
:class="[
'w-full px-4 py-2.5 bg-surface border rounded-lg text-sm text-foreground placeholder-muted-foreground-2 focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all',
errors.title ? 'border-rose-500' : 'border-layer-line focus:border-primary'
]"
/>
<p v-if="errors.title" class="mt-1.5 text-xs text-rose-500">{{ errors.title }}</p>
</div>
<!-- Slug -->
<div>
<label for="slug" class="block text-sm font-medium text-foreground mb-2">
URL-адрес страницы <span class="text-rose-500">*</span>
</label>
<input
id="slug"
v-model="form.slug"
type="text"
:class="[
'w-full px-4 py-2.5 bg-surface border rounded-lg text-sm text-foreground focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all',
errors.slug ? 'border-rose-500' : 'border-layer-line focus:border-primary'
]"
/>
<p v-if="errors.slug" class="mt-1.5 text-xs text-rose-500">{{ errors.slug }}</p>
</div>
<!-- Path (read-only) -->
<div>
<label for="path" class="block text-sm font-medium text-foreground mb-2">
Путь страницы
</label>
<input
id="path"
v-model="form.path"
type="text"
readonly
class="w-full px-4 py-2.5 bg-muted border border-layer-line rounded-lg text-sm text-muted-foreground-1 cursor-not-allowed"
/>
<p class="mt-1.5 text-xs text-muted-foreground-1">
Генерируется автоматически на основе подраздела
</p>
</div>
<!-- SubSection -->
<div>
<label for="sub_section_id" class="block text-sm font-medium text-foreground mb-2">
Родительский подраздел
</label>
<select
id="sub_section_id"
v-model="form.sub_section_id"
:class="[
'w-full px-4 py-2.5 bg-surface border rounded-lg text-sm text-foreground focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all',
errors.sub_section_id ? 'border-rose-500' : 'border-layer-line focus:border-primary'
]"
>
<option value="">Без подраздела</option>
<option v-for="subSection in subSections" :key="subSection.id" :value="subSection.id">
{{ subSection.title }}
</option>
</select>
<p v-if="errors.sub_section_id" class="mt-1.5 text-xs text-rose-500">{{ errors.sub_section_id }}</p>
</div>
<!-- Code -->
<div>
<label for="code" class="block text-sm font-medium text-foreground mb-2">
HTTP статус страницы <span class="text-rose-500">*</span>
</label>
<select
id="code"
v-model="form.code"
:class="[
'w-full px-4 py-2.5 bg-surface border rounded-lg text-sm text-foreground focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all',
errors.code ? 'border-rose-500' : 'border-layer-line focus:border-primary'
]"
>
<option value="200">Обычная страница (200 OK)</option>
<option value="404">Страница не найдена (404 Not Found)</option>
<option value="500">Технические работы (500 Server Error)</option>
</select>
<p v-if="errors.code" class="mt-1.5 text-xs text-rose-500">{{ errors.code }}</p>
</div>
<!-- Searchable -->
<div class="flex items-center gap-3">
<input
id="searchable"
v-model="form.searchable"
type="checkbox"
class="h-4 w-4 rounded border-layer-line text-primary focus:ring-primary"
/>
<label for="searchable" class="text-sm font-medium text-foreground">
Индексировать в поиске
</label>
</div>
</div>
<!-- Tab: Content -->
<div v-show="activeTab === 'content'" class="space-y-6">
<ContentBuilder
v-model="form.content"
label="Содержание страницы"
/>
</div>
<!-- Tab: Settings -->
<div v-show="activeTab === 'settings'" class="space-y-6">
<!-- Display Settings -->
<div class="border border-layer-line rounded-lg">
<div class="px-4 py-3 border-b border-line-2 bg-surface/50">
<h3 class="text-sm font-medium text-foreground">Отображение элементов</h3>
<p class="text-xs text-muted-foreground-1 mt-0.5">Управление видимостью элементов на странице</p>
</div>
<div class="p-4 space-y-4">
<div class="flex items-center gap-3">
<input
id="hide_sub_section_links"
v-model="form.settings.hide_page_sub_section_links"
type="checkbox"
class="h-4 w-4 rounded border-layer-line text-primary focus:ring-primary"
/>
<label for="hide_sub_section_links" class="text-sm text-foreground">
Скрыть боковую панель с ссылками на страницы раздела
</label>
</div>
<div class="flex items-center gap-3">
<input
id="hide_page_navigate_links"
v-model="form.settings.hide_page_navigate_links"
type="checkbox"
class="h-4 w-4 rounded border-layer-line text-primary focus:ring-primary"
/>
<label for="hide_page_navigate_links" class="text-sm text-foreground">
Скрыть навигацию по странице
</label>
</div>
<div class="flex items-center gap-3">
<input
id="hide_breadcrumbs"
v-model="form.settings.hide_breadcrumbs"
type="checkbox"
class="h-4 w-4 rounded border-layer-line text-primary focus:ring-primary"
/>
<label for="hide_breadcrumbs" class="text-sm text-foreground">
Скрыть хлебные крошки
</label>
</div>
</div>
</div>
<!-- Floating Form Settings -->
<div class="border border-layer-line rounded-lg">
<div class="px-4 py-3 border-b border-line-2 bg-surface/50">
<h3 class="text-sm font-medium text-foreground">Плавающая форма на странице</h3>
<p class="text-xs text-muted-foreground-1 mt-0.5">Управление плавающей формой на странице</p>
</div>
<div class="p-4 space-y-4">
<div>
<label for="form_id" class="block text-sm font-medium text-foreground mb-2">
Прикрепить форму для страницы
</label>
<input
id="form_id"
v-model="form.settings.form.id"
type="text"
placeholder="ID формы"
class="w-full px-4 py-2.5 bg-surface border border-layer-line rounded-lg text-sm text-foreground placeholder-muted-foreground-2 focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all"
/>
</div>
<div>
<label for="form_title" class="block text-sm font-medium text-foreground mb-2">
Заголовок плавающего окна
</label>
<input
id="form_title"
v-model="form.settings.form.title"
type="text"
placeholder="Заголовок"
class="w-full px-4 py-2.5 bg-surface border border-layer-line rounded-lg text-sm text-foreground placeholder-muted-foreground-2 focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all"
/>
</div>
<div>
<label for="form_description" class="block text-sm font-medium text-foreground mb-2">
Описание плавающего окна
</label>
<input
id="form_description"
v-model="form.settings.form.description"
type="text"
placeholder="Описание"
class="w-full px-4 py-2.5 bg-surface border border-layer-line rounded-lg text-sm text-foreground placeholder-muted-foreground-2 focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all"
/>
</div>
<div>
<label for="form_button" class="block text-sm font-medium text-foreground mb-2">
Текст кнопки
</label>
<input
id="form_button"
v-model="form.settings.form.button"
type="text"
placeholder="Текст кнопки"
class="w-full px-4 py-2.5 bg-surface border border-layer-line rounded-lg text-sm text-foreground placeholder-muted-foreground-2 focus:outline-none focus:ring-2 focus:ring-primary/20 transition-all"
/>
</div>
</div>
</div>
</div>
<!-- Submit Button -->
<div class="flex items-center justify-end gap-3 mt-8 pt-6 border-t border-line-2">
<a
:href="route('dashboard.pages.index')"
class="inline-flex items-center gap-2 px-4 py-2.5 bg-surface border border-layer-line text-foreground text-sm font-medium rounded-lg hover:bg-muted-hover transition-all"
>
Отмена
</a>
<button
type="submit"
:disabled="processing"
class="inline-flex items-center gap-2 px-4 py-2.5 bg-primary text-white text-sm font-medium rounded-lg hover:bg-primary-hover transition-all disabled:opacity-50 disabled:cursor-not-allowed"
>
<svg v-if="processing" class="animate-spin h-4 w-4" fill="none" viewBox="0 0 24 24">
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4" />
<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" />
</svg>
<DashboardIcon v-else name="check" size="4" />
{{ processing ? 'Сохранение...' : 'Сохранить' }}
</button>
</div>
</form>
</div>
</div>
</div>
</template>
<script>
import DashboardIcon from '../Components/DashboardIcon.vue';
import FlashMessages from '../Components/shared/FlashMessages.vue';
import ContentBuilder from '../Components/ContentBuilder/ContentBuilder.vue';
export default {
name: 'PagesEdit',
components: {
DashboardIcon,
FlashMessages,
ContentBuilder
},
props: {
page: {
type: Object,
required: true
},
subSections: {
type: Array,
required: true
}
},
data() {
return {
activeTab: 'main',
form: {
title: this.page.title,
slug: this.page.slug,
path: this.page.path,
sub_section_id: this.page.sub_section_id || '',
code: this.page.code || '200',
searchable: this.page.searchable === 1 || this.page.searchable === true || this.page.searchable === '1',
icon: this.page.icon || 'heroicon-o-academic-cap',
content: this.page.content || [],
settings: {
hide_page_sub_section_links: this.page.settings?.hide_page_sub_section_links || false,
hide_page_navigate_links: this.page.settings?.hide_page_navigate_links || false,
hide_breadcrumbs: this.page.settings?.hide_breadcrumbs || false,
form: {
id: this.page.settings?.form?.id || '',
title: this.page.settings?.form?.title || '',
description: this.page.settings?.form?.description || '',
button: this.page.settings?.form?.button || ''
}
}
},
errors: {},
processing: false
}
},
mounted() {
this.SET_DOCUMENT_TITLE(`Редактирование: ${this.page.title}`);
},
methods: {
generateSlug() {
if (!this.form.slug || this.form.slug === this.page.slug) {
this.form.slug = this.GENERATE_SLUG(this.form.title);
}
},
submit() {
this.processing = true;
this.errors = {};
this.$inertia.put(route('dashboard.pages.update', this.page.id), this.form, {
onFinish: () => {
this.processing = false;
},
onError: (errors) => {
this.errors = errors;
}
});
}
}
}
</script>
@@ -0,0 +1,275 @@
<template>
<DashboardLayout>
<template #header-icon>
<DashboardIcon name="document-text" size="5" class="text-primary" />
</template>
<template #header-title>Страницы</template>
<template #header-subtitle>Управление страницами сайта</template>
<template #header-actions>
<a
:href="route('dashboard.pages.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="tabQuery"
label="Тип страниц"
placeholder="Все страницы"
@change="filterByTab"
>
<option value="is_created">Созданные страницы</option>
<option value="is_registered">Зарезервированные страницы</option>
<option value="is_url">Внешние ссылки</option>
</SelectFilter>
<SelectFilter
v-model="subSectionQuery"
label="Подраздел"
placeholder="Все подразделы"
@change="filterBySubSection"
>
<option v-for="subSection in subSections" :key="subSection.id" :value="subSection.id">
{{ subSection.title }}
</option>
</SelectFilter>
</DataFilters>
<!-- Table Card -->
<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-surface/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">{{ pages.total }}</span>
</span>
<span class="text-xs text-muted-foreground-1 px-2 py-0.5 bg-primary/10 text-primary rounded-full">
{{ pages.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-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="page in pages.data"
:key="page.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">
{{ page.title }}
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<code class="text-xs bg-muted px-2 py-1 rounded text-foreground">
{{ page.path }}
</code>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="text-sm text-foreground">
{{ page.section?.title || '—' }}
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span :class="getCodeBadgeClass(page.code)">
{{ page.code }}
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-foreground">{{ FORMAT_DATE(page.created_at, 'full') }}</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.pages.edit', page.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="confirmDeletePage(page)"
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="pages.data.length === 0"
:columns="6"
title="Страницы не найдены"
description="Создайте первую страницу или измените параметры поиска"
:action-url="route('dashboard.pages.create')"
action-text="Создать страницу"
icon-path="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"
/>
</tbody>
</table>
</div>
<!-- Pagination -->
<Pagination :data="pages" />
</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: 'PagesIndex',
components: {
DashboardLayout,
DashboardIcon,
FlashMessages,
DataFilters,
SearchInput,
SelectFilter,
EmptyState,
Pagination
},
props: {
pages: {
type: Object,
required: true
},
subSections: {
type: Array,
required: true
},
filters: {
type: Object,
default: () => ({
search: '',
tab: 'is_created',
sub_section_id: ''
})
}
},
data() {
return {
searchQuery: this.filters?.search || '',
tabQuery: this.filters?.tab || 'is_created',
subSectionQuery: this.filters?.sub_section_id || ''
}
},
mounted() {
this.SET_DOCUMENT_TITLE('Страницы');
},
methods: {
getCodeBadgeClass(code) {
const classes = {
'200': 'inline-flex items-center px-2.5 py-1 rounded-md text-xs font-medium bg-success/10 text-success border border-success/20',
'404': 'inline-flex items-center px-2.5 py-1 rounded-md text-xs font-medium bg-warning/10 text-warning border border-warning/20',
'500': 'inline-flex items-center px-2.5 py-1 rounded-md text-xs font-medium bg-danger/10 text-danger border border-danger/20'
};
return classes[code] || classes['200'];
},
confirmDeletePage(page) {
this.CONFIRM_AND_DELETE(page, 'dashboard.pages.destroy', {
message: `Удалить страницу "${page.title}"?`
});
},
search() {
this.INERTIA_FILTER('dashboard.pages.index', {
search: this.searchQuery,
tab: this.tabQuery,
sub_section_id: this.subSectionQuery
});
},
filterByTab() {
this.search();
},
filterBySubSection() {
this.search();
},
resetFilters() {
this.RESET_FILTERS(
['searchQuery', 'tabQuery', 'subSectionQuery'],
'dashboard.pages.index'
);
},
refreshPage() {
this.INERTIA_FILTER('dashboard.pages.index', {
search: this.searchQuery,
tab: this.tabQuery,
sub_section_id: this.subSectionQuery
});
}
}
}
</script>