函数调用的方式封装消息提示组件

函数调用的方式封装消息提示组件

1. 准备好消息提示组件样式

message.vue

<template>
  <Transition name="down">
    <div class="xtx-message" :style="style[type]" v-if="flag">
      <!-- 上面绑定的是样式 -->
      <i class="iconfont" :class="[style[type].icon]"></i>
      <!-- 不同提示图标会变 -->
      <span class="text">{{text}}</span>
    </div>
  </Transition>
</template>
<script>
import { onMounted, ref, Transition } from 'vue'
export default {
  name: 'XtxMessage',
  components: {
    Transition
  },
  props: {
    text: {
      type: String,
      default: ''
    },
    type: {
      type: String,
      // warn 警告  error 错误  success 成功
      default: 'warn'
    }
  },
  setup () {
    // 定义一个对象,包含三种情况的样式,对象key就是类型字符串
    const style = {
      warn: {
        icon: 'icon-warning',
        color: '#E6A23C',
        backgroundColor: 'rgb(253, 246, 236)',
        borderColor: 'rgb(250, 236, 216)'
      },
      error: {
        icon: 'icon-shanchu',
        color: '#F56C6C',
        backgroundColor: 'rgb(254, 240, 240)',
        borderColor: 'rgb(253, 226, 226)'
      },
      success: {
        icon: 'icon-queren2',
        color: '#67C23A',
        backgroundColor: 'rgb(240, 249, 235)',
        borderColor: 'rgb(225, 243, 216)'
      }
    }

    const flag = ref(false)

    onMounted(() => {
      flag.value = true
    })
    return { style, flag }
  }
}
</script>

<style scoped lang="less">
.xtx-message {
  width: 300px;
  height: 50px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  margin-left: -150px;
  top: 25px;
  line-height: 50px;
  padding: 0 25px;
  border: 1px solid #e4e4e4;
  background: #f5f5f5;
  color: #999;
  border-radius: 4px;
  i {
    margin-right: 4px;
    vertical-align: middle;
  }
  .text {
    vertical-align: middle;
  }
}

.down {
  &-enter {
    // 进入前 往上移动75px 并且透明度为零
    &-from {
      transform: translate3d(0, -75px, 0);
      opacity: 0;
    }
    // 进入中 对所有的可以支持过滤效果的样式都应用过渡效果 整个过渡时长是0.5s
    &-active {
      transition: all 0.5s;
    }
    // 进入后
    &-to {
      transform: none;
      opacity: 1;
    }
  }
}
</style>

2.需要前置知识

  1. createVNode 生成虚拟dom节点 createVNode
  2. render 把虚拟dom节点渲染到真实的dom中

Message.js

// 实现使用函数调用xtx-message组件的逻辑
import { createVNode, render } from 'vue'
import XtxMessage from './index.vue'

// 准备dom容器
const div = document.createElement('div')
div.setAttribute('class', 'xtx-message-container')
document.body.appendChild(div)
// 定时器标识
let timer = null

// 导出使用方法
export default ({ type, text }) => {
 // 实现:根据xtx-message.vue渲染消息提示
 // 1. 导入组件
 // 2. 根据组件创建虚拟节点
 const vnode = createVNode(XtxMessage, { type, text })
 // 3. 准备一个DOM容器
 // 4. 把虚拟节点渲染DOM容器中
 render(vnode, div)
 // 5. 开启定时,移出DOM容器内容
 clearTimeout(timer)
 timer = setTimeout(() => {
   render(null, div)
 }, 2000)
}

在需要地方引入使用

import Message from '@/components/Message'
Message({ type: 'error', text: '登录失败' })

验收效果
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值