Merge branch 'develop' of github.com:martini/zammad into develop

This commit is contained in:
Martin Edenhofer 2015-11-12 17:16:30 +01:00
commit 7dec6fa9dd
7 changed files with 187 additions and 103 deletions

View file

@ -352,22 +352,26 @@ do($ = window.jQuery, window) ->
@lastTimestamp = timestamp @lastTimestamp = timestamp
else else
# add new timestamp # add new timestamp
@addStatus label, time @el.find('.zammad-chat-body').append @view('timestamp')
label: label
time: time
@lastTimestamp = timestamp @lastTimestamp = timestamp
@lastAddedType = 'timestamp' @lastAddedType = 'timestamp'
@scrollToBottom()
updateLastTimestamp: (label, time) -> updateLastTimestamp: (label, time) ->
@el.find('.zammad-chat-body') @el.find('.zammad-chat-body')
.find('.zammad-chat-status') .find('.zammad-chat-timestamp')
.last() .last()
.replaceWith @view('status') .replaceWith @view('timestamp')
label: label label: label
time: time time: time
addStatus: (label, time) -> addStatus: (status) ->
@el.find('.zammad-chat-body').append @view('status') @el.find('.zammad-chat-body').append @view('status')
label: label status: status
time: time
@scrollToBottom()
scrollToBottom: -> scrollToBottom: ->
@el.find('.zammad-chat-body').scrollTop($('.zammad-chat-body').prop('scrollHeight')) @el.find('.zammad-chat-body').scrollTop($('.zammad-chat-body').prop('scrollHeight'))

View file

@ -168,7 +168,7 @@
overflow: auto; overflow: auto;
background: white; } background: white; }
.zammad-chat-status { .zammad-chat-timestamp {
text-align: center; text-align: center;
color: #999999; color: #999999;
font-size: 0.8em; font-size: 0.8em;
@ -177,6 +177,7 @@
.zammad-chat-message { .zammad-chat-message {
margin: 0.5em 0; } margin: 0.5em 0; }
.zammad-chat-status,
.zammad-chat-message-body { .zammad-chat-message-body {
padding: 0.5em 1em; padding: 0.5em 1em;
line-height: 1.4; line-height: 1.4;
@ -188,6 +189,16 @@
word-wrap: break-word; word-wrap: break-word;
box-shadow: 0 2px rgba(255, 255, 255, 0.15) inset, 0 0 0 1px rgba(0, 0, 0, 0.08) inset, 0 1px rgba(0, 0, 0, 0.02); } box-shadow: 0 2px rgba(255, 255, 255, 0.15) inset, 0 0 0 1px rgba(0, 0, 0, 0.08) inset, 0 1px rgba(0, 0, 0, 0.02); }
.zammad-chat-status {
display: inline-block;
position: relative;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
margin: 1em 0;
background: #eee; }
.zammad-chat-message--customer { .zammad-chat-message--customer {
text-align: right; } text-align: right; }
@ -321,7 +332,8 @@
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset; } box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset; }
.zammad-chat--flat .zammad-chat-agent-status, .zammad-chat--flat .zammad-chat-agent-status,
.zammad-chat--flat .zammad-chat-send { .zammad-chat--flat .zammad-chat-send,
.zammad-chat--flat .zammad-chat-status {
box-shadow: none; } box-shadow: none; }
/* /*

View file

@ -1,68 +1,3 @@
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, '&lt;')
.replace(/>/g, '&gt;')
.replace(/"/g, '&quot;');
};
}
(function() {
(function() {
if (this.agent.avatar) {
__out.push('\n<img class="zammad-chat-agent-avatar" src="');
__out.push(__sanitize(this.agent.avatar));
__out.push('">\n');
}
__out.push('\n<span class="zammad-chat-agent-sentence">\n <span class="zammad-chat-agent-name">');
__out.push(__sanitize(this.agent.name));
__out.push('</span> ');
__out.push(this.agentPhrase);
__out.push('\n</span>');
}).call(this);
}).call(__obj);
__obj.safe = __objSafe, __obj.escape = __escape;
return __out.join('');
};
var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }, var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },
slice = [].slice; slice = [].slice;
@ -190,7 +125,11 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
this.el = $(this.view('chat')(this.options)); this.el = $(this.view('chat')(this.options));
this.options.target.append(this.el); this.options.target.append(this.el);
this.input = this.el.find('.zammad-chat-input'); this.input = this.el.find('.zammad-chat-input');
this.el.find('.js-chat-open').click(this.open); this.el.find('.js-chat-open').click((function(_this) {
return function() {
return _this.open();
};
})(this));
this.el.find('.js-chat-close').click(this.close); this.el.find('.js-chat-close').click(this.close);
this.el.find('.zammad-chat-controls').on('submit', this.onSubmit); this.el.find('.zammad-chat-controls').on('submit', this.onSubmit);
this.input.on({ this.input.on({
@ -297,10 +236,7 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
this.input.val(unfinishedMessage); this.input.val(unfinishedMessage);
} }
this.show(); this.show();
this.open({ this.open();
showLoader: false,
animate: false
});
if (unfinishedMessage) { if (unfinishedMessage) {
return this.input.focus(); return this.input.focus();
} }
@ -384,21 +320,15 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
return this.scrollToBottom(); return this.scrollToBottom();
}; };
ZammadChat.prototype.open = function(options) { ZammadChat.prototype.open = function() {
if (options == null) {
options = {
showLoader: true,
animate: true
};
}
if (this.isOpen) { if (this.isOpen) {
return; return;
} }
if (options.showLoader) { if (!this.sessionId) {
this.showLoader(); this.showLoader();
} }
this.el.addClass('zammad-chat-is-open'); this.el.addClass('zammad-chat-is-open');
if (options.animate) { if (!this.sessionId) {
this.el.animate({ this.el.animate({
bottom: 0 bottom: 0
}, 500, this.onOpenAnimationEnd); }, 500, this.onOpenAnimationEnd);
@ -410,7 +340,9 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
}; };
ZammadChat.prototype.onOpenAnimationEnd = function() { ZammadChat.prototype.onOpenAnimationEnd = function() {
return this.session_init(); if (!this.sessionId) {
return this.session_init();
}
}; };
ZammadChat.prototype.close = function(event) { ZammadChat.prototype.close = function(event) {
@ -468,7 +400,7 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
var show; var show;
show = (function(_this) { show = (function(_this) {
return function() { return function() {
return _this.onQueue(data.position); return _this.onQueue(data);
}; };
})(this); })(this);
if (this.initialQueueDelay && !this.onInitialQueueDelayId) { if (this.initialQueueDelay && !this.onInitialQueueDelayId) {
@ -481,8 +413,8 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
return show(); return show();
}; };
ZammadChat.prototype.onQueue = function(position) { ZammadChat.prototype.onQueue = function(data) {
this.log('notice', 'onQueue', position); this.log('notice', 'onQueue', data.position);
this.inQueue = true; this.inQueue = true;
this.setSessionId(data.session_id); this.setSessionId(data.session_id);
return this.el.find('.zammad-chat-body').html(this.view('waiting')({ return this.el.find('.zammad-chat-body').html(this.view('waiting')({
@ -517,25 +449,29 @@ var bind = function(fn, me){ return function(){ return fn.apply(me, arguments);
this.updateLastTimestamp(label, time); this.updateLastTimestamp(label, time);
return this.lastTimestamp = timestamp; return this.lastTimestamp = timestamp;
} else { } else {
this.addStatus(label, time); this.el.find('.zammad-chat-body').append(this.view('timestamp')({
label: label,
time: time
}));
this.lastTimestamp = timestamp; this.lastTimestamp = timestamp;
return this.lastAddedType = 'timestamp'; this.lastAddedType = 'timestamp';
return this.scrollToBottom();
} }
} }
}; };
ZammadChat.prototype.updateLastTimestamp = function(label, time) { ZammadChat.prototype.updateLastTimestamp = function(label, time) {
return this.el.find('.zammad-chat-body').find('.zammad-chat-status').last().replaceWith(this.view('status')({ return this.el.find('.zammad-chat-body').find('.zammad-chat-timestamp').last().replaceWith(this.view('timestamp')({
label: label, label: label,
time: time time: time
})); }));
}; };
ZammadChat.prototype.addStatus = function(label, time) { ZammadChat.prototype.addStatus = function(status) {
return this.el.find('.zammad-chat-body').append(this.view('status')({ this.el.find('.zammad-chat-body').append(this.view('status')({
label: label, status: status
time: time
})); }));
return this.scrollToBottom();
}; };
ZammadChat.prototype.scrollToBottom = function() { ZammadChat.prototype.scrollToBottom = function() {
@ -721,6 +657,71 @@ jQuery.fn.autoGrow = function(options) {
}); });
}; };
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, '&amp;')
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;')
.replace(/"/g, '&quot;');
};
}
(function() {
(function() {
if (this.agent.avatar) {
__out.push('\n<img class="zammad-chat-agent-avatar" src="');
__out.push(__sanitize(this.agent.avatar));
__out.push('">\n');
}
__out.push('\n<span class="zammad-chat-agent-sentence">\n <span class="zammad-chat-agent-name">');
__out.push(__sanitize(this.agent.name));
__out.push('</span> ');
__out.push(this.agentPhrase);
__out.push('\n</span>');
}).call(this);
}).call(__obj);
__obj.safe = __objSafe, __obj.escape = __escape;
return __out.join('');
};
if (!window.zammadChatTemplates) { if (!window.zammadChatTemplates) {
window.zammadChatTemplates = {}; window.zammadChatTemplates = {};
} }
@ -940,7 +941,62 @@ window.zammadChatTemplates["status"] = function (__obj) {
} }
(function() { (function() {
(function() { (function() {
__out.push('<div class="zammad-chat-status"><strong>'); __out.push('<div class="zammad-chat-status">');
__out.push(this.status);
__out.push('</div>');
}).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, '&amp;')
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;')
.replace(/"/g, '&quot;');
};
}
(function() {
(function() {
__out.push('<div class="zammad-chat-timestamp"><strong>');
__out.push(__sanitize(this.label)); __out.push(__sanitize(this.label));

File diff suppressed because one or more lines are too long

View file

@ -201,7 +201,7 @@ $baseTextColor: if($luminance < 0.2, white, black);
background: white; background: white;
} }
.zammad-chat-status { .zammad-chat-timestamp {
text-align: center; text-align: center;
color: hsl(0,0%,60%); color: hsl(0,0%,60%);
font-size: 0.8em; font-size: 0.8em;
@ -212,6 +212,7 @@ $baseTextColor: if($luminance < 0.2, white, black);
margin: 0.5em 0; margin: 0.5em 0;
} }
.zammad-chat-status,
.zammad-chat-message-body { .zammad-chat-message-body {
padding: 0.5em 1em; padding: 0.5em 1em;
line-height: 1.4; line-height: 1.4;
@ -227,6 +228,15 @@ $baseTextColor: if($luminance < 0.2, white, black);
0 1px rgba(0,0,0,.02); 0 1px rgba(0,0,0,.02);
} }
.zammad-chat-status {
display: inline-block;
position: relative;
left: 50%;
transform: translateX(-50%);
margin: 1em 0;
background: #eee;
}
.zammad-chat-message--customer { .zammad-chat-message--customer {
text-align: right; text-align: right;
} }
@ -353,7 +363,8 @@ $baseTextColor: if($luminance < 0.2, white, black);
box-shadow: 0 0 0 1px rgba(0,0,0,.08) inset; box-shadow: 0 0 0 1px rgba(0,0,0,.08) inset;
} }
.zammad-chat--flat .zammad-chat-agent-status, .zammad-chat--flat .zammad-chat-agent-status,
.zammad-chat--flat .zammad-chat-send { .zammad-chat--flat .zammad-chat-send,
.zammad-chat--flat .zammad-chat-status {
box-shadow: none; box-shadow: none;
} }

View file

@ -1 +1 @@
<div class="zammad-chat-status"><strong><%= @label %></strong> <%= @time %></div> <div class="zammad-chat-status"><%- @status %></div>

View file

@ -0,0 +1 @@
<div class="zammad-chat-timestamp"><strong><%= @label %></strong> <%= @time %></div>