mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 06:35:14 +08:00
64 lines
1.4 KiB
Vue
64 lines
1.4 KiB
Vue
<template>
|
|
<div>
|
|
<MenuDropdown
|
|
:listItems="this.formattedList"
|
|
btnClasses="btn btn-light icon-btn"
|
|
:position="'right'"
|
|
:alwaysShow="true"
|
|
:btnIcon="'sn-icon sn-icon-more-hori'"
|
|
@open="loadActions"
|
|
@dtEvent="handleEvents"
|
|
></MenuDropdown>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import MenuDropdown from '../menu_dropdown.vue';
|
|
import axios from '../../../packs/custom_axios.js';
|
|
|
|
export default {
|
|
name: 'RowMenuRenderer',
|
|
props: {
|
|
params: {
|
|
required: true,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
actionsMenu: [],
|
|
};
|
|
},
|
|
components: {
|
|
MenuDropdown,
|
|
},
|
|
computed: {
|
|
formattedList() {
|
|
return this.actionsMenu.map((item) => {
|
|
const newItem = { text: item.label };
|
|
if (item.type === 'emit') {
|
|
newItem.emit = item.name;
|
|
}
|
|
if (item.type === 'link') {
|
|
newItem.url = item.path;
|
|
}
|
|
newItem.data_e2e = `e2e-BT-cardActions-${item.name}`;
|
|
newItem.params = item;
|
|
return newItem;
|
|
});
|
|
},
|
|
},
|
|
methods: {
|
|
loadActions() {
|
|
if (this.actionsMenu.length > 0) return;
|
|
axios.get(this.params.data.urls.actions)
|
|
.then((response) => {
|
|
this.actionsMenu = response.data.actions;
|
|
});
|
|
},
|
|
handleEvents(event, option) {
|
|
const dt = this.params.dtComponent;
|
|
dt.$emit(event, option.params, [this.params.data]);
|
|
},
|
|
},
|
|
};
|
|
</script>
|