web-apps/apps/documenteditor/forms/app/view/ApplicationView.js

103 lines
4.1 KiB
JavaScript
Raw Normal View History

2021-08-06 10:55:26 +00:00
define([
'jquery',
'underscore',
'backbone',
'common/main/lib/util/utils',
2021-08-18 21:52:04 +00:00
'common/main/lib/component/InputField',
2021-08-06 10:55:26 +00:00
'common/main/lib/component/Button',
2021-08-20 08:22:17 +00:00
'common/main/lib/component/Menu'
2021-08-06 10:55:26 +00:00
], function ($, _, Backbone) {
'use strict';
2021-10-29 19:29:47 +00:00
DE.Views.ApplicationView = Backbone.View.extend(_.extend({
2021-08-06 10:55:26 +00:00
// Render layout
render: function() {
2021-08-07 08:44:58 +00:00
this.btnOptions = new Common.UI.Button({
cls: 'btn-toolbar no-caret',
iconCls: 'svg-icon more-vertical',
menu: new Common.UI.Menu({
items: [
{caption: this.txtPrint, value: 'print', iconCls: 'mi-icon svg-icon print'},
{caption: '--'},
{caption: this.txtDownload, value: 'download', iconCls: 'mi-icon svg-icon download'},
{caption: this.txtDownloadDocx, value: 'download-docx', iconCls: 'mi-icon svg-icon download'},
{caption: this.txtDownloadPdf, value: 'download-pdf', iconCls: 'mi-icon'},
{caption: '--'},
{caption: this.txtTheme, value: 'theme', iconCls: 'mi-icon',
menu : this.mnuThemes = new Common.UI.Menu({
cls: 'shifted-right',
menuAlign: 'tl-tr',
restoreHeight: true,
items: []
})
},
{caption: '--'},
2021-08-07 08:44:58 +00:00
{caption: this.txtShare, value: 'share', iconCls: 'mi-icon svg-icon share'},
{caption: this.txtFileLocation, value: 'close', iconCls: 'mi-icon svg-icon go-to-location'},
{caption: '--'},
{caption: this.txtEmbed, value: 'embed', iconCls: 'mi-icon svg-icon embed'},
{caption: this.txtFullScreen, value: 'fullscr', iconCls: 'mi-icon svg-icon fullscr'}
]
})
});
this.btnOptions.render($('#box-tools'));
2021-08-06 10:55:26 +00:00
2021-08-18 18:29:47 +00:00
this.btnClear = new Common.UI.Button({
cls: 'btn-toolbar',
iconCls: 'svg-icon clear-style',
caption: this.textClear
});
this.btnClear.render($('#id-btn-clear-fields'));
this.btnNext = new Common.UI.Button({
cls: 'btn-toolbar',
iconCls: 'svg-icon arrow-down',
caption: this.textNext
});
this.btnNext.render($('#id-btn-next-field'));
this.btnPrev = new Common.UI.Button({
cls: 'btn-toolbar',
iconCls: 'svg-icon arrow-up'
});
this.btnPrev.render($('#id-btn-prev-field'));
2021-08-06 10:55:26 +00:00
2021-08-19 20:09:18 +00:00
this.btnSubmit = new Common.UI.Button({
cls: 'btn-text-default colored margin-left-small margin-right-small',
caption: this.textSubmit
});
this.btnSubmit.render($('#id-submit-group'));
2021-10-29 17:15:38 +00:00
this.btnDownload = new Common.UI.Button({
cls: 'btn-text-default colored margin-left-small margin-right-small',
caption: this.txtDownload,
hint: this.txtDownloadPdf
});
this.btnDownload.render($('#id-download-group'));
2021-08-18 21:52:04 +00:00
this.txtGoToPage = new Common.UI.InputField({
el: $('#page-number'),
cls: 'masked',
allowBlank : true,
style : 'width: 35px;',
value: '1',
maskExp: /[0-9]/
});
2021-08-18 20:15:52 +00:00
return this;
2021-08-06 17:07:03 +00:00
},
2021-08-06 10:55:26 +00:00
txtDownload: 'Download',
txtPrint: 'Print',
txtShare: 'Share',
txtEmbed: 'Embed',
txtFullScreen: 'Full Screen',
txtFileLocation: 'Open file location',
txtDownloadDocx: 'Download as docx',
2021-08-18 18:29:47 +00:00
txtDownloadPdf: 'Download as pdf',
textNext: 'Next Field',
2021-08-19 20:09:18 +00:00
textClear: 'Clear All Fields',
textSubmit: 'Submit',
txtTheme: 'Interface theme'
2021-10-29 19:29:47 +00:00
}, DE.Views.ApplicationView || {}));
2021-08-06 10:55:26 +00:00
});