if (!window.zammadChatTemplates) { window.zammadChatTemplates = {}; } window.zammadChatTemplates["agent"] = function (__obj) { if (!__obj) __obj = {}; var __out = [], __capture = function(callback) { var out = __out, result; __out = []; callback.call(this); result = __out.join(''); __out = out; return __safe(result); }, __sanitize = function(value) { if (value && value.ecoSafe) { return value; } else if (typeof value !== 'undefined' && value != null) { return __escape(value); } else { return ''; } }, __safe, __objSafe = __obj.safe, __escape = __obj.escape; __safe = __obj.safe = function(value) { if (value && value.ecoSafe) { return value; } else { if (!(typeof value !== 'undefined' && value != null)) value = ''; var result = new String(value); result.ecoSafe = true; return result; } }; if (!__escape) { __escape = __obj.escape = function(value) { return ('' + value) .replace(/&/g, '&') .replace(//g, '>') .replace(/"/g, '"'); }; } (function() { (function() { if (this.agent.avatar) { __out.push('\n\n'); } __out.push('\n\n '); __out.push(__sanitize(this.agent.name)); __out.push('\n'); }).call(this); }).call(__obj); __obj.safe = __objSafe, __obj.escape = __escape; return __out.join(''); }; var extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, hasProp = {}.hasOwnProperty, bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }, slice = [].slice; (function(window) { var Base, Core, Io, Log, Timeout, ZammadChat, myScript, scriptHost, scriptProtocol, scripts; scripts = document.getElementsByTagName('script'); myScript = scripts[scripts.length - 1]; scriptProtocol = window.location.protocol.replace(':', ''); if (myScript && myScript.src) { scriptHost = myScript.src.match('.*://([^:/]*).*')[1]; scriptProtocol = myScript.src.match('(.*)://[^:/]*.*')[1]; } Core = (function() { Core.prototype.defaults = { debug: false }; function Core(options) { var key, ref, value; this.options = {}; ref = this.defaults; for (key in ref) { value = ref[key]; this.options[key] = value; } for (key in options) { value = options[key]; this.options[key] = value; } } return Core; })(); Base = (function(superClass) { extend(Base, superClass); function Base(options) { Base.__super__.constructor.call(this, options); this.log = new Log({ debug: this.options.debug, logPrefix: this.options.logPrefix || this.logPrefix }); } return Base; })(Core); Log = (function(superClass) { extend(Log, superClass); function Log() { this.log = bind(this.log, this); this.error = bind(this.error, this); this.notice = bind(this.notice, this); this.debug = bind(this.debug, this); return Log.__super__.constructor.apply(this, arguments); } Log.prototype.debug = function() { var items; items = 1 <= arguments.length ? slice.call(arguments, 0) : []; if (!this.options.debug) { return; } return this.log('debug', items); }; Log.prototype.notice = function() { var items; items = 1 <= arguments.length ? slice.call(arguments, 0) : []; return this.log('notice', items); }; Log.prototype.error = function() { var items; items = 1 <= arguments.length ? slice.call(arguments, 0) : []; return this.log('error', items); }; Log.prototype.log = function(level, items) { var element, item, j, len, logString; items.unshift('||'); items.unshift(level); items.unshift(this.options.logPrefix); console.log.apply(console, items); if (!this.options.debug) { return; } logString = ''; for (j = 0, len = items.length; j < len; j++) { item = items[j]; logString += ' '; if (typeof item === 'object') { logString += JSON.stringify(item); } else if (item && item.toString) { logString += item.toString(); } else { logString += item; } } element = document.querySelector('.js-chatLogDisplay'); if (element) { return element.innerHTML = '
' + logString + '
' + element.innerHTML; } }; return Log; })(Core); Timeout = (function(superClass) { extend(Timeout, superClass); function Timeout() { this.stop = bind(this.stop, this); this.start = bind(this.start, this); return Timeout.__super__.constructor.apply(this, arguments); } Timeout.prototype.timeoutStartedAt = null; Timeout.prototype.logPrefix = 'timeout'; Timeout.prototype.defaults = { debug: false, timeout: 4, timeoutIntervallCheck: 0.5 }; Timeout.prototype.start = function() { var check, timeoutStartedAt; this.stop(); timeoutStartedAt = new Date; check = (function(_this) { return function() { var timeLeft; timeLeft = new Date - new Date(timeoutStartedAt.getTime() + _this.options.timeout * 1000 * 60); _this.log.debug("Timeout check for " + _this.options.timeout + " minutes (left " + (timeLeft / 1000) + " sec.)"); if (timeLeft < 0) { return; } _this.stop(); return _this.options.callback(); }; })(this); this.log.debug("Start timeout in " + this.options.timeout + " minutes"); return this.intervallId = setInterval(check, this.options.timeoutIntervallCheck * 1000 * 60); }; Timeout.prototype.stop = function() { if (!this.intervallId) { return; } this.log.debug("Stop timeout of " + this.options.timeout + " minutes"); return clearInterval(this.intervallId); }; return Timeout; })(Base); Io = (function(superClass) { extend(Io, superClass); function Io() { this.ping = bind(this.ping, this); this.send = bind(this.send, this); this.reconnect = bind(this.reconnect, this); this.close = bind(this.close, this); this.connect = bind(this.connect, this); this.set = bind(this.set, this); return Io.__super__.constructor.apply(this, arguments); } Io.prototype.logPrefix = 'io'; Io.prototype.set = function(params) { var key, results, value; results = []; for (key in params) { value = params[key]; results.push(this.options[key] = value); } return results; }; Io.prototype.connect = function() { this.log.debug("Connecting to " + this.options.host); this.ws = new window.WebSocket("" + this.options.host); this.ws.onopen = (function(_this) { return function(e) { _this.log.debug('onOpen', e); _this.options.onOpen(e); return _this.ping(); }; })(this); this.ws.onmessage = (function(_this) { return function(e) { var j, len, pipe, pipes; pipes = JSON.parse(e.data); _this.log.debug('onMessage', e.data); for (j = 0, len = pipes.length; j < len; j++) { pipe = pipes[j]; if (pipe.event === 'pong') { _this.ping(); } } if (_this.options.onMessage) { return _this.options.onMessage(pipes); } }; })(this); this.ws.onclose = (function(_this) { return function(e) { _this.log.debug('close websocket connection', e); if (_this.pingDelayId) { clearTimeout(_this.pingDelayId); } if (_this.manualClose) { _this.log.debug('manual close, onClose callback'); _this.manualClose = false; if (_this.options.onClose) { return _this.options.onClose(e); } } else { _this.log.debug('error close, onError callback'); if (_this.options.onError) { return _this.options.onError('Connection lost...'); } } }; })(this); return this.ws.onerror = (function(_this) { return function(e) { _this.log.debug('onError', e); if (_this.options.onError) { return _this.options.onError(e); } }; })(this); }; Io.prototype.close = function() { this.log.debug('close websocket manually'); this.manualClose = true; return this.ws.close(); }; Io.prototype.reconnect = function() { this.log.debug('reconnect'); this.close(); return this.connect(); }; Io.prototype.send = function(event, data) { var msg; if (data == null) { data = {}; } this.log.debug('send', event, data); msg = JSON.stringify({ event: event, data: data }); return this.ws.send(msg); }; Io.prototype.ping = function() { var localPing; localPing = (function(_this) { return function() { return _this.send('ping'); }; })(this); return this.pingDelayId = setTimeout(localPing, 29000); }; return Io; })(Base); ZammadChat = (function(superClass) { extend(ZammadChat, superClass); ZammadChat.prototype.defaults = { chatId: void 0, show: true, target: document.querySelector('body'), host: '', debug: false, flat: false, lang: void 0, cssAutoload: true, cssUrl: void 0, fontSize: void 0, buttonClass: 'open-zammad-chat', inactiveClass: 'is-inactive', title: 'Chat with us!', scrollHint: 'Scroll down to see new messages', idleTimeout: 6, idleTimeoutIntervallCheck: 0.5, inactiveTimeout: 8, inactiveTimeoutIntervallCheck: 0.5, waitingListTimeout: 4, waitingListTimeoutIntervallCheck: 0.5 }; ZammadChat.prototype.logPrefix = 'chat'; ZammadChat.prototype._messageCount = 0; ZammadChat.prototype.isOpen = false; ZammadChat.prototype.blinkOnlineInterval = null; ZammadChat.prototype.stopBlinOnlineStateTimeout = null; ZammadChat.prototype.showTimeEveryXMinutes = 2; ZammadChat.prototype.lastTimestamp = null; ZammadChat.prototype.lastAddedType = null; ZammadChat.prototype.inputTimeout = null; ZammadChat.prototype.isTyping = false; ZammadChat.prototype.state = 'offline'; ZammadChat.prototype.initialQueueDelay = 10000; ZammadChat.prototype.translations = { 'da': { 'Chat with us!': 'Chat med os!', 'Scroll down to see new messages': 'Scroll ned for at se nye beskeder', 'Online': 'Online', 'Offline': 'Offline', 'Connecting': 'Forbinder', 'Connection re-established': 'Forbindelse genoprettet', 'Today': 'I dag', 'Send': 'Send', 'Chat closed by %s': 'Chat lukket af %s', 'Compose your message...': 'Skriv en besked...', 'All colleagues are busy.': 'Alle kollegaer er optaget.', 'You are on waiting list position %s.': 'Du er i venteliste som nummer %s.', 'Start new conversation': 'Start en ny samtale', 'Since you didn\'t respond in the last %s minutes your conversation with %s got closed.': 'Da du ikke har svaret i de sidste %s minutter er din samtale med %s blevet lukket.', 'Since you didn\'t respond in the last %s minutes your conversation got closed.': 'Da du ikke har svaret i de sidste %s minutter er din samtale blevet lukket.', 'We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!': 'Vi beklager, det tager længere end forventet at få en ledig plads. Prøv venligst igen senere eller send os en e-mail. På forhånd tak!' }, 'de': { 'Chat with us!': 'Chatte mit uns!', 'Scroll down to see new messages': 'Scrolle nach unten um neue Nachrichten zu sehen', 'Online': 'Online', 'Offline': 'Offline', 'Connecting': 'Verbinden', 'Connection re-established': 'Verbindung wiederhergestellt', 'Today': 'Heute', 'Send': 'Senden', 'Chat closed by %s': 'Chat beendet von %s', 'Compose your message...': 'Ihre Nachricht...', 'All colleagues are busy.': 'Alle Kollegen sind belegt.', 'You are on waiting list position %s.': 'Sie sind in der Warteliste an der Position %s.', 'Start new conversation': 'Neue Konversation starten', 'Since you didn\'t respond in the last %s minutes your conversation with %s got closed.': 'Da Sie in den letzten %s Minuten nichts geschrieben haben wurde Ihre Konversation mit %s geschlossen.', 'Since you didn\'t respond in the last %s minutes your conversation got closed.': 'Da Sie in den letzten %s Minuten nichts geschrieben haben wurde Ihre Konversation geschlossen.', 'We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!': 'Es tut uns leid, es dauert länger als erwartet, um einen freien Platz zu erhalten. Bitte versuchen Sie es zu einem späteren Zeitpunkt noch einmal oder schicken Sie uns eine E-Mail. Vielen Dank!' }, 'es': { 'Chat with us!': 'Chatee con nosotros!', 'Scroll down to see new messages': 'Haga scroll hacia abajo para ver nuevos mensajes', 'Online': 'En linea', 'Offline': 'Desconectado', 'Connecting': 'Conectando', 'Connection re-established': 'Conexión restablecida', 'Today': 'Hoy', 'Send': 'Enviar', 'Chat closed by %s': 'Chat cerrado por %s', 'Compose your message...': 'Escriba su mensaje...', 'All colleagues are busy.': 'Todos los agentes están ocupados.', 'You are on waiting list position %s.': 'Usted está en la posición %s de la lista de espera.', 'Start new conversation': 'Iniciar nueva conversación', 'Since you didn\'t respond in the last %s minutes your conversation with %s got closed.': 'Puesto que usted no respondió en los últimos %s minutos su conversación con %s se ha cerrado.', 'Since you didn\'t respond in the last %s minutes your conversation got closed.': 'Puesto que usted no respondió en los últimos %s minutos su conversación se ha cerrado.', 'We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!': 'Lo sentimos, se tarda más tiempo de lo esperado para ser atendido por un agente. Inténtelo de nuevo más tarde o envíenos un correo electrónico. ¡Gracias!' }, 'fi': { 'Chat with us!': 'Keskustele kanssamme!', 'Scroll down to see new messages': 'Rullaa alas nähdäksesi uudet viestit', 'Online': 'Paikalla', 'Offline': 'Poissa', 'Connecting': 'Yhdistetään', 'Connection re-established': 'Yhteys muodostettu uudelleen', 'Today': 'Tänään', 'Send': 'Lähetä', 'Chat closed by %s': '%s sulki keskustelun', 'Compose your message...': 'Luo viestisi...', 'All colleagues are busy.': 'Kaikki kollegat ovat varattuja.', 'You are on waiting list position %s.': 'Olet odotuslistalla sijalla %s.', 'Start new conversation': 'Aloita uusi keskustelu', 'Since you didn\'t respond in the last %s minutes your conversation with %s got closed.': 'Koska et vastannut viimeiseen %s minuuttiin, keskustelusi %s kanssa suljettiin.', 'Since you didn\'t respond in the last %s minutes your conversation got closed.': 'Koska et vastannut viimeiseen %s minuuttiin, keskustelusi suljettiin.', 'We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!': 'Olemme pahoillamme, tyhjän paikan vapautumisessa kestää odotettua pidempään. Ole hyvä ja yritä myöhemmin uudestaan tai lähetä meille sähköpostia. Kiitos!' }, 'fr': { 'Chat with us!': 'Chattez avec nous!', 'Scroll down to see new messages': 'Faites défiler pour lire les nouveaux messages', 'Online': 'En-ligne', 'Offline': 'Hors-ligne', 'Connecting': 'Connexion en cours', 'Connection re-established': 'Connexion rétablie', 'Today': 'Aujourdhui', 'Send': 'Envoyer', 'Chat closed by %s': 'Chat fermé par %s', 'Compose your message...': 'Composez votre message...', 'All colleagues are busy.': 'Tous les collègues sont actuellement occupés.', 'You are on waiting list position %s.': 'Vous êtes actuellement en %s position dans la file d\'attente.', 'Start new conversation': 'Démarrer une nouvelle conversation', 'Since you didn\'t respond in the last %s minutes your conversation with %s got closed.': 'Si vous ne répondez pas dans les %s minutes, votre conversation avec %s va être fermée.', 'Since you didn\'t respond in the last %s minutes your conversation got closed.': 'Si vous ne répondez pas dans les %s minutes, votre conversation va être fermée.', 'We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!': 'Nous sommes désolés, il faut plus de temps que prévu pour obtenir un emplacement vide. Veuillez réessayer ultérieurement ou nous envoyer un courriel. Je vous remercie!' }, 'nl': { 'Chat with us!': 'Chat met ons!', 'Scroll down to see new messages': 'Scrol naar beneden om nieuwe berichten te zien', 'Online': 'Online', 'Offline': 'Offline', 'Connecting': 'Verbinden', 'Connection re-established': 'Verbinding herstelt', 'Today': 'Vandaag', 'Send': 'Verzenden', 'Chat closed by %s': 'Chat gesloten door %s', 'Compose your message...': 'Typ uw bericht...', 'All colleagues are busy.': 'Alle medewerkers zijn bezet.', 'You are on waiting list position %s.': 'U bent %s in de wachtrij.', 'Start new conversation': 'Nieuwe conversatie starten', 'Since you didn\'t respond in the last %s minutes your conversation with %s got closed.': 'Omdat u in de laatste %s minuten niets geschreven heeft wordt de conversatie met %s gesloten.', 'Since you didn\'t respond in the last %s minutes your conversation got closed.': 'Omdat u in de laatste %s minuten niets geschreven heeft is de conversatie gesloten.', 'We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!': 'Het spijt ons, het duurt langer dan verwacht om te antwoorden. Alstublieft probeer het later nogmaals of stuur ons een email. Hartelijk dank!' }, 'it': { 'Chat with us!': 'Chatta con noi!', 'Scroll down to see new messages': 'Scorrere verso il basso per vedere i nuovi messaggi', 'Online': 'Online', 'Offline': 'Offline', 'Connecting': 'Collegamento', 'Connection re-established': 'Collegamento ristabilito', 'Today': 'Oggi', 'Send': 'Invio', 'Chat closed by %s': 'Conversazione chiusa da %s', 'Compose your message...': 'Comporre il tuo messaggio...', 'All colleagues are busy.': 'Tutti i colleghi sono occupati.', 'You are on waiting list position %s.': 'Siete in posizione lista d\' attesa %s.', 'Start new conversation': 'Avviare una nuova conversazione', 'Since you didn\'t respond in the last %s minutes your conversation with %s got closed.': 'Dal momento che non hai risposto negli ultimi %s minuti la tua conversazione con %s si è chiusa.', 'Since you didn\'t respond in the last %s minutes your conversation got closed.': 'Dal momento che non hai risposto negli ultimi %s minuti la tua conversazione si è chiusa.', 'We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!': 'Ci dispiace, ci vuole più tempo come previsto per ottenere uno slot vuoto. Per favore riprova più tardi o inviaci un\' e-mail. Grazie!' }, 'pl': { 'Chat with us!': 'Czatuj z nami!', 'Scroll down to see new messages': 'Przewiń w dół, aby wyświetlić nowe wiadomości', 'Online': 'Online', 'Offline': 'Offline', 'Connecting': 'Łączenie', 'Connection re-established': 'Ponowne nawiązanie połączenia', 'Today': 'dzisiejszy', 'Send': 'Wyślij', 'Chat closed by %s': 'Czat zamknięty przez %s', 'Compose your message...': 'Utwórz swoją wiadomość...', 'All colleagues are busy.': 'Wszyscy koledzy są zajęci.', 'You are on waiting list position %s.': 'Na liście oczekujących znajduje się pozycja %s.', 'Start new conversation': 'Rozpoczęcie nowej konwersacji', 'Since you didn\'t respond in the last %s minutes your conversation with %s got closed.': 'Ponieważ w ciągu ostatnich %s minut nie odpowiedziałeś, Twoja rozmowa z %s została zamknięta.', 'Since you didn\'t respond in the last %s minutes your conversation got closed.': 'Ponieważ nie odpowiedziałeś w ciągu ostatnich %s minut, Twoja rozmowa została zamknięta.', 'We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!': 'Przykro nam, ale to trwa dłużej niż się spodziewamy. Spróbuj ponownie później lub wyślij nam wiadomość e-mail. Dziękuję!' }, 'zh-cn': { 'Chat with us!': '发起即时对话!', 'Scroll down to see new messages': '向下滚动以查看新消息', 'Online': '在线', 'Offline': '离线', 'Connecting': '连接中', 'Connection re-established': '正在重新建立连接', 'Today': '今天', 'Send': '发送', 'Chat closed by %s': 'Chat closed by %s', 'Compose your message...': '正在输入信息...', 'All colleagues are busy.': '所有工作人员都在忙碌中.', 'You are on waiting list position %s.': '您目前的等候位置是第 %s 位.', 'Start new conversation': '开始新的会话', 'Since you didn\'t respond in the last %s minutes your conversation with %s got closed.': '由于您超过 %s 分钟没有回复, 您与 %s 的会话已被关闭.', 'Since you didn\'t respond in the last %s minutes your conversation got closed.': '由于您超过 %s 分钟没有任何回复, 该对话已被关闭.', 'We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!': '非常抱歉, 目前需要等候更长的时间才能接入对话, 请稍后重试或向我们发送电子邮件. 谢谢!' }, 'zh-tw': { 'Chat with us!': '開始即時對话!', 'Scroll down to see new messages': '向下滑動以查看新訊息', 'Online': '線上', 'Offline': '离线', 'Connecting': '連線中', 'Connection re-established': '正在重新建立連線中', 'Today': '今天', 'Send': '發送', 'Chat closed by %s': 'Chat closed by %s', 'Compose your message...': '正在輸入訊息...', 'All colleagues are busy.': '所有服務人員都在忙碌中.', 'You are on waiting list position %s.': '你目前的等候位置是第 %s 順位.', 'Start new conversation': '開始新的對話', 'Since you didn\'t respond in the last %s minutes your conversation with %s got closed.': '由於你超過 %s 分鐘沒有回應, 你與 %s 的對話已被關閉.', 'Since you didn\'t respond in the last %s minutes your conversation got closed.': '由於你超過 %s 分鐘沒有任何回應, 該對話已被關閉.', 'We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!': '非常抱歉, 當前需要等候更長的時間方可排入對話程序, 請稍後重試或向我們寄送電子郵件. 謝謝!' }, 'ru': { 'Chat with us!': 'Напишите нам!', 'Scroll down to see new messages': 'Прокрутите, чтобы увидеть новые сообщения', 'Online': 'Онлайн', 'Offline': 'Оффлайн', 'Connecting': 'Подключение', 'Connection re-established': 'Подключение восстановлено', 'Today': 'Сегодня', 'Send': 'Отправить', 'Chat closed by %s': '%s закрыл чат', 'Compose your message...': 'Напишите сообщение...', 'All colleagues are busy.': 'Все сотрудники заняты', 'You are on waiting list position %s.': 'Вы в списке ожидания под номером %s', 'Start new conversation': 'Начать новую переписку.', 'Since you didn\'t respond in the last %s minutes your conversation with %s got closed.': 'Поскольку вы не отвечали в течение последних %s минут, ваш разговор с %s был закрыт.', 'Since you didn\'t respond in the last %s minutes your conversation got closed.': 'Поскольку вы не отвечали в течение последних %s минут, ваш разговор был закрыт.', 'We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!': 'К сожалению, ожидание свободного места требует больше времени. Повторите попытку позже или отправьте нам электронное письмо. Спасибо!' } }; ZammadChat.prototype.sessionId = void 0; ZammadChat.prototype.scrolledToBottom = true; ZammadChat.prototype.scrollSnapTolerance = 10; ZammadChat.prototype.richTextFormatKey = { 66: true, 73: true, 85: true, 83: true }; ZammadChat.prototype.T = function() { var item, items, j, len, string, translations; string = arguments[0], items = 2 <= arguments.length ? slice.call(arguments, 1) : []; if (this.options.lang && this.options.lang !== 'en') { if (!this.translations[this.options.lang]) { this.log.notice("Translation '" + this.options.lang + "' needed!"); } else { translations = this.translations[this.options.lang]; if (!translations[string]) { this.log.notice("Translation needed for '" + string + "'"); } string = translations[string] || string; } } if (items) { for (j = 0, len = items.length; j < len; j++) { item = items[j]; string = string.replace(/%s/, item); } } return string; }; ZammadChat.prototype.view = function(name) { return (function(_this) { return function(options) { if (!options) { options = {}; } options.T = _this.T; options.background = _this.options.background; options.flat = _this.options.flat; options.fontSize = _this.options.fontSize; return window.zammadChatTemplates[name](options); }; })(this); }; function ZammadChat(options) { this.removeAttributes = bind(this.removeAttributes, this); this.startTimeoutObservers = bind(this.startTimeoutObservers, this); this.onCssLoaded = bind(this.onCssLoaded, this); this.setAgentOnlineState = bind(this.setAgentOnlineState, this); this.onConnectionEstablished = bind(this.onConnectionEstablished, this); this.setSessionId = bind(this.setSessionId, this); this.onConnectionReestablished = bind(this.onConnectionReestablished, this); this.reconnect = bind(this.reconnect, this); this.destroy = bind(this.destroy, this); this.onScrollHintClick = bind(this.onScrollHintClick, this); this.detectScrolledtoBottom = bind(this.detectScrolledtoBottom, this); this.onLeaveTemporary = bind(this.onLeaveTemporary, this); this.onAgentTypingEnd = bind(this.onAgentTypingEnd, this); this.onAgentTypingStart = bind(this.onAgentTypingStart, this); this.onQueue = bind(this.onQueue, this); this.onQueueScreen = bind(this.onQueueScreen, this); this.onWebSocketClose = bind(this.onWebSocketClose, this); this.onCloseTransitionend = bind(this.onCloseTransitionend, this); this.close = bind(this.close, this); this.toggle = bind(this.toggle, this); this.sessionClose = bind(this.sessionClose, this); this.onOpenTransitionend = bind(this.onOpenTransitionend, this); this.open = bind(this.open, this); this.renderMessage = bind(this.renderMessage, this); this.receiveMessage = bind(this.receiveMessage, this); this.onSubmit = bind(this.onSubmit, this); this.onInput = bind(this.onInput, this); this.onReopenSession = bind(this.onReopenSession, this); this.onError = bind(this.onError, this); this.onWebSocketMessage = bind(this.onWebSocketMessage, this); this.send = bind(this.send, this); this.onKeydown = bind(this.onKeydown, this); this.onPaste = bind(this.onPaste, this); this.onDrop = bind(this.onDrop, this); this.render = bind(this.render, this); this.view = bind(this.view, this); this.T = bind(this.T, this); ZammadChat.__super__.constructor.call(this, options); if (typeof jQuery !== 'undefined' && this.options.target instanceof jQuery) { this.log.notice('Chat: target option is a jQuery object. jQuery is not a requirement for the chat any more.'); this.options.target = this.options.target.get(0); } this.isFullscreen = window.matchMedia && window.matchMedia('(max-width: 768px)').matches; this.scrollRoot = this.getScrollRoot(); if (!window.WebSocket || !sessionStorage) { this.state = 'unsupported'; this.log.notice('Chat: Browser not supported!'); return; } if (!this.options.chatId) { this.state = 'unsupported'; this.log.error('Chat: need chatId as option!'); return; } if (!this.options.lang) { this.options.lang = document.documentElement.getAttribute('lang'); } if (this.options.lang) { if (!this.translations[this.options.lang]) { this.log.debug("lang: No " + this.options.lang + " found, try first two letters"); this.options.lang = this.options.lang.replace(/-.+?$/, ''); } this.log.debug("lang: " + this.options.lang); } if (!this.options.host) { this.detectHost(); } this.loadCss(); this.io = new Io(this.options); this.io.set({ onOpen: this.render, onClose: this.onWebSocketClose, onMessage: this.onWebSocketMessage, onError: this.onError }); this.io.connect(); } ZammadChat.prototype.getScrollRoot = function() { var end, html, start; if ('scrollingElement' in document) { return document.scrollingElement; } html = document.documentElement; start = parseInt(html.pageYOffset, 10); html.pageYOffset = start + 1; end = parseInt(html.pageYOffset, 10); html.pageYOffset = start; if (end > start) { return html; } else { return document.body; } }; ZammadChat.prototype.render = function() { if (!this.el || !document.querySelector('.zammad-chat')) { this.renderBase(); } document.querySelector("." + this.options.buttonClass).classList.add(this.inactiveClass); this.setAgentOnlineState('online'); this.log.debug('widget rendered'); this.startTimeoutObservers(); this.idleTimeout.start(); this.sessionId = sessionStorage.getItem('sessionId'); return this.send('chat_status_customer', { session_id: this.sessionId, url: window.location.href }); }; ZammadChat.prototype.renderBase = function() { if (this.el) { this.el.remove(); } this.options.target.innerHTML += this.view('chat')({ title: this.options.title, scrollHint: this.options.scrollHint }); this.el = this.options.target.querySelector('.zammad-chat'); this.input = this.el.querySelector('.zammad-chat-input'); this.body = this.el.querySelector('.zammad-chat-body'); this.el.querySelector('.js-chat-open').addEventListener('click', this.open); this.el.querySelector('.js-chat-toggle').addEventListener('click', this.toggle); this.el.querySelector('.js-chat-status').addEventListener('click', this.stopPropagation); this.el.querySelector('.zammad-chat-controls').addEventListener('submit', this.onSubmit); this.body.addEventListener('scroll', this.detectScrolledtoBottom); this.el.querySelector('.zammad-scroll-hint').addEventListener('click', this.onScrollHintClick); this.input.addEventListener('keydown', this.onKeydown); this.input.addEventListener('input', this.onInput); this.input.addEventListener('paste', this.onPaste); this.input.addEventListener('drop', this.onDrop); window.addEventListener('beforeunload', this.onLeaveTemporary); return window.addEventListener('hashchange', (function(_this) { return function() { if (_this.isOpen) { if (_this.sessionId) { _this.send('chat_session_notice', { session_id: _this.sessionId, message: window.location.href }); } return; } return _this.idleTimeout.start(); }; })(this)); }; ZammadChat.prototype.stopPropagation = function(event) { return event.stopPropagation(); }; ZammadChat.prototype.onDrop = function(e) { var dataTransfer, file, reader, x, y; e.stopPropagation(); e.preventDefault(); if (window.dataTransfer) { dataTransfer = window.dataTransfer; } else if (e.dataTransfer) { dataTransfer = e.dataTransfer; } else { throw 'No clipboardData support'; } x = e.clientX; y = e.clientY; file = dataTransfer.files[0]; if (file.type.match('image.*')) { reader = new FileReader(); reader.onload = (function(_this) { return function(e) { var insert; insert = function(dataUrl, width) { var img, pos, range, result; if (_this.isRetina()) { width = width / 2; } result = dataUrl; img = new Image(); img.style.width = '100%'; img.style.maxWidth = width(+'px'); img.src = result; if (document.caretPositionFromPoint) { pos = document.caretPositionFromPoint(x, y); range = document.createRange(); range.setStart(pos.offsetNode, pos.offset); range.collapse(); return range.insertNode(img); } else if (document.caretRangeFromPoint) { range = document.caretRangeFromPoint(x, y); return range.insertNode(img); } else { return console.log('could not find carat'); } }; return _this.resizeImage(e.target.result, 460, 'auto', 2, 'image/jpeg', 'auto', insert); }; })(this); return reader.readAsDataURL(file); } }; ZammadChat.prototype.onPaste = function(e) { var clipboardData, docType, html, htmlTmp, imageFile, imageInserted, item, j, k, l, len, len1, len2, len3, m, match, newTag, node, outer, reader, ref, ref1, ref2, ref3, regex, replacementTag, text; e.stopPropagation(); e.preventDefault(); if (e.clipboardData) { clipboardData = e.clipboardData; } else if (window.clipboardData) { clipboardData = window.clipboardData; } else if (e.clipboardData) { clipboardData = e.clipboardData; } else { throw 'No clipboardData support'; } imageInserted = false; if (clipboardData && clipboardData.items && clipboardData.items[0]) { item = clipboardData.items[0]; if (item.kind === 'file' && (item.type === 'image/png' || item.type === 'image/jpeg')) { imageFile = item.getAsFile(); reader = new FileReader(); reader.onload = (function(_this) { return function(e) { var insert; insert = function(dataUrl, width) { var img; if (_this.isRetina()) { width = width / 2; } img = new Image(); img.style.width = '100%'; img.style.maxWidth = width(+'px'); img.src = dataUrl; return document.execCommand('insertHTML', false, img); }; return _this.resizeImage(e.target.result, 460, 'auto', 2, 'image/jpeg', 'auto', insert); }; })(this); reader.readAsDataURL(imageFile); imageInserted = true; } } if (imageInserted) { return; } text = void 0; docType = void 0; try { text = clipboardData.getData('text/html'); docType = 'html'; if (!text || text.length === 0) { docType = 'text'; text = clipboardData.getData('text/plain'); } if (!text || text.length === 0) { docType = 'text2'; text = clipboardData.getData('text'); } } catch (error) { e = error; console.log('Sorry, can\'t insert markup because browser is not supporting it.'); docType = 'text3'; text = clipboardData.getData('text'); } if (docType === 'text' || docType === 'text2' || docType === 'text3') { text = '
' + text.replace(/\n/g, '
') + '
'; text = text.replace(/
<\/div>/g, '

'); } console.log('p', docType, text); if (docType === 'html') { html = document.createElement('div'); html.innerHTML = text; match = false; htmlTmp = text; regex = new RegExp('<(/w|w)\:[A-Za-z]'); if (htmlTmp.match(regex)) { match = true; htmlTmp = htmlTmp.replace(regex, ''); } regex = new RegExp('<(/o|o)\:[A-Za-z]'); if (htmlTmp.match(regex)) { match = true; htmlTmp = htmlTmp.replace(regex, ''); } if (match) { html = this.wordFilter(html); } ref = html.childNodes; for (j = 0, len = ref.length; j < len; j++) { node = ref[j]; if (node.nodeType === 8) { node.remove(); } } ref1 = html.querySelectorAll('a, font, small, time, form, label'); for (k = 0, len1 = ref1.length; k < len1; k++) { node = ref1[k]; node.outerHTML = node.innerHTML; } replacementTag = 'div'; ref2 = html.querySelectorAll('textarea'); for (l = 0, len2 = ref2.length; l < len2; l++) { node = ref2[l]; outer = node.outerHTML; regex = new RegExp('<' + node.tagName, 'i'); newTag = outer.replace(regex, '<' + replacementTag); regex = new RegExp(' new Date(new Date().getTime() - 1500)) { return; } this.isTyping = new Date(); this.send('chat_session_typing', { session_id: this.sessionId }); return this.inactiveTimeout.start(); }; ZammadChat.prototype.onSubmit = function(event) { event.preventDefault(); return this.sendMessage(); }; ZammadChat.prototype.sendMessage = function() { var message, messageElement; message = this.input.innerHTML; if (!message) { return; } this.inactiveTimeout.start(); sessionStorage.removeItem('unfinished_message'); messageElement = this.view('message')({ message: message, from: 'customer', id: this._messageCount++, unreadClass: '' }); this.maybeAddTimestamp(); if (this.el.querySelector('.zammad-chat-message--typing')) { this.lastAddedType = 'typing-placeholder'; this.el.querySelector('.zammad-chat-message--typing').insertAdjacentHTML('beforebegin', messageElement); } else { this.lastAddedType = 'message--customer'; this.body.insertAdjacentHTML('beforeend', messageElement); } this.input.innerHTML = ''; this.scrollToBottom(); return this.send('chat_session_message', { content: message, id: this._messageCount, session_id: this.sessionId }); }; ZammadChat.prototype.receiveMessage = function(data) { this.inactiveTimeout.start(); this.onAgentTypingEnd(); this.maybeAddTimestamp(); this.renderMessage({ message: data.message.content, id: data.id, from: 'agent' }); return this.scrollToBottom({ showHint: true }); }; ZammadChat.prototype.renderMessage = function(data) { this.lastAddedType = "message--" + data.from; data.unreadClass = document.hidden ? ' zammad-chat-message--unread' : ''; return this.body.insertAdjacentHTML('beforeend', this.view('message')(data)); }; ZammadChat.prototype.open = function() { var remainerHeight; if (this.isOpen) { this.log.debug('widget already open, block'); return; } this.isOpen = true; this.log.debug('open widget'); this.show(); if (!this.sessionId) { this.showLoader(); } this.el.classList.add('zammad-chat-is-open'); remainerHeight = this.el.clientHeight - this.el.querySelector('.zammad-chat-header').offsetHeight; this.el.style.transform = "translateY(" + remainerHeight + "px)"; this.el.clientHeight; if (!this.sessionId) { this.el.addEventListener('transitionend', this.onOpenTransitionend); this.el.classList.add('zammad-chat--animate'); this.el.clientHeight; this.el.style.transform = ''; return this.send('chat_session_init', { url: window.location.href }); } else { this.el.style.transform = ''; return this.onOpenTransitionend(); } }; ZammadChat.prototype.onOpenTransitionend = function() { this.el.removeEventListener('transitionend', this.onOpenTransitionend); this.el.classList.remove('zammad-chat--animate'); this.idleTimeout.stop(); if (this.isFullscreen) { return this.disableScrollOnRoot(); } }; ZammadChat.prototype.sessionClose = function() { this.send('chat_session_close', { session_id: this.sessionId }); this.inactiveTimeout.stop(); this.waitingListTimeout.stop(); sessionStorage.removeItem('unfinished_message'); if (this.onInitialQueueDelayId) { clearTimeout(this.onInitialQueueDelayId); } return this.setSessionId(void 0); }; ZammadChat.prototype.toggle = function(event) { if (this.isOpen) { return this.close(event); } else { return this.open(event); } }; ZammadChat.prototype.close = function(event) { var remainerHeight; if (!this.isOpen) { this.log.debug('can\'t close widget, it\'s not open'); return; } if (this.initDelayId) { clearTimeout(this.initDelayId); } if (!this.sessionId) { this.log.debug('can\'t close widget without sessionId'); return; } this.log.debug('close widget'); if (event) { event.stopPropagation(); } this.sessionClose(); if (this.isFullscreen) { this.enableScrollOnRoot(); } remainerHeight = this.el.clientHeight - this.el.querySelector('.zammad-chat-header').offsetHeight; this.el.addEventListener('transitionend', this.onCloseTransitionend); this.el.classList.add('zammad-chat--animate'); document.offsetHeight; return this.el.style.transform = "translateY(" + remainerHeight + "px)"; }; ZammadChat.prototype.onCloseTransitionend = function() { this.el.removeEventListener('transitionend', this.onCloseTransitionend); this.el.classList.remove('zammad-chat-is-open', 'zammad-chat--animate'); this.el.style.transform = ''; this.showLoader(); this.el.querySelector('.zammad-chat-welcome').classList.remove('zammad-chat-is-hidden'); this.el.querySelector('.zammad-chat-agent').classList.add('zammad-chat-is-hidden'); this.el.querySelector('.zammad-chat-agent-status').classList.add('zammad-chat-is-hidden'); this.isOpen = false; return this.io.reconnect(); }; ZammadChat.prototype.onWebSocketClose = function() { if (this.isOpen) { return; } if (this.el) { this.el.classList.remove('zammad-chat-is-shown'); return this.el.classList.remove('zammad-chat-is-loaded'); } }; ZammadChat.prototype.show = function() { if (this.state === 'offline') { return; } this.el.classList.add('zammad-chat-is-loaded'); return this.el.classList.add('zammad-chat-is-shown'); }; ZammadChat.prototype.disableInput = function() { this.input.disabled = true; return this.el.querySelector('.zammad-chat-send').disabled = true; }; ZammadChat.prototype.enableInput = function() { this.input.disabled = false; return this.el.querySelector('.zammad-chat-send').disabled = false; }; ZammadChat.prototype.hideModal = function() { return this.el.querySelector('.zammad-chat-modal').innerHTML = ''; }; ZammadChat.prototype.onQueueScreen = function(data) { var show; this.setSessionId(data.session_id); show = (function(_this) { return function() { _this.onQueue(data); return _this.waitingListTimeout.start(); }; })(this); if (this.initialQueueDelay && !this.onInitialQueueDelayId) { this.onInitialQueueDelayId = setTimeout(show, this.initialQueueDelay); return; } if (this.onInitialQueueDelayId) { clearTimeout(this.onInitialQueueDelayId); } return show(); }; ZammadChat.prototype.onQueue = function(data) { this.log.notice('onQueue', data.position); this.inQueue = true; return this.el.querySelector('.zammad-chat-modal').innerHTML = this.view('waiting')({ position: data.position }); }; ZammadChat.prototype.onAgentTypingStart = function() { if (this.stopTypingId) { clearTimeout(this.stopTypingId); } this.stopTypingId = setTimeout(this.onAgentTypingEnd, 3000); if (this.el.querySelector('.zammad-chat-message--typing')) { return; } this.maybeAddTimestamp(); this.body.insertAdjacentHTML('beforeend', this.view('typingIndicator')()); if (!this.isVisible(this.el.querySelector('.zammad-chat-message--typing'), true)) { return; } return this.scrollToBottom(); }; ZammadChat.prototype.onAgentTypingEnd = function() { if (this.el.querySelector('.zammad-chat-message--typing')) { return this.el.querySelector('.zammad-chat-message--typing').remove(); } }; ZammadChat.prototype.onLeaveTemporary = function() { if (!this.sessionId) { return; } return this.send('chat_session_leave_temporary', { session_id: this.sessionId }); }; ZammadChat.prototype.maybeAddTimestamp = function() { var label, time, timestamp; timestamp = Date.now(); if (!this.lastTimestamp || (timestamp - this.lastTimestamp) > this.showTimeEveryXMinutes * 60000) { label = this.T('Today'); time = new Date().toTimeString().substr(0, 5); if (this.lastAddedType === 'timestamp') { this.updateLastTimestamp(label, time); return this.lastTimestamp = timestamp; } else { this.body.insertAdjacentHTML('beforeend', this.view('timestamp')({ label: label, time: time })); this.lastTimestamp = timestamp; this.lastAddedType = 'timestamp'; return this.scrollToBottom(); } } }; ZammadChat.prototype.updateLastTimestamp = function(label, time) { var timestamps; if (!this.el) { return; } timestamps = this.el.querySelectorAll('.zammad-chat-body .zammad-chat-timestamp'); if (!timestamps) { return; } return timestamps[timestamps.length - 1].outerHTML = this.view('timestamp')({ label: label, time: time }); }; ZammadChat.prototype.addStatus = function(status) { if (!this.el) { return; } this.maybeAddTimestamp(); this.body.insertAdjacentHTML('beforeend', this.view('status')({ status: status })); return this.scrollToBottom(); }; ZammadChat.prototype.detectScrolledtoBottom = function() { var scrollBottom; scrollBottom = this.body.scrollTop + this.body.offsetHeight; this.scrolledToBottom = Math.abs(scrollBottom - this.body.scrollHeight) <= this.scrollSnapTolerance; if (this.scrolledToBottom) { return this.el.querySelector('.zammad-scroll-hint').classList.add('is-hidden'); } }; ZammadChat.prototype.showScrollHint = function() { this.el.querySelector('.zammad-scroll-hint').classList.remove('is-hidden'); return this.body.scrollTop = this.body.scrollTop + this.el.querySelector('.zammad-scroll-hint').offsetHeight; }; ZammadChat.prototype.onScrollHintClick = function() { return this.body.scrollTo({ top: this.body.scrollHeight, behavior: 'smooth' }); }; ZammadChat.prototype.scrollToBottom = function(arg) { var showHint; showHint = (arg != null ? arg : { showHint: false }).showHint; if (this.scrolledToBottom) { return this.body.scrollTop = this.body.scrollHeight; } else if (showHint) { return this.showScrollHint(); } }; ZammadChat.prototype.destroy = function(params) { if (params == null) { params = {}; } this.log.debug('destroy widget', params); this.setAgentOnlineState('offline'); if (params.remove && this.el) { this.el.remove(); } if (this.waitingListTimeout) { this.waitingListTimeout.stop(); } if (this.inactiveTimeout) { this.inactiveTimeout.stop(); } if (this.idleTimeout) { this.idleTimeout.stop(); } return this.io.close(); }; ZammadChat.prototype.reconnect = function() { this.log.notice('reconnecting'); this.disableInput(); this.lastAddedType = 'status'; this.setAgentOnlineState('connecting'); return this.addStatus(this.T('Connection lost')); }; ZammadChat.prototype.onConnectionReestablished = function() { this.lastAddedType = 'status'; this.setAgentOnlineState('online'); return this.addStatus(this.T('Connection re-established')); }; ZammadChat.prototype.onSessionClosed = function(data) { this.addStatus(this.T('Chat closed by %s', data.realname)); this.disableInput(); this.setAgentOnlineState('offline'); return this.inactiveTimeout.stop(); }; ZammadChat.prototype.setSessionId = function(id) { this.sessionId = id; if (id === void 0) { return sessionStorage.removeItem('sessionId'); } else { return sessionStorage.setItem('sessionId', id); } }; ZammadChat.prototype.onConnectionEstablished = function(data) { if (this.onInitialQueueDelayId) { clearTimeout(this.onInitialQueueDelayId); } this.inQueue = false; if (data.agent) { this.agent = data.agent; } if (data.session_id) { this.setSessionId(data.session_id); } this.body.innerHTML = ''; this.el.querySelector('.zammad-chat-agent').innerHTML = this.view('agent')({ agent: this.agent }); this.enableInput(); this.hideModal(); this.el.querySelector('.zammad-chat-welcome').classList.add('zammad-chat-is-hidden'); this.el.querySelector('.zammad-chat-agent').classList.remove('zammad-chat-is-hidden'); this.el.querySelector('.zammad-chat-agent-status').classList.remove('zammad-chat-is-hidden'); if (!this.isFullscreen) { this.input.focus(); } this.setAgentOnlineState('online'); this.waitingListTimeout.stop(); this.idleTimeout.stop(); return this.inactiveTimeout.start(); }; ZammadChat.prototype.showCustomerTimeout = function() { this.el.querySelector('.zammad-chat-modal').innerHTML = this.view('customer_timeout')({ agent: this.agent.name, delay: this.options.inactiveTimeout }); this.el.querySelector('.js-restart').addEventListener('click', function() { return location.reload(); }); return this.sessionClose(); }; ZammadChat.prototype.showWaitingListTimeout = function() { this.el.querySelector('.zammad-chat-modal').innerHTML = this.view('waiting_list_timeout')({ delay: this.options.watingListTimeout }); this.el.querySelector('.js-restart').addEventListener('click', function() { return location.reload(); }); return this.sessionClose(); }; ZammadChat.prototype.showLoader = function() { return this.el.querySelector('.zammad-chat-modal').innerHTML = this.view('loader')(); }; ZammadChat.prototype.setAgentOnlineState = function(state) { var capitalizedState; this.state = state; if (!this.el) { return; } capitalizedState = state.charAt(0).toUpperCase() + state.slice(1); this.el.querySelector('.zammad-chat-agent-status').dataset.status = state; return this.el.querySelector('.zammad-chat-agent-status').textContent = this.T(capitalizedState); }; ZammadChat.prototype.detectHost = function() { var protocol; protocol = 'ws://'; if (scriptProtocol === 'https') { protocol = 'wss://'; } return this.options.host = "" + protocol + scriptHost + "/ws"; }; ZammadChat.prototype.loadCss = function() { var newSS, styles, url; if (!this.options.cssAutoload) { return; } url = this.options.cssUrl; if (!url) { url = this.options.host.replace(/^wss/i, 'https').replace(/^ws/i, 'http').replace(/\/ws/i, ''); url += '/assets/chat/chat.css'; } this.log.debug("load css from '" + url + "'"); styles = "@import url('" + url + "');"; newSS = document.createElement('link'); newSS.onload = this.onCssLoaded; newSS.rel = 'stylesheet'; newSS.href = 'data:text/css,' + escape(styles); return document.getElementsByTagName('head')[0].appendChild(newSS); }; ZammadChat.prototype.onCssLoaded = function() { this.cssLoaded = true; if (this.socketReady) { return this.onReady(); } }; ZammadChat.prototype.startTimeoutObservers = function() { this.idleTimeout = new Timeout({ logPrefix: 'idleTimeout', debug: this.options.debug, timeout: this.options.idleTimeout, timeoutIntervallCheck: this.options.idleTimeoutIntervallCheck, callback: (function(_this) { return function() { _this.log.debug('Idle timeout reached, hide widget', new Date); return _this.destroy({ remove: true }); }; })(this) }); this.inactiveTimeout = new Timeout({ logPrefix: 'inactiveTimeout', debug: this.options.debug, timeout: this.options.inactiveTimeout, timeoutIntervallCheck: this.options.inactiveTimeoutIntervallCheck, callback: (function(_this) { return function() { _this.log.debug('Inactive timeout reached, show timeout screen.', new Date); _this.showCustomerTimeout(); return _this.destroy({ remove: false }); }; })(this) }); return this.waitingListTimeout = new Timeout({ logPrefix: 'waitingListTimeout', debug: this.options.debug, timeout: this.options.waitingListTimeout, timeoutIntervallCheck: this.options.waitingListTimeoutIntervallCheck, callback: (function(_this) { return function() { _this.log.debug('Waiting list timeout reached, show timeout screen.', new Date); _this.showWaitingListTimeout(); return _this.destroy({ remove: false }); }; })(this) }); }; ZammadChat.prototype.disableScrollOnRoot = function() { this.rootScrollOffset = this.scrollRoot.scrollTop; this.scrollRoot.style.overflow = 'hidden'; return this.scrollRoot.style.position = 'fixed'; }; ZammadChat.prototype.enableScrollOnRoot = function() { this.scrollRoot.scrollTop = this.rootScrollOffset(+'px'); this.scrollRoot.style.overflow = ''; return this.scrollRoot.style.position = ''; }; ZammadChat.prototype.isVisible = function(el, partial, hidden, direction) { var bViz, clientSize, hVisible, lViz, rViz, rec, tViz, vVisible, vpHeight, vpWidth; if (el.length < 1) { return; } vpWidth = window.innerWidth; vpHeight = window.innerHeight; direction = direction ? direction : 'both'; clientSize = hidden === true ? t.offsetWidth * t.offsetHeight : true; rec = el.getBoundingClientRect(); tViz = rec.top >= 0 && rec.top < vpHeight; bViz = rec.bottom > 0 && rec.bottom <= vpHeight; lViz = rec.left >= 0 && rec.left < vpWidth; rViz = rec.right > 0 && rec.right <= vpWidth; vVisible = partial ? tViz || bViz : tViz && bViz; hVisible = partial ? lViz || rViz : lViz && rViz; if (direction === 'both') { return clientSize && vVisible && hVisible; } else if (direction === 'vertical') { return clientSize && vVisible; } else if (direction === 'horizontal') { return clientSize && hVisible; } }; ZammadChat.prototype.isRetina = function() { var mq; if (window.matchMedia) { mq = window.matchMedia('only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 2.6/2), only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min-device-pixel-ratio: 1.3), only screen and (min-resolution: 1.3dppx)'); return mq && mq.matches || (window.devicePixelRatio > 1); } return false; }; ZammadChat.prototype.resizeImage = function(dataURL, x, y, sizeFactor, type, quallity, callback, force) { var imageObject; if (x == null) { x = 'auto'; } if (y == null) { y = 'auto'; } if (sizeFactor == null) { sizeFactor = 1; } if (force == null) { force = true; } imageObject = new Image(); imageObject.onload = function() { var canvas, context, factor, imageHeight, imageWidth, newDataUrl, resize; imageWidth = imageObject.width; imageHeight = imageObject.height; console.log('ImageService', 'current size', imageWidth, imageHeight); if (y === 'auto' && x === 'auto') { x = imageWidth; y = imageHeight; } if (y === 'auto') { factor = imageWidth / x; y = imageHeight / factor; } if (x === 'auto') { factor = imageWidth / y; x = imageHeight / factor; } resize = false; if (x < imageWidth || y < imageHeight) { resize = true; x = x * sizeFactor; y = y * sizeFactor; } else { x = imageWidth; y = imageHeight; } canvas = document.createElement('canvas'); canvas.width = x; canvas.height = y; context = canvas.getContext('2d'); context.drawImage(imageObject, 0, 0, x, y); if (quallity === 'auto') { if (x < 200 && y < 200) { quallity = 1; } else if (x < 400 && y < 400) { quallity = 0.9; } else if (x < 600 && y < 600) { quallity = 0.8; } else if (x < 900 && y < 900) { quallity = 0.7; } else { quallity = 0.6; } } newDataUrl = canvas.toDataURL(type, quallity); if (resize) { console.log('ImageService', 'resize', x / sizeFactor, y / sizeFactor, quallity, (newDataUrl.length * 0.75) / 1024 / 1024, 'in mb'); callback(newDataUrl, x / sizeFactor, y / sizeFactor, true); return; } console.log('ImageService', 'no resize', x, y, quallity, (newDataUrl.length * 0.75) / 1024 / 1024, 'in mb'); return callback(newDataUrl, x, y, false); }; return imageObject.src = dataURL; }; ZammadChat.prototype.pasteHtmlAtCaret = function(html) { var el, frag, lastNode, node, range, sel; sel = void 0; range = void 0; if (window.getSelection) { sel = window.getSelection(); if (sel.getRangeAt && sel.rangeCount) { range = sel.getRangeAt(0); range.deleteContents(); el = document.createElement('div'); el.innerHTML = html; frag = document.createDocumentFragment(node, lastNode); while (node = el.firstChild) { lastNode = frag.appendChild(node); } range.insertNode(frag); if (lastNode) { range = range.cloneRange(); range.setStartAfter(lastNode); range.collapse(true); sel.removeAllRanges(); return sel.addRange(range); } } } else if (document.selection && document.selection.type !== 'Control') { return document.selection.createRange().pasteHTML(html); } }; ZammadChat.prototype.wordFilter = function(editor) { var content, cur_level, el, i, j, k, l, last_level, len, len1, len2, len3, len4, len5, len6, len7, list_tag, m, matches, n, o, p, pnt, q, r, ref, ref1, ref10, ref2, ref3, ref4, ref5, ref6, ref7, ref8, ref9, s, start, str, txt; content = editor.html(); content = content.replace(//gi, ''); content = content.replace(/<(!|script[^>]*>.*?<\/script(?=[>\s])|\/?(\?xml(:\w+)?|img|meta|link|style|\w:\w+)(?=[\s\/>]))[^>]*>/gi, ''); content = content.replace(/<(\/?)s>/gi, '<$1strike>'); content = content.replace(/ /gi, ' '); editor.innerHTML = content; ref = editor.querySelectorAll('p'); for (j = 0, len = ref.length; j < len; j++) { p = ref[j]; str = p.getAttribute('style'); matches = /mso-list:\w+ \w+([0-9]+)/.exec(str); if (matches) { p.dataset._listLevel = parseInt(matches[1], 10); } } last_level = 0; pnt = null; ref1 = editor.querySelectorAll('p'); for (k = 0, len1 = ref1.length; k < len1; k++) { p = ref1[k]; cur_level = p.dataset._listLevel; if (cur_level !== void 0) { txt = p.textContent; list_tag = ''; if (/^\s*\w+\./.test(txt)) { matches = /([0-9])\./.exec(txt); if (matches) { start = parseInt(matches[1], 10); list_tag = (ref2 = start > 1) != null ? ref2 : '
    ': '
      ' }; } else { list_tag = '
        '; } } if (cur_level > last_level) { if (last_level === 0) { p.insertAdjacentHTML('beforebegin', list_tag); pnt = p.previousElementSibling; } else { } pnt.insertAdjacentHTML('beforeend', list_tag); } if (cur_level < last_level) { for (i = l = ref3 = i, ref4 = last_level - cur_level; ref3 <= ref4 ? l <= ref4 : l >= ref4; i = ref3 <= ref4 ? ++l : --l) { pnt = pnt.parentNode; } } if (p.querySelector('span:first')) { p.querySelector('span:first').remove(); } pnt.insertAdjacentHTML('beforeend', '
      1. ' + p.innerHTML + '
      2. '); p.remove(); last_level = cur_level; } else { last_level = 0; } } ref5 = editor.querySelectorAll('[style]'); for (m = 0, len2 = ref5.length; m < len2; m++) { el = ref5[m]; el.removeAttribute('style'); } ref6 = editor.querySelectorAll('[align]'); for (n = 0, len3 = ref6.length; n < len3; n++) { el = ref6[n]; el.removeAttribute('align'); } ref7 = editor.querySelectorAll('span'); for (o = 0, len4 = ref7.length; o < len4; o++) { el = ref7[o]; el.outerHTML = el.innerHTML; } ref8 = editor.querySelectorAll('span:empty'); for (q = 0, len5 = ref8.length; q < len5; q++) { el = ref8[q]; el.remove(); } ref9 = editor.querySelectorAll("[class^='Mso']"); for (r = 0, len6 = ref9.length; r < len6; r++) { el = ref9[r]; el.removeAttribute('class'); } ref10 = editor.querySelectorAll('p:empty'); for (s = 0, len7 = ref10.length; s < len7; s++) { el = ref10[s]; el.remove(); } return editor; }; ZammadChat.prototype.removeAttribute = function(element) { var att, j, len, ref, results; if (!element) { return; } ref = element.attributes; results = []; for (j = 0, len = ref.length; j < len; j++) { att = ref[j]; results.push(element.removeAttribute(att.name)); } return results; }; ZammadChat.prototype.removeAttributes = function(html) { var j, len, node, ref; ref = html.querySelectorAll('*'); for (j = 0, len = ref.length; j < len; j++) { node = ref[j]; this.removeAttribute(node); } return html; }; return ZammadChat; })(Base); return window.ZammadChat = ZammadChat; })(window); if (!window.zammadChatTemplates) { window.zammadChatTemplates = {}; } window.zammadChatTemplates["chat"] = function (__obj) { if (!__obj) __obj = {}; var __out = [], __capture = function(callback) { var out = __out, result; __out = []; callback.call(this); result = __out.join(''); __out = out; return __safe(result); }, __sanitize = function(value) { if (value && value.ecoSafe) { return value; } else if (typeof value !== 'undefined' && value != null) { return __escape(value); } else { return ''; } }, __safe, __objSafe = __obj.safe, __escape = __obj.escape; __safe = __obj.safe = function(value) { if (value && value.ecoSafe) { return value; } else { if (!(typeof value !== 'undefined' && value != null)) value = ''; var result = new String(value); result.ecoSafe = true; return result; } }; if (!__escape) { __escape = __obj.escape = function(value) { return ('' + value) .replace(/&/g, '&') .replace(//g, '>') .replace(/"/g, '"'); }; } (function() { (function() { __out.push('
        \n
        \n
        \n \n \n \n \n \n
        \n
        \n
        \n
        \n \n '); __out.push(this.T(this.title)); __out.push('\n
        \n
        \n
        \n \n
        \n
        \n
        \n \n
        \n
        '); }).call(this); }).call(__obj); __obj.safe = __objSafe, __obj.escape = __escape; return __out.join(''); }; if (!window.zammadChatTemplates) { window.zammadChatTemplates = {}; } window.zammadChatTemplates["customer_timeout"] = function (__obj) { if (!__obj) __obj = {}; var __out = [], __capture = function(callback) { var out = __out, result; __out = []; callback.call(this); result = __out.join(''); __out = out; return __safe(result); }, __sanitize = function(value) { if (value && value.ecoSafe) { return value; } else if (typeof value !== 'undefined' && value != null) { return __escape(value); } else { return ''; } }, __safe, __objSafe = __obj.safe, __escape = __obj.escape; __safe = __obj.safe = function(value) { if (value && value.ecoSafe) { return value; } else { if (!(typeof value !== 'undefined' && value != null)) value = ''; var result = new String(value); result.ecoSafe = true; return result; } }; if (!__escape) { __escape = __obj.escape = function(value) { return ('' + value) .replace(/&/g, '&') .replace(//g, '>') .replace(/"/g, '"'); }; } (function() { (function() { __out.push('
        \n '); if (this.agent) { __out.push('\n '); __out.push(this.T('Since you didn\'t respond in the last %s minutes your conversation with %s got closed.', this.delay, this.agent)); __out.push('\n '); } else { __out.push('\n '); __out.push(this.T('Since you didn\'t respond in the last %s minutes your conversation got closed.', this.delay)); __out.push('\n '); } __out.push('\n
        \n
        '); __out.push(this.T('Start new conversation')); __out.push('
        \n
        '); }).call(this); }).call(__obj); __obj.safe = __objSafe, __obj.escape = __escape; return __out.join(''); }; if (!window.zammadChatTemplates) { window.zammadChatTemplates = {}; } window.zammadChatTemplates["loader"] = function (__obj) { if (!__obj) __obj = {}; var __out = [], __capture = function(callback) { var out = __out, result; __out = []; callback.call(this); result = __out.join(''); __out = out; return __safe(result); }, __sanitize = function(value) { if (value && value.ecoSafe) { return value; } else if (typeof value !== 'undefined' && value != null) { return __escape(value); } else { return ''; } }, __safe, __objSafe = __obj.safe, __escape = __obj.escape; __safe = __obj.safe = function(value) { if (value && value.ecoSafe) { return value; } else { if (!(typeof value !== 'undefined' && value != null)) value = ''; var result = new String(value); result.ecoSafe = true; return result; } }; if (!__escape) { __escape = __obj.escape = function(value) { return ('' + value) .replace(/&/g, '&') .replace(//g, '>') .replace(/"/g, '"'); }; } (function() { (function() { __out.push('\n \n \n \n\n'); __out.push(this.T('Connecting')); __out.push(''); }).call(this); }).call(__obj); __obj.safe = __objSafe, __obj.escape = __escape; return __out.join(''); }; if (!window.zammadChatTemplates) { window.zammadChatTemplates = {}; } window.zammadChatTemplates["message"] = function (__obj) { if (!__obj) __obj = {}; var __out = [], __capture = function(callback) { var out = __out, result; __out = []; callback.call(this); result = __out.join(''); __out = out; return __safe(result); }, __sanitize = function(value) { if (value && value.ecoSafe) { return value; } else if (typeof value !== 'undefined' && value != null) { return __escape(value); } else { return ''; } }, __safe, __objSafe = __obj.safe, __escape = __obj.escape; __safe = __obj.safe = function(value) { if (value && value.ecoSafe) { return value; } else { if (!(typeof value !== 'undefined' && value != null)) value = ''; var result = new String(value); result.ecoSafe = true; return result; } }; if (!__escape) { __escape = __obj.escape = function(value) { return ('' + value) .replace(/&/g, '&') .replace(//g, '>') .replace(/"/g, '"'); }; } (function() { (function() { __out.push('
        \n '); __out.push(this.message); __out.push('\n
        '); }).call(this); }).call(__obj); __obj.safe = __objSafe, __obj.escape = __escape; return __out.join(''); }; if (!window.zammadChatTemplates) { window.zammadChatTemplates = {}; } window.zammadChatTemplates["status"] = function (__obj) { if (!__obj) __obj = {}; var __out = [], __capture = function(callback) { var out = __out, result; __out = []; callback.call(this); result = __out.join(''); __out = out; return __safe(result); }, __sanitize = function(value) { if (value && value.ecoSafe) { return value; } else if (typeof value !== 'undefined' && value != null) { return __escape(value); } else { return ''; } }, __safe, __objSafe = __obj.safe, __escape = __obj.escape; __safe = __obj.safe = function(value) { if (value && value.ecoSafe) { return value; } else { if (!(typeof value !== 'undefined' && value != null)) value = ''; var result = new String(value); result.ecoSafe = true; return result; } }; if (!__escape) { __escape = __obj.escape = function(value) { return ('' + value) .replace(/&/g, '&') .replace(//g, '>') .replace(/"/g, '"'); }; } (function() { (function() { __out.push('
        \n
        \n '); __out.push(this.status); __out.push('\n
        \n
        '); }).call(this); }).call(__obj); __obj.safe = __objSafe, __obj.escape = __escape; return __out.join(''); }; if (!window.zammadChatTemplates) { window.zammadChatTemplates = {}; } window.zammadChatTemplates["timestamp"] = function (__obj) { if (!__obj) __obj = {}; var __out = [], __capture = function(callback) { var out = __out, result; __out = []; callback.call(this); result = __out.join(''); __out = out; return __safe(result); }, __sanitize = function(value) { if (value && value.ecoSafe) { return value; } else if (typeof value !== 'undefined' && value != null) { return __escape(value); } else { return ''; } }, __safe, __objSafe = __obj.safe, __escape = __obj.escape; __safe = __obj.safe = function(value) { if (value && value.ecoSafe) { return value; } else { if (!(typeof value !== 'undefined' && value != null)) value = ''; var result = new String(value); result.ecoSafe = true; return result; } }; if (!__escape) { __escape = __obj.escape = function(value) { return ('' + value) .replace(/&/g, '&') .replace(//g, '>') .replace(/"/g, '"'); }; } (function() { (function() { __out.push('
        '); __out.push(__sanitize(this.label)); __out.push(' '); __out.push(__sanitize(this.time)); __out.push('
        '); }).call(this); }).call(__obj); __obj.safe = __objSafe, __obj.escape = __escape; return __out.join(''); }; if (!window.zammadChatTemplates) { window.zammadChatTemplates = {}; } window.zammadChatTemplates["typingIndicator"] = function (__obj) { if (!__obj) __obj = {}; var __out = [], __capture = function(callback) { var out = __out, result; __out = []; callback.call(this); result = __out.join(''); __out = out; return __safe(result); }, __sanitize = function(value) { if (value && value.ecoSafe) { return value; } else if (typeof value !== 'undefined' && value != null) { return __escape(value); } else { return ''; } }, __safe, __objSafe = __obj.safe, __escape = __obj.escape; __safe = __obj.safe = function(value) { if (value && value.ecoSafe) { return value; } else { if (!(typeof value !== 'undefined' && value != null)) value = ''; var result = new String(value); result.ecoSafe = true; return result; } }; if (!__escape) { __escape = __obj.escape = function(value) { return ('' + value) .replace(/&/g, '&') .replace(//g, '>') .replace(/"/g, '"'); }; } (function() { (function() { __out.push('
        \n \n \n \n \n \n \n \n
        '); }).call(this); }).call(__obj); __obj.safe = __objSafe, __obj.escape = __escape; return __out.join(''); }; if (!window.zammadChatTemplates) { window.zammadChatTemplates = {}; } window.zammadChatTemplates["waiting"] = function (__obj) { if (!__obj) __obj = {}; var __out = [], __capture = function(callback) { var out = __out, result; __out = []; callback.call(this); result = __out.join(''); __out = out; return __safe(result); }, __sanitize = function(value) { if (value && value.ecoSafe) { return value; } else if (typeof value !== 'undefined' && value != null) { return __escape(value); } else { return ''; } }, __safe, __objSafe = __obj.safe, __escape = __obj.escape; __safe = __obj.safe = function(value) { if (value && value.ecoSafe) { return value; } else { if (!(typeof value !== 'undefined' && value != null)) value = ''; var result = new String(value); result.ecoSafe = true; return result; } }; if (!__escape) { __escape = __obj.escape = function(value) { return ('' + value) .replace(/&/g, '&') .replace(//g, '>') .replace(/"/g, '"'); }; } (function() { (function() { __out.push('
        \n \n \n \n \n \n '); __out.push(this.T('All colleagues are busy.')); __out.push('
        \n '); __out.push(this.T('You are on waiting list position %s.', this.position)); __out.push('\n
        '); }).call(this); }).call(__obj); __obj.safe = __objSafe, __obj.escape = __escape; return __out.join(''); }; if (!window.zammadChatTemplates) { window.zammadChatTemplates = {}; } window.zammadChatTemplates["waiting_list_timeout"] = function (__obj) { if (!__obj) __obj = {}; var __out = [], __capture = function(callback) { var out = __out, result; __out = []; callback.call(this); result = __out.join(''); __out = out; return __safe(result); }, __sanitize = function(value) { if (value && value.ecoSafe) { return value; } else if (typeof value !== 'undefined' && value != null) { return __escape(value); } else { return ''; } }, __safe, __objSafe = __obj.safe, __escape = __obj.escape; __safe = __obj.safe = function(value) { if (value && value.ecoSafe) { return value; } else { if (!(typeof value !== 'undefined' && value != null)) value = ''; var result = new String(value); result.ecoSafe = true; return result; } }; if (!__escape) { __escape = __obj.escape = function(value) { return ('' + value) .replace(/&/g, '&') .replace(//g, '>') .replace(/"/g, '"'); }; } (function() { (function() { __out.push('
        \n '); __out.push(this.T('We are sorry, it takes longer as expected to get an empty slot. Please try again later or send us an email. Thank you!')); __out.push('\n
        \n
        '); __out.push(this.T('Start new conversation')); __out.push('
        \n
        '); }).call(this); }).call(__obj); __obj.safe = __objSafe, __obj.escape = __escape; return __out.join(''); };