$(function () { $(".chatsend_content button[name=sendbtn]").click(function(){ sendKeyPress(); }); $("input[name=message]").on('keypress', function (key) { if (key.keyCode == 13) sendKeyPress(); }); $(document).on('click','input[name=message]', function () { if ($('#chatting_container input[name=person_agree]').length && $('.messagebox input[name=message]').prop('readonly')== true && $('#chatting_container input[name=person_agree]').is(':checked') == false ) { alert("개인정보 수집 동의에 체크해주세요."); } }); $(document).on('click','.chatarea_title button',function(){ $('#chatting_container .chatarea_container').css('display','none'); }); $('#nicknameDiv button').click(function(){ changeNickName(); }) $('#nicknameDiv input[name=nickname]').on('keypress', function (key) { if (key.keyCode == 13) changeNickName(); }) $('#chatting_container input[name=person_agree]').click(function() { if($('#chatting_container input[name=person_agree]').is(':checked') == true) { var cf = confirm("개인정보수집에 동의 하십니까? "); if(cf == true) { $("input[name=message]").val('개인정보 수집 및 활용에 동의 합니다.'); sendKeyPress(); $('#chatting_container input[name=person_agree]').prop('disabled', true); if(onlineCount > 0) { $('.messagebox input[name=message]').prop('readonly', false); $('.messagebox input[name=message]').css('background', '#FFFFFF'); } } else $('#chatting_container input[name=person_agree]').prop('checked', false); } }); chatmsg.msg = agentMemo; systemMsg(chatmsg); }); function startChat() { socket = io('http://chat86.runremote.net:3001'); socket.on('receiveMsg', function(chatmsg){ if(chatmsg.clientCode == clientCode) { agentName = chatmsg.agentName; receiveMsg(chatmsg); } }); socket.on('action', function(chatmsg){ if(chatmsg.mode=='disconnect' && chatmsg.agentCode == agentCode) actionChat(chatmsg.mode, chatmsg ); else if(chatmsg.clientCode == clientCode) actionChat(chatmsg.mode, chatmsg ); }); }; function startType(type,msg) { if(starttype==1) { startChat(); actionChat(type,msg); starttype=2; chatmsg.msg = runChatherf + ' 페이지를 접속하셨습니다.'; actionChat('referer', chatmsg) ; } } function sendKeyPress() { var message = $("input[name=message]").val(); if(message) { startType('join',message); var msgdata = {}; msgdata.msg = message; chatmsg = getChatData(msgdata); socket.emit('sendMsg',chatmsg); sendMsg(msgdata); $("input[name=message]").val(''); $("input[name=message]").focus(); } } function sendFile(val) { var msgdata = {}; msgdata.msg = val.url; msgdata.type = val.type; chatmsg = getChatData(msgdata); sendMsg(msgdata); socket.emit('sendMsg',chatmsg); } function actionChat(mode, chatmsg) { switch (mode) { case 'join' : socket.emit('action',{'mode':'join','mainCode':mainCode,'clientCode':clientCode,'clientName':clientName,'msg':chatmsg,'clientIP':clientIP,'flatform':ismobile}); break; case 'start' : if(!agentCode) { agentCode = chatmsg.agentCode; agentName = chatmsg.agentName; systemMsg(chatmsg); } break; case 'restart' : socket.emit('action',{'mode':'restart','mainCode':mainCode,'clientCode':clientCode,'agentCode':agentCode}); break; case 'agent_newagent' : var msgdata = {}; changeAgent(chatmsg); msgdata.msg = chatmsg.msg; msgdata.chatmode = 'newagent'; msgdata = getChatData(msgdata); systemMsg(chatmsg); socket.emit('sendMsg',msgdata); break; case 'referer' : socket.emit('action',{'mode':'referer','mainCode':mainCode,'clientCode':clientCode,'agentCode':agentCode,'msg':chatmsg.msg}); break; case 'disconnect' : agentCode=''; systemMsg(chatmsg); break; case 'agent_deny' : chatBlock(); agentCode=''; systemMsg(chatmsg); break; case 'agent_close' : chatBlock(); changeUID(); agentCode=''; systemMsg(chatmsg); break; } } function changeAgent(msg) { agentCode = msg.newCode; agentName = msg.newName; } function getChatData(msg) { msg.clientCode = clientCode; msg.clientName = clientName; msg.agentCode = agentCode; msg.agentName = agentName; msg.mainCode = mainCode; msg.clientIP = clientIP; msg.chattype = chattype; return msg; } function sendMsg(chatmsg) { var msgvalue = chatmsg.msg; if(!chatmsg.type && !msgvalue.match(/^'+clientName+''+getDateValue()+''+msgvalue+'

')); bottomScroll(".chatmessage_content"); } function receiveMsg(chatmsg){ var msgvalue = chatmsg.msg; if(!chatmsg.type && !msgvalue.match(/^
'+chatmsg.agentName+''+getDateValue()+''+msgvalue+'

')); bottomScroll(".chatmessage_content"); } function systemMsg(chatmsg) { $('.chatmessage_content').append($('
'+chatmsg.msg+'
')); bottomScroll(".chatmessage_content"); } function bottomScroll(id) { $(id).scrollTop($(id)[0].scrollHeight); } function chatBlock() { $("input[name=message]").prop('disabled',true); $(".chatsend_content button[name=sendbtn]").prop('disabled',true); } function changeNickName() { var nickname = $('#nicknameDiv input[name=nickname]').val(); if(nickname == '') { alert("별명을 입력해주세요."); $('#nicknameDiv input[name=nickname]').focus(); return; } clientName = (clientName!="고객") ? clientName : nickname; $('#nicknameDiv').css('display','none'); } function changeUID() { $.post('/member/user.php','work=uid',function(data){ if(data.code==200) { clientCode = data.ucode; } else alert('uid변경실패'); },'json'); } function getHistory() { $.post('/runchat/history.php','mode=history&code='+clientCode+'&maincode='+mainCode,function(data) { if(data.code == 200) { $('.chatmessage_content').html(''); $.each(data.info, function() { var chatmsg = {}; //chatmsg.msg = (this.chatmsg.match(/^