UNPKG

framework7-vue

Version:

Build full featured iOS & Android apps using Framework7 & Vue

159 lines 4.42 kB
import { renderSlot as _renderSlot, normalizeClass as _normalizeClass, openBlock as _openBlock, createElementBlock as _createElementBlock } from "vue"; function render(_ctx, _cache) { return _openBlock(), _createElementBlock("div", { ref: "elRef", class: _normalizeClass(_ctx.classes) }, [_renderSlot(_ctx.$slots, "default")], 2); } import { computed, ref, watch, onMounted, onBeforeUnmount } from 'vue'; import { classNames } from '../shared/utils.js'; import { colorClasses, colorProps } from '../shared/mixins.js'; import { f7ready, f7 } from '../shared/f7.js'; import { modalStateClasses } from '../shared/modal-state-classes.js'; export default { name: 'f7-actions', render, props: { tabletFullscreen: Boolean, opened: Boolean, animate: { type: Boolean, default: undefined }, grid: Boolean, target: { type: [String, Object], default: undefined }, convertToPopover: { type: Boolean, default: undefined }, forceToPopover: { type: Boolean, default: undefined }, backdrop: { type: Boolean, default: undefined }, backdropEl: { type: [String, Object], default: undefined }, closeByBackdropClick: { type: Boolean, default: undefined }, closeByOutsideClick: { type: Boolean, default: undefined }, closeOnEscape: { type: Boolean, default: undefined }, containerEl: { type: [String, Object], default: undefined }, ...colorProps }, emits: ['actions:open', 'actions:opened', 'actions:close', 'actions:closed', 'update:opened'], setup(props, { emit }) { // eslint-disable-next-line let f7Actions = null; // eslint-disable-next-line let isOpened = props.opened; let isClosing = false; const elRef = ref(null); const onOpen = instance => { isOpened = true; isClosing = false; emit('actions:open', instance); emit('update:opened', true); }; const onOpened = instance => { emit('actions:opened', instance); }; const onClose = instance => { isOpened = false; isClosing = true; emit('actions:close', instance); }; const onClosed = instance => { isClosing = false; emit('actions:closed', instance); emit('update:opened', false); }; watch(() => props.opened, value => { if (!f7Actions) return; if (value === f7Actions.opened) { return; } if (value) { f7Actions.open(); } else { f7Actions.close(); } }); onMounted(() => { if (!elRef.value) return; const { target, convertToPopover, forceToPopover, closeByBackdropClick, closeByOutsideClick, closeOnEscape, backdrop, backdropEl, grid, containerEl } = props; const params = { el: elRef.value, grid, on: { open: onOpen, opened: onOpened, close: onClose, closed: onClosed } }; if (typeof target !== 'undefined') params.target = target; if (typeof convertToPopover !== 'undefined') params.convertToPopover = convertToPopover; if (typeof forceToPopover !== 'undefined') params.forceToPopover = forceToPopover; if (typeof closeByBackdropClick !== 'undefined') params.closeByBackdropClick = closeByBackdropClick; if (typeof closeByOutsideClick !== 'undefined') params.closeByOutsideClick = closeByOutsideClick; if (typeof closeOnEscape !== 'undefined') params.closeOnEscape = closeOnEscape; if (typeof backdrop !== 'undefined') params.backdrop = backdrop; if (typeof backdropEl !== 'undefined') params.backdropEl = backdropEl; if (typeof containerEl !== 'undefined') params.containerEl = containerEl; f7ready(() => { f7Actions = f7.popup.create(params); if (props.opened) { f7Actions.open(false); } }); }); onBeforeUnmount(() => { if (f7Actions) { f7Actions.destroy(); } f7Actions = null; }); const classes = computed(() => classNames('actions-modal', { 'actions-grid': props.grid }, modalStateClasses({ isOpened, isClosing }), colorClasses(props))); return { elRef, classes }; } };