什么是Message?

类似于elementUI中的$messageBox,给用户进行界面提示
image.png

功能:

  • 固定顶部显示,有三种类型:成功,错误,警告。
  • 显示消息提示时需要动画从上滑入。
  • 组件使用的方式不够便利,封装成工具函数方式。

步骤:

一: 封装组件:

  1. 1. 创建一个全局组件,比如: src/components/xtx-message.vue
  1. <template>
  2. <div class="xtx-message" :style="style[type]">
  3. <!-- 上面绑定的是样式 -->
  4. <!-- 不同提示图标会变 -->
  5. <i class="iconfont" :class="[style[type].icon]"></i>
  6. <span class="text">{{text}}</span>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'XtxMessage',
  12. props: {
  13. text: {
  14. type: String,
  15. default: ''
  16. },
  17. type: {
  18. type: String,
  19. // warn 警告 error 错误 success 成功
  20. default: 'warn'
  21. }
  22. },
  23. setup () {
  24. // 定义一个对象,包含三种情况的样式,对象key就是类型字符串
  25. const style = {
  26. warn: {
  27. icon: 'icon-warning',
  28. color: '#E6A23C',
  29. backgroundColor: 'rgb(253, 246, 236)',
  30. borderColor: 'rgb(250, 236, 216)'
  31. },
  32. error: {
  33. icon: 'icon-shanchu',
  34. color: '#F56C6C',
  35. backgroundColor: 'rgb(254, 240, 240)',
  36. borderColor: 'rgb(253, 226, 226)'
  37. },
  38. success: {
  39. icon: 'icon-queren2',
  40. color: '#67C23A',
  41. backgroundColor: 'rgb(240, 249, 235)',
  42. borderColor: 'rgb(225, 243, 216)'
  43. }
  44. }
  45. return { style }
  46. }
  47. }
  48. </script>
  49. <style scoped lang="less">
  50. .xtx-message {
  51. width: 300px;
  52. height: 50px;
  53. position: fixed;
  54. z-index: 9999;
  55. left: 50%;
  56. margin-left: -150px;
  57. top: 25px;
  58. line-height: 50px;
  59. padding: 0 25px;
  60. border: 1px solid #e4e4e4;
  61. background: #f5f5f5;
  62. color: #999;
  63. border-radius: 4px;
  64. i {
  65. margin-right: 4px;
  66. vertical-align: middle;
  67. }
  68. .text {
  69. vertical-align: middle;
  70. }
  71. }
  72. </style>
  1. 使用组件:
    1. <XtxMessage text="手机号或密码错误" type="error" />
    使用不同的type(error, warn, success)会有不同的效果

二: 控制显示与隐藏

  1. 从不可见 ---> 可见 核心就是定义一个显示与隐藏的初始值,v-show绑定
  1. <template>
  2. <div class='xtx-message' :style="style" v-show="visible">
  3. <!-- 上面绑定的是样式 -->
  4. <!-- 不同提示图标会变 -->
  5. <i class="iconfont" :class="[style[type].icon]"></i>
  6. <span class="text">{{text}}</span>
  7. </div>
  8. </template>
  9. <script>
  10. import { ref onMounted } from 'vue'
  11. export default {
  12. name: 'XtxMessage',
  13. // 省略其他...
  14. setup () {
  15. // 定义一个对象,包含三种情况的样式,对象key就是类型字符串
  16. const style = {
  17. // 省略其他...
  18. }
  19. // 定义一个数据控制显示隐藏,默认是隐藏,组件挂载完毕显示
  20. const visible = ref(false)
  21. onMounted(()=>{
  22. visible.value = true
  23. })
  24. return { style, visible }
  25. }
  26. }
  27. </script>

三: 动画效果 - 使用transition组件

  1. vue框架中, 是通过 [transition组件](https://v3.cn.vuejs.org/guide/transitions-overview.html#%E5%9F%BA%E4%BA%8E-class-%E7%9A%84%E5%8A%A8%E7%94%BB%E5%92%8C%E8%BF%87%E6%B8%A1) ,来实现动画的效果, 本质上还是c3动画 <br /> ![image.png](https://cdn.nlark.com/yuque/0/2021/png/21762447/1627478023567-c6a4b379-b288-4f3d-8a0a-c6b3352b864e.png#clientId=ud2a8ecc1-8304-4&from=paste&height=178&id=u887467ba&margin=%5Bobject%20Object%5D&name=image.png&originHeight=356&originWidth=910&originalType=binary&ratio=1&size=67358&status=done&style=none&taskId=ucaa6d6c2-0255-44e7-94b6-fd19096dede&width=455)
  1. <template>
  2. <!-- 目标:它从无到有是有动画过渡效果
  3. <transition name="down">: vue会元素可见和不可见的关键节点 自动补充 特殊的css类名
  4. -->
  5. + <Transition name="down">
  6. <div class='xtx-message' :style="style" v-show="visible">
  7. <!-- 上面绑定的是样式 -->
  8. <!-- 不同提示图标会变 -->
  9. <i class="iconfont" :class="[style[type].icon]"></i>
  10. <span class="text">{{text}}</span>
  11. </div>
  12. + </Transition>
  13. </template>

css样式

  1. <style scoped lang='less'>
  2. .down-enter-from {
  3. transform: translate3d(0,-75px,0);
  4. opacity: 0;
  5. }
  6. .down-enter-active {transition: all 0.5s;}
  7. .down-enter-to { transform: none; opacity: 1;}
  8. // transform: none; opacity: 1;
  9. // 省略其他....
  10. </style>

四: 把Message 封装成函数调用

  1. 我们希望通过函数形式动态调用
  2. Message({ type: 'error', text: '登录失败' })

基本步骤:

  1. 1. 导入组件

——- 显示 ———
2. 根据组件创建虚拟节点. const vnode = createVNode(XtxMessage, { type, text })
3. 准备一个DOM容器
4. 把虚拟节点渲染DOM容器中. render(vnode, div)
——-隐藏DOM——-
5. 开启定时器,移出DOM容器内容 render(null, div)

src/components/Message.js

  1. // 导入.vue组件,导出一个函数,方便我们直接以函数的方式来调用组件
  2. // 1. 导入组件
  3. // ----- 显示 ------
  4. // 2. 根据组件创建虚拟节点. const vnode = createVNode(XtxMessage, { type, text })
  5. // 3. 准备一个DOM容器
  6. // 4. 把虚拟节点渲染DOM容器中. render(vnode, div)
  7. // -----隐藏DOM-----
  8. // 5. 开启定时器,移出DOM容器内容 render(null, div)
  9. import { createVNode, render } from 'vue'
  10. import XtxMessage from './xtx-message.vue'
  11. // 2. 准备一个DOM容器
  12. const div = document.createElement('div')
  13. div.setAttribute('class', 'xtx-message-wrapper')
  14. document.body.appendChild(div)
  15. let time = null
  16. export default ({ text, type }) => {
  17. // 3. 创建虚拟dom (组件对象, props)
  18. const vnode = createVNode(XtxMessage, { text, type })
  19. // 4. 把虚拟dom渲染到div
  20. render(vnode, div)
  21. // 5. 设置定时器清空
  22. clearTimeout(time)
  23. time = setTimeout(() => {
  24. render(null, div)
  25. }, 2000)
  26. console.log('message.js')
  27. }

使用:

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

五: vue3中全局挂载

  1. 在main.js中

    1. import Message from '@/components/Message'
    2. app.config.globalProperties.$message = Message
  2. 使用

    选项式api (vue2) ```javascript created() { this.$message({ type: ‘error’, text: ‘登录失败’ }) }

  1. 组合式api(vue3)
  2. ```javascript
  3. import { getCurrentInstance } from 'vue'
  4. export default {
  5. setup () {
  6. const internalInstance = getCurrentInstance()
  7. internalInstance.appContext.config.globalProperties.$message({ type: 'success', text: 'xxx' })
  8. }
  9. }

小结:
由于vue3中组合式api内没有this,所以使用全局挂载的方法其实也不方便,所以,在用Message还是先import,再使用。