mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
94 lines
3.6 KiB
Vue
94 lines
3.6 KiB
Vue
<template>
|
|
<div>
|
|
<div class="card shadow-card">
|
|
<DatatableWrapper @init="isLoading = false" api="/api/admin/pages" :paginator="false" :columns="columns" class="overflow-x-auto">
|
|
<template slot-scope="{ row }">
|
|
<tr class="border-b dark:border-opacity-5 border-light border-dashed whitespace-nowrap">
|
|
<td class="py-5 md:pr-1 pr-3">
|
|
<router-link :to="{name: 'PageEdit', params: {slug: row.data.attributes.slug}}" class="text-sm font-bold cursor-pointer" tag="div">
|
|
{{ row.data.attributes.title }}
|
|
</router-link>
|
|
</td>
|
|
<td class="md:px-1 px-3">
|
|
<span class="text-sm font-bold">
|
|
{{ row.data.attributes.slug }}
|
|
</span>
|
|
</td>
|
|
<td class="md:px-1 px-3">
|
|
<span class="text-sm font-bold">
|
|
<SwitchInput @input="$updateText(`/admin/pages/${row.data.id}`, 'visibility', row.data.attributes.visibility)" v-model="row.data.attributes.visibility" :state="row.data.attributes.visibility" class="switch"/>
|
|
</span>
|
|
</td>
|
|
<td class="md:pl-1 pl-3 text-right">
|
|
<div class="flex space-x-2 w-full justify-end">
|
|
<router-link class="flex items-center justify-center w-8 h-8 rounded-md dark:bg-2x-dark-foreground hover:bg-green-100 bg-light-background transition-colors" :to="{name: 'PageEdit', params: {slug: row.data.attributes.slug}}">
|
|
<Edit2Icon size="15" class="opacity-75" />
|
|
</router-link>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</template>
|
|
</DatatableWrapper>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import DatatableWrapper from '/resources/js/components/Others/Tables/DatatableWrapper'
|
|
import MobileActionButton from '/resources/js/components/FilesView/MobileActionButton'
|
|
import EmptyPageContent from '/resources/js/components/Others/EmptyPageContent'
|
|
import SwitchInput from '/resources/js/components/Others/Forms/SwitchInput'
|
|
import MobileHeader from '/resources/js/components/Mobile/MobileHeader'
|
|
import SectionTitle from '/resources/js/components/Others/SectionTitle'
|
|
import ButtonBase from '/resources/js/components/FilesView/ButtonBase'
|
|
import {Trash2Icon, Edit2Icon} from "vue-feather-icons";
|
|
import PageHeader from '/resources/js/components/Others/PageHeader'
|
|
import ColorLabel from '/resources/js/components/Others/ColorLabel'
|
|
import Spinner from '/resources/js/components/FilesView/Spinner'
|
|
import axios from 'axios'
|
|
|
|
export default {
|
|
name: 'Pages',
|
|
components: {
|
|
MobileActionButton,
|
|
EmptyPageContent,
|
|
DatatableWrapper,
|
|
SectionTitle,
|
|
MobileHeader,
|
|
SwitchInput,
|
|
Trash2Icon,
|
|
PageHeader,
|
|
ButtonBase,
|
|
ColorLabel,
|
|
Edit2Icon,
|
|
Spinner,
|
|
},
|
|
data() {
|
|
return {
|
|
isLoading: true,
|
|
columns: [
|
|
{
|
|
label: this.$t('admin_pages.table.page'),
|
|
field: 'title',
|
|
sortable: true
|
|
},
|
|
{
|
|
label: this.$t('admin_pages.table.slug'),
|
|
field: 'slug',
|
|
sortable: true
|
|
},
|
|
{
|
|
label: this.$t('admin_pages.table.status'),
|
|
field: 'visibility',
|
|
sortable: true
|
|
},
|
|
{
|
|
label: this.$t('admin_page_user.table.action'),
|
|
sortable: false
|
|
},
|
|
],
|
|
}
|
|
},
|
|
}
|
|
</script>
|