2023-06-27 16:23:18 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
// import { Head, Link, useForm, usePage } from '@inertiajs/inertia-vue3';
|
|
|
|
import { Head, usePage } from '@inertiajs/vue3';
|
|
|
|
import { ComputedRef } from 'vue';
|
2023-07-17 17:13:30 +00:00
|
|
|
import { mdiSquareEditOutline, mdiTrashCan, mdiAlertBoxOutline, mdiLockOpen } from '@mdi/js';
|
2023-06-27 16:23:18 +00:00
|
|
|
import { computed } from 'vue';
|
|
|
|
import LayoutAuthenticated from '@/Layouts/LayoutAuthenticated.vue';
|
|
|
|
import SectionMain from '@/Components/SectionMain.vue';
|
|
|
|
import BaseButton from '@/Components/BaseButton.vue';
|
|
|
|
import CardBox from '@/Components/CardBox.vue';
|
|
|
|
import BaseButtons from '@/Components/BaseButtons.vue';
|
|
|
|
import NotificationBar from '@/Components/NotificationBar.vue';
|
|
|
|
import Pagination from '@/Components/Admin/Pagination.vue';
|
|
|
|
import { stardust } from '@eidellev/adonis-stardust/client';
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
datasets: {
|
|
|
|
type: Object,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
|
|
|
filters: {
|
|
|
|
type: Object,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
|
|
|
can: {
|
|
|
|
type: Object,
|
|
|
|
default: () => ({}),
|
|
|
|
},
|
|
|
|
// user: {
|
|
|
|
// type: Object,
|
|
|
|
// default: () => ({}),
|
|
|
|
// }
|
|
|
|
});
|
|
|
|
|
|
|
|
const flash: ComputedRef<any> = computed(() => {
|
|
|
|
// let test = usePage();
|
|
|
|
// console.log(test);
|
|
|
|
return usePage().props.flash;
|
|
|
|
});
|
|
|
|
|
2023-11-30 12:40:32 +00:00
|
|
|
const validStates = ['inprogress', 'rejected_editor'];
|
2023-06-27 16:23:18 +00:00
|
|
|
|
2023-11-30 12:40:32 +00:00
|
|
|
const getRowClass = (dataset) => {
|
|
|
|
// (props.options ? 'select' : props.type)
|
|
|
|
let rowclass = '';
|
|
|
|
if (dataset.server_state == 'inprogress') {
|
|
|
|
rowclass = 'inprogress';
|
|
|
|
} else if (dataset.server_state == 'released') {
|
|
|
|
rowclass = 'released';
|
|
|
|
} else if (dataset.server_state == 'editor_accepted' || dataset.server_state == 'ejected_reviewer') {
|
|
|
|
rowclass = 'editor_accepted';
|
|
|
|
} else if (dataset.server_state == 'approved') {
|
|
|
|
rowclass = 'approved';
|
|
|
|
} else if (dataset.server_state == 'eviewed') {
|
|
|
|
rowclass = 'eviewed';
|
|
|
|
} else if (dataset.server_state == 'ejected_editor') {
|
|
|
|
rowclass = 'ejected_editor';
|
|
|
|
} else {
|
|
|
|
rowclass = '';
|
|
|
|
}
|
|
|
|
return rowclass;
|
|
|
|
};
|
2023-06-27 16:23:18 +00:00
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<LayoutAuthenticated>
|
2023-09-05 16:18:42 +00:00
|
|
|
|
2023-11-30 12:40:32 +00:00
|
|
|
<Head title="Dataset List" />
|
2023-06-27 16:23:18 +00:00
|
|
|
<SectionMain>
|
2023-07-17 17:13:30 +00:00
|
|
|
<!-- <FormValidationErrors v-bind:errors="errors" /> -->
|
2023-06-27 16:23:18 +00:00
|
|
|
<NotificationBar v-if="flash.message" color="success" :icon="mdiAlertBoxOutline">
|
|
|
|
{{ flash.message }}
|
|
|
|
</NotificationBar>
|
2023-07-17 17:13:30 +00:00
|
|
|
<NotificationBar v-if="flash.warning" color="warning" :icon="mdiAlertBoxOutline">
|
|
|
|
{{ flash.warning }}
|
|
|
|
</NotificationBar>
|
2023-06-27 16:23:18 +00:00
|
|
|
|
|
|
|
<!-- table -->
|
|
|
|
<CardBox class="mb-6" has-table>
|
2023-11-30 12:40:32 +00:00
|
|
|
<table class="pure-table">
|
2023-06-27 16:23:18 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
<!-- <Sort label="Dataset Title" attribute="title" :search="form.search" /> -->
|
|
|
|
Dataset Title
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
<!-- <Sort label="Email" attribute="email" :search="form.search" /> -->
|
2023-09-05 16:18:42 +00:00
|
|
|
<th>Server State</th>
|
2023-06-27 16:23:18 +00:00
|
|
|
</th>
|
2023-09-05 16:18:42 +00:00
|
|
|
<th>Date of last modification</th>
|
2023-06-27 16:23:18 +00:00
|
|
|
<th v-if="can.edit || can.delete">Actions</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
2023-11-30 12:40:32 +00:00
|
|
|
<tr v-for="dataset in props.datasets.data" :key="dataset.id" :class="getRowClass(dataset)">
|
2023-06-27 16:23:18 +00:00
|
|
|
<td data-label="Login">
|
|
|
|
<!-- <Link v-bind:href="stardust.route('user.show', [user.id])"
|
|
|
|
class="no-underline hover:underline text-cyan-600 dark:text-cyan-400">
|
|
|
|
{{ user.login }}
|
|
|
|
</Link> -->
|
|
|
|
<!-- {{ user.id }} -->
|
|
|
|
{{ dataset.main_title }}
|
2023-09-05 16:18:42 +00:00
|
|
|
</td>
|
2023-06-27 16:23:18 +00:00
|
|
|
<td>
|
|
|
|
{{ dataset.server_state }}
|
2023-09-05 16:18:42 +00:00
|
|
|
</td>
|
|
|
|
|
2023-06-27 16:23:18 +00:00
|
|
|
<td data-label="Created" class="lg:w-1 whitespace-nowrap">
|
2023-11-30 12:40:32 +00:00
|
|
|
<small class="text-gray-500 dark:text-slate-400" :title="dataset.server_date_modified">
|
|
|
|
{{ dataset.server_date_modified }}
|
|
|
|
</small>
|
2023-06-27 16:23:18 +00:00
|
|
|
</td>
|
2023-11-30 12:40:32 +00:00
|
|
|
<td class="before:hidden lg:w-1 whitespace-nowrap">
|
|
|
|
<BaseButtons v-if="validStates.includes(dataset.server_state)"
|
|
|
|
type="justify-start lg:justify-end" no-wrap>
|
2023-09-05 16:18:42 +00:00
|
|
|
<!-- release created dataset -->
|
|
|
|
<BaseButton v-if="can.edit"
|
|
|
|
:route-name="stardust.route('dataset.release', [dataset.id])" color="info"
|
|
|
|
:icon="mdiLockOpen" :label="'Release'" small />
|
2023-11-30 12:40:32 +00:00
|
|
|
<BaseButton v-if="can.edit" :route-name="stardust.route('dataset.edit', [dataset.id])"
|
2023-09-05 16:18:42 +00:00
|
|
|
color="info" :icon="mdiSquareEditOutline" :label="'Edit'" small />
|
|
|
|
<BaseButton v-if="can.delete" color="danger"
|
|
|
|
:route-name="stardust.route('dataset.delete', [dataset.id])" :icon="mdiTrashCan"
|
|
|
|
small />
|
2023-06-27 16:23:18 +00:00
|
|
|
</BaseButtons>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<div class="py-4">
|
|
|
|
<Pagination v-bind:data="datasets.meta" />
|
|
|
|
<!-- <ul>
|
|
|
|
<li>
|
|
|
|
<a href="{{ users.page == 1 ? '#' : '?page=' + (users.page - 1) }}">Previous</a>
|
|
|
|
</li>
|
|
|
|
@each(page in ???)
|
|
|
|
<li>
|
|
|
|
<a href="?page={{ page }}">{{ page }}</a>
|
|
|
|
</li>
|
|
|
|
@endeach
|
|
|
|
<li>
|
|
|
|
<a href="{{ users.lastPage == users.page ? '#' : '?page=' + (users.page + 1) }}">Next</a>
|
|
|
|
</li>
|
|
|
|
</ul> -->
|
|
|
|
</div>
|
|
|
|
</CardBox>
|
|
|
|
</SectionMain>
|
|
|
|
</LayoutAuthenticated>
|
|
|
|
</template>
|
2023-11-30 12:40:32 +00:00
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.pure-table tr.inprogress {
|
|
|
|
padding: 0.8em;
|
|
|
|
background-color: paleturquoise;
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pure-table tr.released {
|
|
|
|
background-color: greenyellow;
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pure-table tr.editor_accepted {
|
|
|
|
padding: 0.8em;
|
|
|
|
background-color: lightblue;
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pure-table tr.rejected_reviewer {
|
|
|
|
padding: 0.8em;
|
|
|
|
background-color: orange;
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pure-table tr.rejected_editor {
|
|
|
|
/* padding: 0.8em; */
|
|
|
|
background-color: orange;
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pure-table tr.reviewed {
|
|
|
|
/* padding: 0.8em; */
|
|
|
|
background-color: yellow;
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pure-table tr.approved {
|
|
|
|
/* padding: 0.8em; */
|
|
|
|
background-color: rgb(86, 86, 241);
|
|
|
|
color: whitesmoke;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.pure-table tr.reviewed {
|
|
|
|
/* padding: 0.8em; */
|
|
|
|
background-color: #ffed4a;
|
|
|
|
}</style>
|