mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-09 21:36:44 +08:00
113 lines
2.7 KiB
Vue
113 lines
2.7 KiB
Vue
<template>
|
|
<div class="h-full">
|
|
<DataTable :columnDefs="columnDefs"
|
|
:tableId="'FormsTable'"
|
|
:dataUrl="dataSource"
|
|
:reloadingTable="reloadingTable"
|
|
:toolbarActions="toolbarActions"
|
|
:actionsUrl="actionsUrl"
|
|
@tableReloaded="reloadingTable = false"
|
|
@create="createForm"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
/* global HelperModule */
|
|
|
|
import axios from '../../packs/custom_axios.js';
|
|
|
|
import DataTable from '../shared/datatable/table.vue';
|
|
import DeleteModal from '../shared/confirmation_modal.vue';
|
|
import NameRenderer from './renderers/name.vue';
|
|
|
|
export default {
|
|
name: 'FormsTable',
|
|
components: {
|
|
DataTable,
|
|
DeleteModal,
|
|
NameRenderer
|
|
},
|
|
props: {
|
|
dataSource: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
actionsUrl: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
createUrl: {
|
|
type: String
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
reloadingTable: false,
|
|
columnDefs: [
|
|
{
|
|
field: 'name',
|
|
headerName: this.i18n.t('forms.index.table.name'),
|
|
cellRenderer: 'NameRenderer',
|
|
sortable: true
|
|
}, {
|
|
field: 'code',
|
|
headerName: this.i18n.t('forms.index.table.code'),
|
|
sortable: true
|
|
}, {
|
|
field: 'versions',
|
|
headerName: this.i18n.t('forms.index.table.versions'),
|
|
sortable: true
|
|
}, {
|
|
field: 'used_in_protocols',
|
|
headerName: this.i18n.t('forms.index.table.used_in_protocols'),
|
|
sortable: true
|
|
}, {
|
|
field: 'access',
|
|
headerName: this.i18n.t('forms.index.table.access'),
|
|
sortable: true
|
|
}, {
|
|
field: 'published_by',
|
|
headerName: this.i18n.t('forms.index.table.published_by'),
|
|
sortable: true
|
|
}, {
|
|
field: 'published_on',
|
|
headerName: this.i18n.t('forms.index.table.published_on'),
|
|
sortable: true
|
|
}, {
|
|
field: 'updated_at',
|
|
headerName: this.i18n.t('forms.index.table.updated_on'),
|
|
sortable: true
|
|
}
|
|
]
|
|
};
|
|
},
|
|
computed: {
|
|
toolbarActions() {
|
|
const left = [];
|
|
if (this.createUrl) {
|
|
left.push({
|
|
name: 'create',
|
|
icon: 'sn-icon sn-icon-new-task',
|
|
label: this.i18n.t('forms.index.toolbar.new'),
|
|
type: 'emit',
|
|
path: this.createUrl,
|
|
buttonStyle: 'btn btn-primary'
|
|
});
|
|
}
|
|
return {
|
|
left,
|
|
right: []
|
|
};
|
|
}
|
|
},
|
|
methods: {
|
|
createForm(action) {
|
|
axios.post(action.path).then((response) => {
|
|
window.location.href = response.data.data.attributes.urls.show;
|
|
});
|
|
}
|
|
}
|
|
};
|
|
|
|
</script>
|