| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617 |
- var app=new Vue({
- el: '#app',
- delimiters:["<{","}>"],
- data: {
- fullscreenLoading:true,
- leftTabActive:"first",
- rightTabActive:"visitorInfo",
- users:[],
- usersMap:[],
- //server:getWsBaseUrl()+"/ws_kefu?token="+localStorage.getItem("token"),
- server:getWsBaseUrl()+"/chat_server",
- socket:null,
- messageContent:"",
- currentGuest:"",
- msgList:[],
- chatTitle:"暂时未处理咨询",
- kfConfig:{
- id : "kf_1",
- name : "客服丽丽",
- avator : "",
- to_id : "",
- },
- visitor:{
- visitor_id:"",
- refer:"",
- client_ip:"",
- city:"",
- status:"",
- source_ip:"",
- created_at:"",
- },
- visitors:[],
- visitorCount:0,
- visitorCurrentPage:1,
- visitorPageSize:10,
- face:[
- "em-smile",
- "em-laughing",
- "em-blush",
- "em-smiley",
- "em-relaxed",
- "em-smirk",
- "em-heart_eyes",
- "em-kissing_heart",
- "em-kissing_closed_eyes",
- "em-flushed",
- "em-relieved",
- "em-satisfied",
- "em-grin",
- "em-wink",
- "em-stuck_out_tongue_winking_eye",
- "em-stuck_out_tongue_closed_eyes",
- "em-grinning",
- "em-kissing",
- "em-kissing_smiling_eyes",
- "em-stuck_out_tongue",
- "em-sleeping",
- "em-worried",
- "em-frowning",
- "em-anguished",
- "em-open_mouth",
- "em-grimacing",
- "em-confused",
- "em-hushed",
- "em-expressionless",
- "em-unamused",
- "em-sweat_smile",
- "em-sweat",
- "em-disappointed_relieved",
- "em-weary",
- "em-pensive",
- "em-disappointed",
- "em-confounded",
- "em-fearful",
- "em-cold_sweat",
- "em-persevere",
- "em-cry",
- "em-sob",
- "em-joy",
- "em-astonished",
- "em-scream",
- "em-tired_face",
- "em-angry",
- "em-rage",
- "em-triumph",
- "em-sleepy",
- "em-yum",
- "em-mask",
- "em-sunglasses",
- "em-dizzy_face",
- "em-imp",
- "em-smiling_imp",
- "em-neutral_face",
- "em-no_mouth",
- "em-innocent",
- "em-alien"
- ],
- },
- methods: {
- //跳转
- openUrl(url) {
- window.location.href = url;
- },
- sendKefuOnline(){
- let mes = {}
- mes.type = "kfOnline";
- mes.data = this.kfConfig;
- this.socket.send(JSON.stringify(mes));
- },
- //心跳
- ping(){
- let _this=this;
- let mes = {}
- mes.type = "ping";
- mes.data = "";
- setInterval(function () {
- if(_this.socket!=null){
- _this.socket.send(JSON.stringify(mes));
- }
- },5000)
- },
- //初始化websocket
- initConn() {
- let socket = new ReconnectingWebSocket(this.server);//创建Socket实例
- this.socket = socket
- this.socket.onmessage = this.OnMessage;
- this.socket.onopen = this.OnOpen;
- },
- OnOpen() {
- this.sendKefuOnline();
- },
- OnMessage(e) {
- const redata = JSON.parse(e.data);
- switch (redata.type){
- case "allUsers":
- this.handleOnlineUsers(redata.data);
- //this.sendKefuOnline();
- break;
- case "userOnline":
- this.addOnlineUser(redata.data);
- //发送通知
- let _this=this;
- notify(redata.data.username, {
- body: "上线了",
- icon: redata.data.avator
- }, function(notification) {
- //可直接打开通知notification相关联的tab窗口
- window.focus();
- $('#tab-first').trigger('click');
- notification.close();
- _this.talkTo(redata.data.uid,redata.data.username);
- });
- break;
- case "userOffline":
- this.removeOfflineUser(redata.data);
- //this.sendKefuOnline();
- break;
- case "notice":
- // if(!this.usersMap[redata.data.uid]){
- // this.$notify({
- // title: "通知",
- // message: "新客户访问",
- // type: 'success',
- // duration: 0,
- // });
- // }
- this.sendKefuOnline();
- break;
- }
- // if (redata.type == "notice") {
- // this.$notify({
- // title: "通知",
- // message: "新客户访问",
- // type: 'success',
- // duration: 0,
- // });
- //发送给客户我在线
- // let mes = {}
- // mes.type = "kfConnect";
- // kfConfig.guest_id=redata.data[0].uid;
- // mes.data = kfConfig;
- // this.socket.send(JSON.stringify(mes));
- //}
- if (redata.type == "message") {
- let msg = redata.data
- let content = {}
- let _this=this;
- content.avator = msg.avator;
- content.name = msg.name;
- content.content = replaceContent(msg.content);
- content.is_kefu = false;
- content.time = msg.time;
- if (msg.id == this.currentGuest) {
- this.msgList.push(content);
- }
- //发送通知
- notify(msg.name, {
- body: msg.content,
- icon: msg.avator
- }, function(notification) {
- //可直接打开通知notification相关联的tab窗口
- window.focus();
- notification.close();
- _this.talkTo(msg.id,msg.name);
- });
- for(let i=0;i<this.users.length;i++){
- if(this.users[i].uid==msg.id){
- this.$set(this.users[i],'last_message',msg.content);
- }
- }
- this.scrollBottom();
- }
- },
- //接手客户
- talkTo(guestId,name) {
- this.currentGuest = guestId;
- this.chatTitle=name+"|"+guestId+",正在处理中...";
- //发送给客户
- let mes = {}
- mes.type = "kfConnect";
- this.kfConfig.to_id=guestId;
- mes.data = this.kfConfig;
- this.socket.send(JSON.stringify(mes));
- //获取当前访客信息
- this.getVistorInfo(guestId);
- //获取当前客户消息
- this.getMesssagesByVisitorId(guestId);
- },
- //发送给客户
- chatToUser() {
- this.messageContent=this.messageContent.trim("\r\n");
- if(this.messageContent==""||this.messageContent=="\r\n"||this.currentGuest==""){
- return;
- }
- let _this=this;
- let mes = {};
- mes.type = "kefu";
- mes.content = this.messageContent;
- mes.from_id = this.kfConfig.id;
- mes.to_id = this.currentGuest;
- $.post("/message",mes,function(){
- _this.messageContent = "";
- });
- let content = {}
- content.avator = this.kfConfig.avator;
- content.name = this.kfConfig.name;
- content.content = replaceContent(this.messageContent);
- content.is_kefu = true;
- content.time = '';
- this.msgList.push(content);
- this.scrollBottom();
- },
- //处理当前在线用户列表
- addOnlineUser:function (retData) {
- var flag=false;
- retData.last_message="新访客";
- retData.status=1;
- retData.name=retData.username;
- for(let i=0;i<this.users.length;i++){
- if(this.users[i].uid==retData.uid){
- flag=true;
- }
- }
- if(!flag){
- this.users.unshift(retData);
- }
- for(let i=0;i<this.visitors.length;i++){
- if(this.visitors[i].visitor_id==retData.uid){
- this.visitors[i].status=1;
- break;
- }
- }
- },
- //处理当前在线用户列表
- removeOfflineUser:function (retData) {
- for(let i=0;i<this.users.length;i++){
- if(this.users[i].uid==retData.uid){
- this.users.splice(i,1);
- }
- }
- let vid=retData.uid;
- for(let i=0;i<this.visitors.length;i++){
- if(this.visitors[i].visitor_id==vid){
- this.visitors[i].status=0;
- break;
- }
- }
- },
- //处理当前在线用户列表
- handleOnlineUsers:function (retData) {
- if (this.currentGuest == "") {
- this.chatTitle = "连接成功,等待处理中...";
- }
- this.usersMap=[];
- for(let i=0;i<retData.length;i++){
- this.usersMap[retData[i].uid]=retData[i].username;
- retData[i].last_message="新访客";
- }
- if(this.users.length==0){
- this.users = retData;
- }
- for(let i=0;i<this.visitors.length;i++){
- let vid=this.visitors[i].visitor_id;
- if(typeof this.usersMap[vid]=="undefined"){
- this.visitors[i].status=0;
- }else{
- this.visitors[i].status=1;
- }
- }
- },
- //获取客服信息
- getKefuInfo(){
- let _this=this;
- $.ajax({
- type:"get",
- url:"/kefuinfo",
- headers:{
- "token":localStorage.getItem("token")
- },
- success: function(data) {
- if(data.code==200 && data.result!=null){
- _this.kfConfig.id=data.result.id;
- _this.kfConfig.name=data.result.name;
- _this.kfConfig.avator=data.result.avator;
- _this.initConn();
- }
- if(data.code!=200){
- _this.$message({
- message: data.msg,
- type: 'error'
- });
- }
- }
- });
- },
- //获取信息列表
- getMesssagesByVisitorId(visitorId){
- let _this=this;
- $.ajax({
- type:"get",
- url:"/messages?visitorId="+visitorId+"&kefuId="+_this.kfConfig.id,
- headers:{
- "token":localStorage.getItem("token")
- },
- success: function(data) {
- if(data.code==200 && data.result!=null){
- let msgList=data.result;
- _this.msgList=[];
- for(let i=0;i<msgList.length;i++){
- let visitorMes=msgList[i];
- let content = {}
- if(visitorMes["mes_type"]=="kefu"){
- content.is_kefu = true;
- content.avator = visitorMes["kefu_avator"];
- content.name = visitorMes["kefu_name"];
- }else{
- content.is_kefu = false;
- content.avator = visitorMes["visitor_avator"];
- content.name = visitorMes["visitor_name"];
- }
- content.content = replaceContent(visitorMes["content"]);
- content.time = visitorMes["time"];
- _this.msgList.push(content);
- _this.scrollBottom();
- }
- }
- if(data.code!=200){
- _this.$message({
- message: data.msg,
- type: 'error'
- });
- }
- }
- });
- },
- //获取客服信息
- getVistorInfo(vid){
- let _this=this;
- $.ajax({
- type:"get",
- url:"/visitor",
- data:{visitorId:vid},
- headers:{
- "token":localStorage.getItem("token")
- },
- success: function(data) {
- if(data.result!=null){
- let r=data.result;
- _this.visitor.created_at=r.created_at;
- _this.visitor.refer=r.refer;
- _this.visitor.city=r.city;
- _this.visitor.client_ip=r.client_ip;
- _this.visitor.source_ip=r.source_ip;
- _this.visitor.status=r.status==1?"在线":"离线";
- _this.visitor.visitor_id=r.visitor_id;
- }
- if(data.code!=200){
- _this.$message({
- message: data.msg,
- type: 'error'
- });
- }
- }
- });
- },
- //关闭访客
- closeVisitor(visitorId){
- let _this=this;
- $.ajax({
- type:"get",
- url:"/message_close",
- data:{visitor_id:visitorId},
- headers:{
- "token":localStorage.getItem("token")
- },
- success: function(data) {
- if(data.code!=200){
- _this.$message({
- message: data.msg,
- type: 'error'
- });
- }
- }
- });
- },
- //处理tab切换
- handleTabClick(tab, event){
- let _this=this;
- if(tab.name=="second"){
- this.getVisitorPage(1);
- }
- if(tab.name=="blackList"){
- }
- },
- //所有访客分页展示
- visitorPage(page){
- this.getVisitorPage(page);
- },
- //获取访客分页
- getVisitorPage(page){
- let _this=this;
- $.ajax({
- type:"get",
- url:"/visitors",
- data:{page:page},
- headers:{
- "token":localStorage.getItem("token")
- },
- success: function(data) {
- if(data.result.list!=null){
- _this.visitors=data.result.list;
- _this.visitorCount=data.result.count;
- _this.visitorPageSize=data.result.pagesize;
- }
- if(data.code!=200){
- _this.$message({
- message: data.msg,
- type: 'error'
- });
- }
- }
- });
- },
- //滚到底部
- scrollBottom(){
- this.$nextTick(() => {
- $('.chatBox').scrollTop($(".chatBox")[0].scrollHeight);
- });
- },
- //jquery
- initJquery(){
- this.$nextTick(() => {
- var _this=this;
- $(function () {
- //展示表情
- var faces=placeFace();
- $.each(faceTitles, function (index, item) {
- // _this.face.push({"name":item,"path":faces[item]});
- });
- $(".faceBtn").click(function(){
- var status=$('.faceBox').css("display");
- if(status=="block"){
- $('.faceBox').hide();
- }else{
- $('.faceBox').show();
- }
- });
- });
- });
- },
- //表情点击事件
- faceIconClick(index){
- $('.faceBox').hide();
- this.messageContent+="face["+this.face[index]+"]";
- },
- //上传图片
- uploadImg (url){
- let _this=this;
- $('#uploadImg').after('<input type="file" accept="image/gif,image/jpeg,image/jpg,image/png" id="uploadImgFile" name="file" style="display:none" >');
- $("#uploadImgFile").click();
- $("#uploadImgFile").change(function (e) {
- var formData = new FormData();
- var file = $("#uploadImgFile")[0].files[0];
- formData.append("imgfile",file); //传给后台的file的key值是可以自己定义的
- filter(file) && $.ajax({
- url: url || '',
- type: "post",
- data: formData,
- contentType: false,
- processData: false,
- dataType: 'JSON',
- mimeType: "multipart/form-data",
- success: function (res) {
- if(res.code!=200){
- _this.$message({
- message: res.msg,
- type: 'error'
- });
- }else{
- _this.messageContent+='img[' + res.result.path + ']';
- _this.chatToUser();
- }
- },
- error: function (data) {
- console.log(data);
- }
- });
- });
- },
- addIpblack(ip){
- let _this=this;
- $.ajax({
- type:"post",
- url:"/ipblack",
- data:{ip:ip},
- headers:{
- "token":localStorage.getItem("token")
- },
- success: function(data) {
- if(data.code!=200){
- _this.$message({
- message: data.msg,
- type: 'error'
- });
- }else{
- _this.$message({
- message: data.msg,
- type: 'success'
- });
- }
- }
- });
- },
- //粘贴上传图片
- onPasteUpload(event){
- let items = event.clipboardData && event.clipboardData.items;
- let file = null
- if (items && items.length) {
- // 检索剪切板items
- for (var i = 0; i < items.length; i++) {
- if (items[i].type.indexOf('image') !== -1) {
- file = items[i].getAsFile()
- }
- }
- }
- if (!file) {
- return;
- }
- let _this=this;
- var formData = new FormData();
- formData.append('imgfile', file);
- $.ajax({
- url: '/uploadimg',
- type: "post",
- data: formData,
- contentType: false,
- processData: false,
- dataType: 'JSON',
- mimeType: "multipart/form-data",
- success: function (res) {
- if(res.code!=200){
- _this.$message({
- message: res.msg,
- type: 'error'
- });
- }else{
- _this.messageContent+='img[' + res.result.path + ']';
- _this.chatToUser();
- }
- },
- error: function (data) {
- console.log(data);
- }
- });
- },
- openUrl(url){
- window.open(url);
- },
- },
- mounted() {
- document.addEventListener('paste', this.onPasteUpload)
- },
- created: function () {
- //jquery
- this.initJquery();
- this.getKefuInfo();
- //心跳
- this.ping();
- }
- })
|