[DE] Add list of signatures.

This commit is contained in:
Julia Radzhabova 2017-09-13 11:14:25 +03:00
parent 6034531a2d
commit bdb28e5dbb
3 changed files with 71 additions and 16 deletions

View file

@ -311,6 +311,7 @@ define([
setApi: function(api) { setApi: function(api) {
this.api = api; this.api = api;
this.panels['info'].setApi(api); this.panels['info'].setApi(api);
this.panels['protect'].setApi(api);
}, },
loadDocument: function(data) { loadDocument: function(data) {

View file

@ -1090,23 +1090,42 @@ define([
template: _.template([ template: _.template([
'<label style="font-size: 18px;"><%= scope.strProtect %></label>', '<label style="font-size: 18px;"><%= scope.strProtect %></label>',
'<table><tbody>', '<button id="fms-btn-final" class="btn btn-text-default" style="min-width:100px;"><%= scope.strMarkAsFinal %></button>',
'<tr>', '<button id="fms-btn-invisible-sign" class="btn btn-text-default" style="min-width:190px;"><%= scope.strInvisibleSign %></button>',
'<td><button id="fms-btn-final" class="btn btn-text-default" style="min-width:100px;width: auto;"><%= scope.strMarkAsFinal %></button></td>', '<button id="fms-btn-visible-sign" class="btn btn-text-default" style="min-width:190px;"><%= scope.strVisibleSign %></button>',
'</tr>', '<label class="header"><%= scope.strRequested %></label>',
'<tr>', '<div id="id-fms-requested-sign"></div>',
'<td><button id="fms-btn-invisible-sign" class="btn btn-text-default" style="min-width:190px;width: auto;"><%= scope.strInvisibleSign %></button></td>', '<label class="header"><%= scope.strValid %></label>',
'</tr>', '<div id="id-fms-valid-sign"></div>',
'<tr>', '<label class="header"><%= scope.strInvalid %></label>',
'<td><button id="fms-btn-visible-sign" class="btn btn-text-default" style="min-width:190px;width: auto;"><%= scope.strVisibleSign %></button></td>', '<div id="id-fms-invalid-sign"></div>'
'</tr>',
'</tbody></table>'
].join('')), ].join('')),
initialize: function(options) { initialize: function(options) {
Common.UI.BaseView.prototype.initialize.call(this,arguments); Common.UI.BaseView.prototype.initialize.call(this,arguments);
this.menu = options.menu; this.menu = options.menu;
this.templateRequested = _.template([
'<table>',
'<% _.each(signatures, function(item) { %>',
'<tr>',
'<td><%= Common.Utils.String.htmlEncode(item) %></td>',
'</tr>',
'<% }); %>',
'</table>'
].join(''));
this.templateValid = _.template([
'<table>',
'<% _.each(signatures, function(item) { %>',
'<tr>',
'<td><%= Common.Utils.String.htmlEncode(item.name) %></td>',
'<td><%= Common.Utils.String.htmlEncode(item.date) %></td>',
'</tr>',
'<% }); %>',
'</table>'
].join(''));
}, },
render: function() { render: function() {
@ -1127,6 +1146,10 @@ define([
}); });
this.btnAddVisibleSign.on('click', _.bind(this.addVisibleSign, this)); this.btnAddVisibleSign.on('click', _.bind(this.addVisibleSign, this));
this.cntRequestedSign = $('#id-fms-requested-sign');
this.cntValidSign = $('#id-fms-valid-sign');
this.cntInvalidSign = $('#id-fms-invalid-sign');
if (_.isUndefined(this.scroller)) { if (_.isUndefined(this.scroller)) {
this.scroller = new Common.UI.Scroller({ this.scroller = new Common.UI.Scroller({
el: $(this.el), el: $(this.el),
@ -1139,12 +1162,18 @@ define([
show: function() { show: function() {
Common.UI.BaseView.prototype.show.call(this,arguments); Common.UI.BaseView.prototype.show.call(this,arguments);
this.updateSignatures();
}, },
setMode: function(mode) { setMode: function(mode) {
this.mode = mode; this.mode = mode;
}, },
setApi: function(o) {
this.api = o;
return this;
},
markAsFinal: function() { markAsFinal: function() {
}, },
@ -1154,10 +1183,22 @@ define([
addVisibleSign: function() { addVisibleSign: function() {
}, },
updateSignatures: function(){
// this.cntRequestedSign.html(this.templateRequested({signatures: this.api.asc_getRequestedSignatures()}));
// this.cntValidSign.html(this.templateValid({signatures: this.api.asc_getValidSignatures()}));
// this.cntInvalidSign.html(this.templateInvalid({signatures: this.api.asc_getInvalidSignatures()}));
this.cntRequestedSign.html(this.templateRequested({signatures: ['Hammish Mitchell', 'Someone Somewhere', 'Mary White', 'John Black']}));
this.cntValidSign.html(this.templateValid({signatures: [{name: 'Hammish Mitchell', date: '18/05/2017'}, {name: 'Someone Somewhere', date: '18/05/2017'}]}));
this.cntInvalidSign.html(this.templateValid({signatures: [{name: 'Mary White', date: '18/05/2017'}, {name: 'John Black', date: '18/05/2017'}]}));
},
strProtect: 'Protect Document', strProtect: 'Protect Document',
strMarkAsFinal: 'Mark as final', strMarkAsFinal: 'Mark as final',
strInvisibleSign: 'Add invisible digital signature', strInvisibleSign: 'Add invisible digital signature',
strVisibleSign: 'Add visible signature' strVisibleSign: 'Add visible signature',
strRequested: 'Requested signatures',
strValid: 'Valid signatures',
strInvalid: 'Invalid signatures'
}, DE.Views.FileMenuPanels.ProtectDoc || {})); }, DE.Views.FileMenuPanels.ProtectDoc || {}));

View file

@ -84,12 +84,25 @@ button.notify .btn-menu-comments {background-position: -0*@toolbar-icon-size -60
padding: 30px 30px; padding: 30px 30px;
} }
table {
margin: 20px 0;
width: 100%;
button {
display: block;
width: auto;
margin-top: 20px;
}
label {
font: 12px tahoma, arial, verdana, sans-serif;
}
.header {
font-weight: bold;
margin: 30px 0 10px;
}
table {
td { td {
padding: 10px 0; padding: 5px 5px;
} }
} }
} }