欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Vue自定义toast组件的实例代码

程序员文章站 2023-11-20 15:27:46
写了两三天,终于把toast组件写出来了。不敢说是最好的设计,希望有更好思路的朋友可以在评论区给我意见!_(:з」∠)_ 第一步:写toast.vue,将样式之类的先定下...

写了两三天,终于把toast组件写出来了。不敢说是最好的设计,希望有更好思路的朋友可以在评论区给我意见!_(:з」∠)_

第一步:写toast.vue,将样式之类的先定下来

<template>
 <div v-show="showtoast" class="toast" :class="position">
 <div class="toast_container" v-if="type=='success'">
  <div><i class="iconfont icon-check icon"></i></div>
  <div class="msg_container">{{message}}</div>
 </div>
 <div class="toast_container" v-else-if="type=='wrong'">
  <div><i class="iconfont icon-warning-circle icon"></i></div>
  <div class="msg_container">{{message}}</div>
 </div>
 <div class="toast_container" v-else-if="type=='loading'">
  <div><loading10></loading10></div>
  <div class="msg_container">{{message}}</div>
 </div>
</div>
</template>
<script>
import loading10 from '../loading/spiner'
export default{
 props:{
  message:string,
  type:{
   validator: function (value) {
   // 值必须是这些字符串中的一个
   return ['success', 'wrong', 'loading'].indexof(value) !== -1
  },
   default:'success'
  },
  duration:{
   type:number,
   default:3000
  },
   position:{
   type:string,
   default:'middle'
  }
 },
 components:{
  loading10
 },
 data(){
  return{
   showtoast:false
  }
 }
}
</script>
<style scoped>
.toast{
 width:100%;
}
.toast_container{
 background: rgba(0, 0, 0, 0.7);
 border-radius: 8px;
 color:#fff;
 margin-left:88px;
 margin-right:88px;
 text-align:center;
 padding-top:15px;
 padding-bottom: 15px; 
}
.top{
 position:absolute;
 top:10%;
}
.middle{
 position:absolute;
 top:40%;
}
.bottom{
 position:absolute;
 top:70%;
}
.msg_container{
 margin-top:8px;
 margin-left:15px;
 margin-right:15px;
 line-height: 22px;
 font-size: 16px;
 word-wrap: break-word;
}
.icon{
 font-size:30px;
}
</style>

Vue自定义toast组件的实例代码Vue自定义toast组件的实例代码Vue自定义toast组件的实例代码

一共三种样式,成功(success),失败(wrong),加载中(loading);

一共三种位置,上(top),中(middle),下(bottom);

所有涉及的图案出自阿里的iconfont 手机淘宝图标库。

加载中动画是自己写的蹩脚的加载组件(emmm,就不放出来污染大家眼睛了,需要的可以评论区知会一声_(:з」∠)_)

第二步:写index.js ,完成toast组件的实例化

import vue from 'vue'
import toast from './toast'
let singletoast=true;
let queue=[];
function createinstance(){
 // 返回一个扩展实例构造器
 if(!queue.length||!singletoast){
 const toastconstructor = vue.extend(toast);
 // 构造一个实例
 const toastdom = new toastconstructor({
 el: document.createelement('div'),
 });
 // 把实例化的 toast.vue 添加到 body 里
 document.body.appendchild(toastdom.$el);
 queue.push(toastdom);
 singletoast=true;
 return toastdom;
 }
};
// 注册为全局组件的函数
function toast(options= {}) {
 const toastdom = createinstance();
 toastdom.message =typeof options === 'string' ? options : options.message;
 toastdom.type = options.type || 'success';
 toastdom.duration = options.duration || 3000;
 toastdom.position = options.position || 'middle';
 if(!toastdom.message){
 toastdom.showtoast =singletoast= false;
 }else{
 toastdom.showtoast=true;
 settimeout(() => {toastdom.showtoast =singletoast= false} ,toastdom.duration);
 }
}
// 将组件注册到 vue 的 原型链里去,
// 这样就可以在所有 vue 的实例里面使用 this.$toast()
// vue.prototype.$toast = showtoast
vue.prototype.$toast = toast;
export default toast

设置singletoast和queue的目的在于:确保同一时期界面上只有一个toast,不能同时出现多个toast。

由于toast会初始化,因此为了避免在任何操作之前界面上就出现一个toast,用if语句判断:

如果没有传入的message,则不显示toast(这样可以使得初始化的toast不显示)

否则显示,并且过一定时间消失,只有singletoast为false,说明此刻界面上没有toast,才能再新建一个toast实例(因为此时if判断内queue.length 不为0【初始化的toast组件本身占了一个位置】,而singletoast为false,因此可以创建)

第三步:使用

在main.js 添加如下代码:

import toast from './components/toast/index'
vue.use(toast)

创建需要调用的vue文件:

<template>
 <div>
  <input type="button" value="显示弹窗" @click="showtoast">
 </div>
</template>
 <script>
 export default {
  methods: {
   showtoast () {
    this.$toast({message:'加载中',type:'loading',position:'bottom',
     duration:'2000'});
    // this.$toast('成功提示');
   }
  }
 }
 </script>

Vue自定义toast组件的实例代码

可以看到一共两种方式,可以以对象方式传入参数,也可以只传入字符串,其他采用默认设置。

总结

以上所述是小编给大家介绍的svue自定义toast组件的实例代码,希望对大家有所帮助