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

Vue.js仿微信聊天窗口展示组件功能

程序员文章站 2022-11-25 10:00:11
源码:https://github.com/doterlin/vue-wxchat 演示地址:https://doterlin.github.io/vue-wxchat/...

源码:https://github.com/doterlin/vue-wxchat

演示地址:https://doterlin.github.io/vue-wxchat/

Vue.js仿微信聊天窗口展示组件功能

运行

# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build

介绍

  • 支持文本和图片的展示(后续将支持对语音类的展示)。
  • 支持滚动加载数据,其中滚动加载依赖我另外一个组件scrollloader.vue(《vue.js上下滚动加载组件》)。
  • 支持qq表情,为了能使用表情请全局注册指令v-emotion,我在main.js做了实现;代码如下:
function toemotion(text, isnogif){
 var list = ['微笑', '撇嘴', '色', '发呆', '得意', '流泪', '害羞', '闭嘴', '睡', '大哭', '尴尬', '发怒', '调皮', '呲牙', '惊讶', '难过', '酷', '冷汗', '抓狂', '吐', '偷笑', '愉快', '白眼', '傲慢', '饥饿', '困', '惊恐', '流汗', '憨笑', '大兵', '奋斗', '咒骂', '疑问', '嘘', '晕', '折磨', '衰', '骷髅', '敲打', '再见', '擦汗', '抠鼻', '鼓掌', '糗大了', '坏笑', '左哼哼', '右哼哼', '哈欠', '鄙视', '委屈', '快哭了', '阴险', '亲亲', '吓', '可怜', '菜刀', '西瓜', '啤酒', '篮球', '乒乓', '咖啡', '饭', '猪头', '玫瑰', '凋谢', '示爱', '爱心', '心碎', '蛋糕', '闪电', '炸弹', '刀', '足球', '瓢虫', '便便', '月亮', '太阳', '礼物', '拥抱', '强', '弱', '握手', '胜利', '抱拳', '勾引', '拳头', '差劲', '爱你', 'no', 'ok', '爱情', '飞吻', '跳跳', '发抖', '怄火', '转圈', '磕头', '回头', '跳绳', '挥手', '激动', '街舞', '献吻', '左太极', '右太极', '嘿哈', '捂脸', '奸笑', '机智', '皱眉', '耶', '红包', '鸡'];
 if (!text) {
  return text;
 }
 text = text.replace(/\[[\u4e00-\u9fa5]{1,3}\]/gi, function(word){
  var newword = word.replace(/\[|\]/gi,'');
  var index = list.indexof(newword);
  var backgroundpositionx = -index * 24
  var imghtml = '';
  if(index<0){
   return word;
  }
  if (isnogif) {
   if(index>104){
    return word;
   }
   imghtml = `<i class="static-emotion" style="background:url(https://res.wx.qq.com/mpres/htmledition/images/icon/emotion/default218877.gif) ${backgroundpositionx}px 0;"></i>`
  } else {
   var path = index>104 ? '/img' : 'https://res.wx.qq.com/mpres/htmledition/images/icon';
   imghtml = `![](${path}/emotion/${index}.gif)`
  }
  return imghtml;
 });
 return text;
}
vue.directive('emotion', {
 bind: function (el, binding) {
  el.innerhtml = toemotion(binding.value)
 }
});

如何使用?

参数已经在组件中做了说明,并在app.vue中做了演示:

参数和说明:

微信聊天可视化组件

依赖scrollloader组件, 依赖指令v-emotion(实现请查看main.js)

参数:

width 组件宽度,默认450

wrapbg 外层父元素背景颜色,默认#efefef

maxheight 展示窗口最高高度, 默认900

contactavatarurl 好友头像url

owneravatarurl 微信主人头像url

ownernickname 微信主人昵称

getupperdata (必需)当滚动到上方时加载数据的方法,返回值要为promise对象,resolve的结构同data

getunderdata (必需)当滚动到下方时加载数据的方法,返回值同上

data (必需)传入初始化数据, 结构如下:

[{
 direction: 2, //为2表示微信主人发出的消息,1表示联系人
 id: 1, //根据这个来排序消息
 type: 1, //1为文本,2为图片
 content: '你好!![呲牙]', //当type为1时这里是文本消息,当type2为2时这里要存放图片地址;后续会支持语音的显示
 ctime: new date().tolocalestring() //显示当前消息的发送时间
},
{
 direction: 1,
 id: 2,
 type: 1,
 content: '你也好。[害羞]',
 ctime: new date().tolocalestring()
}]

完整的使用实例

效果:https://doterlin.github.io/vue-wxchat/

代码:

//主文件,对wxchat的用法做示例
<template>
<wxchat 
 :data="wxchatdata"
 :showshade="false"
 contactnickname="简叔"
 :getupperdata="getupperdata"
 :getunderdata="getunderdata"
 :owneravatarurl="owneravatarurl"
 :contactavatarurl="contactavatarurl"
 :width="420">
</wxchat>
</template>
<script>
import wxchat from './components/wxchat.vue'
export default {
 name: 'app',
 data () {
 return {
  uppertimes: 0,
  undertimes: 0,
  upperid: 0,
  underid: 6,
  owneravatarurl: './src/assets/avatar1.png',
  contactavatarurl: './src/assets/avatar2.png',
  wxchatdata: [{
  direction: 2,
  id: 1,
  type: 1,
  content: '你好!![呲牙]',
  ctime: new date().tolocalestring()
  },
  {
  direction: 1,
  id: 2,
  type: 1,
  content: '你也好。[害羞]',
  ctime: new date().tolocalestring()
  },
  {
  direction: 2,
  id: 3,
  type: 1,
  content: '这是我的简历头像:',
  ctime: new date().tolocalestring()
  },
  {
  direction: 2,
  id: 4,
  type: 2,
  content: './src/assets/wyz.jpg',
  ctime: new date().tolocalestring()
  },
  {
  direction: 1,
  id: 5,
  type: 1,
  content: '你开心就好。[微笑]',
  ctime: new date().tolocalestring()
  }]
 }
 },
 components:{wxchat},
 methods:{
 //向上滚动加载数据
 getupperdata(){
  var me = this;
  // 这里为模拟异步加载数据
  // 实际上你可能要这么写:
  // return axios.get('xxx').then(function(result){
  //  return result; //result的格式需要类似下面resolve里面的数组
  // })
  return new promise(function(resolve){
  settimeout(function(){
   //模拟加载完毕
   if(me.uppertimes>3){
   return resolve([]);
   }
   //加载数据
   resolve([{
    direction: 2,
    id: me.upperid-1,
    type: 1,
    content: '向上滚动加载第 ' + me.uppertimes +' 条!',
    ctime: new date().tolocalestring()
   },
   {
    direction: 1,
    id: me.upperid-2,
    type: 1,
    content: '向上滚动加载第 ' + me.uppertimes +' 条!',
    ctime: new date().tolocalestring()
   }]
   )
  }, 1000);
  me.upperid= me.upperid+2;
  me.uppertimes++;
  })
 },
 getunderdata(){
  var me = this;
  //意义同getupperdata()
  return new promise(function(resolve){
  settimeout(function(){
   //模拟加载完毕
   if(me.undertimes>3){
   return resolve([]);
   }
   //加载数据
   resolve(
   [{
    direction: 1,
    id: me.underid+1,
    type: 1,
    content: '向下滚动加载第 ' + me.undertimes +' 条!',
    ctime: new date().tolocalestring()
   },
   {
    direction: 2,
    id: me.underid+2,
    type: 1,
    content: '向下滚动加载第 ' + me.undertimes +' 条!',
    ctime: new date().tolocalestring()
   }]
   )
  }, 1000);
  me.underid = me.underid+2;
  me.undertimes++;
  })
 }
 }
}
</script>
<style>
*{
 margin: 0;
 padding: 0;
}
#app {
 font-family: 'avenir', helvetica, arial, sans-serif;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 text-align: center;
 color: #2c3e50;
 margin-top: 60px;
}
h1, h2 {
 font-weight: normal;
}
ul {
 list-style-type: none;
 padding: 0;
}
li {
 display: inline-block;
}
</style>

欢迎 start:

https://github.com/doterlin/vue-wxchat

总结

以上所述是小编给大家介绍的vue.js仿微信聊天窗口展示组件功能,希望对大家有所帮助