scinote-web/app/javascript/vue/forms/table.vue
andrej-scinote 705fc4da14 Merge pull request #8093 from andrej-scinote/aj_SCI_11354
Fix reordering of the form fields [SCI-11354]
2024-12-10 15:59:39 +01:00

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>