基于Svelte3.x自定义多功能svPopup弹出框组件(组件式+函数式)
前几天有分享一个svelte自定义tabbar+navbar组件,今天继续带来svelte自定义弹窗组件。
svPopup 一款基于 Svelte.js 开发的手机端弹框组件。汇集了msg、info、toast、alert、dialog、actionsheet等多种类型弹窗。支持 25+ 参数自定义搭配组合、组件式+函数式两种调用方式。
由于svelte框架比较新,一些相关的项目案例及自定义组件例子比较少,只能看官方语法文档,并结合之前开发的一些vue3弹窗插件,最后实现了如上图所示的svelte自定义弹框。
◆ 引入组件
在需要使用弹窗功能的页面引入Popup组件。
import Popup, {svPopup} from '$lib/Popup'
其中 Popup 是组件式调用, svPopup 是函数式调用。
- 组件式写法
<Popup bind:open={isVisibleDialog} xclose xposition="top" title="标题信息" content="这里是内容信息" btns={[ {text: '确认', style: 'color:#f60;', click: () => isVisibleDialog=false}, ]} on:open={handleOpen} on:close={handleClose} > <svelte:fragment slot="content"><h3>自定义插槽显示插槽内容!!!h3>svelte:fragment> Popup>
- 函数式写法
let el = svPopup({ title: '标题信息', content: '这里是内容信息
', xclose: true, xposition: 'top', shadeClose: false, btns: [ {text: '取消', click: () => { el.$set({open: false}) }}, {text: '确认', style: 'color:#f90;', click: () => handleOK}, ], onOpen: () => {}, onClose: () => {} })
一些简单的弹窗效果可以使用函数式调用,一些复杂的交互功能可以使用组件式自定义slot来实现功能。
<Popup bind:open={showMsg} anim="fadeIn" content="msg提示框测试(3s后窗口关闭)" shadeClose="false" time="3" /> <Popup bind:open={showMulityBtns} anim="fadeIn" title="温馨提示" zIndex="6666" content="是否检查软件更新并下载最新的更新?通过移动网络下载可能产生额外的费用。如果可能,通过WLAN网络下载。" btns={[ {text: '稍后提示', style: 'color:#2196f3;', click: () => null}, {text: '取消', style: 'color:#a9a9a9;', click: () => showMulityBtns=false}, {text: '立即更新', style: 'color:#00e0a1;', click: handleInfo}, ]} />
<Popup bind:open={showFooter} anim="footer" type="footer" shadeClose="false" zIndex="1001" content="确定删除该条数据吗?删除后可在7天之内恢复数据,超过7天后数据就无法恢复啦!" btns={[ {text: '恢复', style: 'color:#00e0a1;', click: handleInfo}, {text: '删除', style: 'color:#ee0a24;', click: () => null}, {text: '取消', style: 'color:#a9a9a9;', click: () => showFooter=false}, ]} /> <Popup bind:open={showActionSheet} anim="footer" type="actionsheet" zIndex="2020" content="弹窗内容,告知当前状态、信息和解决方法,描述文字尽量控制在三行内" btns={[ {text: '拍照', style: 'color:#09f;', disabled: true, click: handleInfo}, {text: '从手机相册选择', style: 'color:#00e0a1;', click: handleInfo}, {text: '保存图片', style: 'color:#e63d23;', click: () => null}, {text: '取消', click: () => showActionSheet=false}, ]} />
<Popup bind:open={showIos1} type="ios" shadeClose="false" title="标题内容" zIndex="1990" content="弹窗内容,告知当前状态、信息和解决方法,描述文字尽量控制在三行内" btns={[ {text: '知道了', click: () => showIos1=false}, {text: '确定', style: 'color:#00e0a1;', click: handleInfo}, ]} > Popup> <Popup bind:open={showAndroid1} type="android" shadeClose="false" xclose title="标题内容" zIndex="2000" content="弹窗内容,告知当前状态、信息和解决方法,描述文字尽量控制在三行内" btns={[ {text: '知道了', click: () => showAndroid1=false}, {text: '确定', style: 'color:#00e0a1;', click: handleInfo}, ]} > Popup>
function handleInfo(e) { console.log(e) console.log('通过函数方式调用弹窗...') let el = svPopup({ title: '标题', content: ``, btns: [ { text: '取消', click: () => { // 关闭弹窗 el.$set({open: false}) } }, { text: '确认', style: 'color:#09f;', click: () => { svPopup({ type: 'toast', icon: 'loading', content: '加载中...', opacity: .2, time: 2 }) } }, ] }) }函数式调用:svPopup({...})
◆ Svelte弹窗编码实现
- 支持如下参数自定义配置
- 弹窗模板语法
<div class="sv__popup" class:opened class:sv__popup-closed={closeCls} id={id} style="z-index: {zIndex}" bind:this={el}> {#if bool(shade)}<div class="vui__overlay" on:click={shadeClicked} style:opacity>div>{/if} <div class="vui__wrap"> <div class="vui__wrap-section"> <div class="vui__wrap-child {type&&'popupui__'+type} anim-{anim} {position}" class:round style="{popupStyle}"> {#if title}<div class="vui__wrap-tit">{@html title}div>{/if} {#if icon&&type=='toast'}<div class="vui__toast-icon">{@html toastIcon[icon]}div>{/if} {#if $$slots.content} <div class="vui__wrap-cnt"><slot name="content" />div> {:else} {#if content}<div class="vui__wrap-cnt">{@html content}div>{/if} {/if} <slot /> {#if btns} <div class="vui__wrap-btns"> {#each btns as btn,index} <span class="btn"style="{btn.style}" on:click={e => btnClicked(e, index)}>{@html btn.text}span> {/each} div> {/if} {#if xclose}<span class="vui__xclose {xposition}" style="color: {xcolor}" on:click={hide}>span>{/if} div> div> div> div>
/** * @Desc svelte自定义多功能弹框组件 * @Time andy by 2022/3/15 * @About Q:282310962 wx:xy190310 */
Svelte官网有介绍,可以通过 new Component 来实现挂载组件到body上。
const component = new Component(options)
import App from './App.svelte'; const app = new App({ target: document.body, props: { // assuming App.svelte contains something like // `export let answer`: answer: 42 } });
https://svelte.dev/docs#run-time-client-side-component-api
import Popup from './Popup.svelte' let uuid = function() { return 'svpopup-' + Math.floor(Math.random() * 10000) } export function svPopup(options = {}) { options.id = uuid() const mountNode = document.createElement('div') document.body.appendChild(mountNode) const app = new Popup({ target: mountNode, props: { ...options, open: true, // 传入函数移除指令 remove() { document.body.removeChild(mountNode) } } }) return app } export default Popup
通过如上写法,就可以导出一个 Popup 组件及 svPopup 函数调用。
OK,以上就是svelte实现自定义弹窗组件的一些分享,希望对大家有所帮助~~