framework7-vue
Version:
Build full featured iOS & Android apps using Framework7 & Vue
163 lines • 4.75 kB
JavaScript
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-popup',
render,
props: {
tabletFullscreen: Boolean,
opened: Boolean,
animate: {
type: Boolean,
default: undefined
},
backdrop: {
type: Boolean,
default: undefined
},
backdropEl: {
type: [String, Object],
default: undefined
},
closeByBackdropClick: {
type: Boolean,
default: undefined
},
closeOnEscape: {
type: Boolean,
default: undefined
},
swipeToClose: {
type: [Boolean, String],
default: false
},
swipeHandler: {
type: [String, Object],
default: undefined
},
push: Boolean,
containerEl: {
type: [String, Object],
default: undefined
},
...colorProps
},
emits: ['popup:swipestart', 'popup:swipemove', 'popup:swipeend', 'popup:swipeclose', 'popup:open', 'popup:opened', 'popup:close', 'popup:closed', 'update:opened'],
setup(props, {
emit
}) {
const f7Popup = ref(null);
// eslint-disable-next-line
let isOpened = props.opened;
let isClosing = false;
const elRef = ref(null);
const onSwipeStart = instance => {
emit('popup:swipestart', instance);
};
const onSwipeMove = instance => {
emit('popup:swipemove', instance);
};
const onSwipeEnd = instance => {
emit('popup:swipeend', instance);
};
const onSwipeClose = instance => {
emit('popup:swipeclose', instance);
};
const onOpen = instance => {
isOpened = true;
isClosing = false;
emit('popup:open', instance);
emit('update:opened', true);
};
const onOpened = instance => {
emit('popup:opened', instance);
};
const onClose = instance => {
isOpened = false;
isClosing = true;
emit('popup:close', instance);
};
const onClosed = instance => {
isClosing = false;
emit('popup:closed', instance);
emit('update:opened', false);
};
watch(() => props.opened, value => {
if (!f7Popup.value) return;
if (value === f7Popup.value.opened) {
return;
}
if (value) {
f7Popup.value.open();
} else {
f7Popup.value.close();
}
});
onMounted(() => {
if (!elRef.value) return;
const popupParams = {
el: elRef.value,
on: {
swipeStart: onSwipeStart,
swipeMove: onSwipeMove,
swipeEnd: onSwipeEnd,
swipeClose: onSwipeClose,
open: onOpen,
opened: onOpened,
close: onClose,
closed: onClosed
}
};
const {
closeByBackdropClick,
closeOnEscape,
animate,
backdrop,
backdropEl,
swipeToClose,
swipeHandler,
containerEl
} = props;
if (typeof closeByBackdropClick !== 'undefined') popupParams.closeByBackdropClick = closeByBackdropClick;
if (typeof closeOnEscape !== 'undefined') popupParams.closeOnEscape = closeOnEscape;
if (typeof animate !== 'undefined') popupParams.animate = animate;
if (typeof backdrop !== 'undefined') popupParams.backdrop = backdrop;
if (typeof backdropEl !== 'undefined') popupParams.backdropEl = backdropEl;
if (typeof swipeToClose !== 'undefined') popupParams.swipeToClose = swipeToClose;
if (typeof swipeHandler !== 'undefined') popupParams.swipeHandler = swipeHandler;
if (typeof containerEl !== 'undefined') popupParams.containerEl = containerEl;
f7ready(() => {
f7Popup.value = f7.popup.create(popupParams);
if (props.opened) {
f7Popup.value.open(false, true);
}
});
});
onBeforeUnmount(() => {
if (f7Popup.value) {
f7Popup.value.destroy();
}
f7Popup.value = null;
});
const classes = computed(() => classNames('popup', {
'popup-tablet-fullscreen': props.tabletFullscreen,
'popup-push': props.push
}, modalStateClasses({
isOpened,
isClosing
}), colorClasses(props)));
return {
elRef,
classes
};
}
};