| Current Path : /home/jeromecohp/www/plugins/system/yooessentials/modules/core/app/fields/ |
| Current File : /home/jeromecohp/www/plugins/system/yooessentials/modules/core/app/fields/ButtonPanelModalField.vue |
<template>
<button
v-bind="attributes"
:class="{
'yo-button-medium': attributes.class === 'yo-form-medium',
}"
class="uk-button yo-button-panel uk-width-1-1"
type="button"
@click.prevent="open"
>
{{ $t(field.text || 'Open') }}
</button>
</template>
<script>
import ButtonPanel from './ButtonPanelField.vue';
import { ModalForm } from '../components';
export default {
extends: ButtonPanel,
inject: {
Sidebar: { default: {} },
},
methods: {
open() {
return this.$modal(ModalForm, {
panel: this.getPanel(),
values: this.values,
})
.show()
.then((values) => {
if (!values) {
return;
}
for (const key in values) {
this.$set(this.values, key, values[key]);
}
});
},
},
};
</script>