From b50cd43921873bf42b8b492ce1e6ef2d8cc19924 Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 9 Feb 2021 19:41:34 +0800 Subject: [PATCH] types(Popup): use tsx (#8110) * types(Popup): use tsx * types: add PopupCloseIconPosition --- src/popup/{index.js => index.tsx} | 42 ++++++++++++++++--------------- src/vue-shim.d.ts | 3 +++ 2 files changed, 25 insertions(+), 20 deletions(-) rename src/popup/{index.js => index.tsx} (89%) diff --git a/src/popup/index.js b/src/popup/index.tsx similarity index 89% rename from src/popup/index.js rename to src/popup/index.tsx index 13252d049..e025c31cb 100644 --- a/src/popup/index.js +++ b/src/popup/index.tsx @@ -4,9 +4,12 @@ import { watch, Teleport, computed, + PropType, onMounted, Transition, onActivated, + CSSProperties, + TeleportProps, onDeactivated, onBeforeUnmount, } from 'vue'; @@ -22,16 +25,15 @@ import { useLazyRender } from '../composables/use-lazy-render'; import Icon from '../icon'; import Overlay from '../overlay'; +export type PopupCloseIconPosition = + | 'top-left' + | 'top-right' + | 'botttom-left' + | 'bottom-right'; + const [createComponent, bem] = createNamespace('popup'); -const context = { - zIndex: 2000, - lockCount: 0, - stack: [], - find(vm) { - return this.stack.filter((item) => item.vm === vm)[0]; - }, -}; +let globalZIndex = 2000; export const popupSharedProps = { // whether to show popup @@ -41,7 +43,7 @@ export const popupSharedProps = { // transition duration duration: [Number, String], // teleport - teleport: [String, Object], + teleport: [String, Object] as PropType, // overlay custom style overlayStyle: Object, // overlay custom class name @@ -89,7 +91,7 @@ export default createComponent({ default: 'cross', }, closeIconPosition: { - type: String, + type: String as PropType, default: 'top-right', }, }, @@ -106,10 +108,10 @@ export default createComponent({ ], setup(props, { emit, attrs, slots }) { - let opened; - let shouldReopen; + let opened: boolean; + let shouldReopen: boolean; - const zIndex = ref(); + const zIndex = ref(); const popupRef = ref(); const [lockScroll, unlockScroll] = useLockScroll( @@ -120,7 +122,7 @@ export default createComponent({ const lazyRender = useLazyRender(() => props.show || !props.lazyRender); const style = computed(() => { - const style = { + const style: CSSProperties = { zIndex: zIndex.value, }; @@ -138,12 +140,12 @@ export default createComponent({ const open = () => { if (!opened) { if (props.zIndex !== undefined) { - context.zIndex = props.zIndex; + globalZIndex = +props.zIndex; } opened = true; lockScroll(); - zIndex.value = ++context.zIndex; + zIndex.value = ++globalZIndex; } }; @@ -155,7 +157,7 @@ export default createComponent({ } }; - const onClickOverlay = (event) => { + const onClickOverlay = (event: MouseEvent) => { emit('click-overlay', event); if (props.closeOnClickOverlay) { @@ -178,7 +180,7 @@ export default createComponent({ } }; - const onClickCloseIcon = (event) => { + const onClickCloseIcon = (event: MouseEvent) => { emit('click-close-icon', event); close(); }; @@ -188,7 +190,7 @@ export default createComponent({ return ( emit('click', event); + const onClick = (event: MouseEvent) => emit('click', event); const onOpened = () => emit('opened'); const onClosed = () => emit('closed'); diff --git a/src/vue-shim.d.ts b/src/vue-shim.d.ts index fbfd84f4f..c384c0dc8 100644 --- a/src/vue-shim.d.ts +++ b/src/vue-shim.d.ts @@ -6,6 +6,9 @@ import 'vue'; // https://github.com/vuejs/vue-next/issues/3029 declare module 'vue' { interface ComponentCustomProps { + role?: string; + tabindex?: number; onClick?: (event: MouseEvent) => void; + onClosed?: () => void; } }