/* * * (c) Copyright Ascensio System SIA 2010-2019 * * This program is a free software product. You can redistribute it and/or * modify it under the terms of the GNU Affero General Public License (AGPL) * version 3 as published by the Free Software Foundation. In accordance with * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect * that Ascensio System SIA expressly excludes the warranty of non-infringement * of any third-party rights. * * This program is distributed WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html * * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha * street, Riga, Latvia, EU, LV-1050. * * The interactive user interfaces in modified source and object code versions * of the Program must display Appropriate Legal Notices, as required under * Section 5 of the GNU AGPL version 3. * * Pursuant to Section 7(b) of the License you must retain the original Product * logo when distributing the program. Pursuant to Section 7(e) we decline to * grant you any rights under trademark law for use of our trademarks. * * All the Product's GUI elements, including illustrations and icon sets, as * well as technical writing content are licensed under the terms of the * Creative Commons Attribution-ShareAlike 4.0 International. See the License * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode * */ /** * OpenDialog.js * * Select Codepage for open CSV/TXT format file. * * Created by Alexey.Musinov on 29/04/14 * Copyright (c) 2018 Ascensio System SIA. All rights reserved. * */ define([ 'common/main/lib/component/Window' ], function () { 'use strict'; Common.Views.OpenDialog = Common.UI.Window.extend(_.extend({ applyFunction: undefined, initialize : function (options) { var t = this, _options = {}; var width, height; if (options.preview) { width = 414; height = 277; } else { width = (options.type !== Common.Utils.importTextType.DRM) ? 340 : (options.warning ? 420 : 262); height = (options.type == Common.Utils.importTextType.CSV || options.type == Common.Utils.importTextType.Paste || options.type == Common.Utils.importTextType.Columns) ? 190 : (options.warning ? 187 : 147); } _.extend(_options, { closable : false, // true if save settings preview : options.preview, warning : options.warning, codepages : options.codepages, width : width, height : height, header : true, cls : 'open-dlg', contentTemplate : '', toolcallback : _.bind(t.onToolClose, t), closeFile : false }, options); this.template = options.template || [ '
', '
', '<% if (type == Common.Utils.importTextType.DRM) { %>', '<% if (warning) { %>', '
', '
', '
' + t.txtProtected+ '
', '', '
', '
', '<% } else { %>', '
', '', '
', '
', '<% } %>', '<% } else { %>', '<% if (codepages && codepages.length>0) { %>', '
', '', '
', '
', '
', '
', '<% } %>', '<% if (type == Common.Utils.importTextType.CSV || type == Common.Utils.importTextType.Paste || type == Common.Utils.importTextType.Columns) { %>', '
', '', '
', '
', '
', '
', '
', '<% } %>', '<% if (!!preview) { %>', '
', '', '
', '
', '
', '
', '
', '
', '
', '
', '
', '
', '<% } %>', '<% } %>', '
', '
', '' ].join(''); this.handler = _options.handler; this.type = _options.type; this.preview = _options.preview; this.previewData = _options.previewData; this.warning = _options.warning || false; this.closable = _options.closable; this.codepages = _options.codepages; this.settings = _options.settings; this.api = _options.api; this.validatePwd = _options.validatePwd || false; _options.tpl = _.template(this.template)(_options); Common.UI.Window.prototype.initialize.call(this, _options); }, render: function () { Common.UI.Window.prototype.render.call(this); if (this.$window) { var me = this; if (!this.closable) this.$window.find('.tool').hide(); this.$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this)); this.previewPanel = this.$window.find('#id-preview-data'); this.previewParent = this.previewPanel.parent(); this.previewScrolled = this.$window.find('#id-preview'); this.previewInner = this.previewScrolled.find('div:first-child'); if (this.type == Common.Utils.importTextType.DRM) { this.inputPwd = new Common.UI.InputField({ el: $('#id-password-txt'), type: 'text', validateOnBlur: false, validation : function(value) { return me.txtIncorrectPwd; } }); this.$window.find('input').on('input', function(){ if ($(this).val() !== '') { ($(this).attr('type') !== 'password') && $(this).attr('type', 'password'); } else { $(this).attr('type', 'text'); } }); } else { this.initCodePages(); if (this.preview) { (this.previewData) ? this.previewCallback(this.previewData) : this.updatePreview(); } } this.onPrimary = function() { me._handleInput('ok'); return false; }; } }, show: function() { Common.UI.Window.prototype.show.apply(this, arguments); if (this.type == Common.Utils.importTextType.DRM) { var me = this; setTimeout(function(){ me.inputPwd.cmpEl.find('input').focus(); if (me.validatePwd) me.inputPwd.checkValidate(); }, 500); } }, onBtnClick: function(event) { this._handleInput(event.currentTarget.attributes['result'].value); }, onToolClose: function() { this._handleInput('cancel'); }, _handleInput: function(state) { if (this.handler) { if (this.type == Common.Utils.importTextType.DRM) { this.handler.call(this, state, this.inputPwd.getValue()); } else { var encoding = (this.cmbEncoding && !this.cmbEncoding.isDisabled()) ? this.cmbEncoding.getValue() : ((this.settings && this.settings.asc_getCodePage()) ? this.settings.asc_getCodePage() : 0), delimiter = this.cmbDelimiter ? this.cmbDelimiter.getValue() : null, delimiterChar = (delimiter == -1) ? this.inputDelimiter.getValue() : null; (delimiter == -1) && (delimiter = null); if (!this.closable && this.type == Common.Utils.importTextType.TXT) { //save last encoding only for opening txt files Common.localStorage.setItem("de-settings-open-encoding", encoding); } this.handler.call(this, state, encoding, delimiter, delimiterChar); } } this.close(); }, initCodePages: function () { var i, c, codepage, encodedata = [], listItems = [], length = 0, lcid_width = 0; if (this.codepages) { encodedata = []; for (i = 0; i < this.codepages.length; ++i) { codepage = this.codepages[i]; c = []; c[0] = codepage.asc_getCodePage(); c[1] = codepage.asc_getCodePageName(); c[2] = codepage.asc_getLcid(); encodedata.push(c); } lcid_width = 50; } length = encodedata.length; if (length) { for (i = 0; i < length; ++i) { listItems.push({ value: encodedata[i][0], displayValue: Common.Utils.String.htmlEncode(encodedata[i][1]), lcid: encodedata[i][2] || '' }); } var itemsTemplate = _.template([ '<% _.each(items, function(item) { %>', '
  • ', '
    <%= item.displayValue %>
    ', '', '
  • ', '<% }); %>' ].join('')); this.cmbEncoding = new Common.UI.ComboBox({ el: $('#id-codepages-combo', this.$window), style: 'width: 100%;', menuStyle: 'min-width: 100%; max-height: 200px;', cls: 'input-group-nr', menuCls: 'scrollable-menu', data: listItems, editable: false, disabled: true, search: true, itemsTemplate: itemsTemplate }); this.cmbEncoding.setDisabled(false); var encoding = (this.settings && this.settings.asc_getCodePage()) ? this.settings.asc_getCodePage() : encodedata[0][0]; if (!this.closable && this.type == Common.Utils.importTextType.TXT) { // only for opening txt files var value = Common.localStorage.getItem("de-settings-open-encoding"); value && (encoding = parseInt(value)); } this.cmbEncoding.setValue(encoding); if (this.preview) this.cmbEncoding.on('selected', _.bind(this.onCmbEncodingSelect, this)); var ul = this.cmbEncoding.cmpEl.find('ul'), a = ul.find('li:nth(0) a'), width = ul.width() - parseInt(a.css('padding-left')) - parseInt(a.css('padding-right')) - 50; ul.find('li div').width(width); } if (this.type == Common.Utils.importTextType.CSV || this.type == Common.Utils.importTextType.Paste || this.type == Common.Utils.importTextType.Columns) { this.cmbDelimiter = new Common.UI.ComboBox({ el: $('#id-delimiters-combo', this.$window), style: 'width: 100px;', menuStyle: 'min-width: 100px;', cls: 'input-group-nr', data: [ {value: 4, displayValue: this.txtComma}, {value: 2, displayValue: this.txtSemicolon}, {value: 3, displayValue: this.txtColon}, {value: 1, displayValue: this.txtTab}, {value: 5, displayValue: this.txtSpace}, {value: -1, displayValue: this.txtOther}], editable: false }); this.cmbDelimiter.setValue( (this.settings && this.settings.asc_getDelimiter()) ? this.settings.asc_getDelimiter() : 4); this.cmbDelimiter.on('selected', _.bind(this.onCmbDelimiterSelect, this)); this.inputDelimiter = new Common.UI.InputField({ el : $('#id-delimiter-other'), style : 'width: 30px;', maxLength: 1, validateOnChange: true, validateOnBlur: false, value: (this.settings && this.settings.asc_getDelimiterChar()) ? this.settings.asc_getDelimiterChar() : '' }); this.inputDelimiter.setVisible(false); if (this.preview) this.inputDelimiter.on ('changing', _.bind(this.updatePreview, this)); } }, updatePreview: function() { var encoding = (this.cmbEncoding && !this.cmbEncoding.isDisabled()) ? this.cmbEncoding.getValue() : ((this.settings && this.settings.asc_getCodePage()) ? this.settings.asc_getCodePage() : 0); var delimiter = this.cmbDelimiter ? this.cmbDelimiter.getValue() : null, delimiterChar = (delimiter == -1) ? this.inputDelimiter.getValue() : null; (delimiter == -1) && (delimiter = null); switch (this.type) { case Common.Utils.importTextType.CSV: this.api.asc_decodeBuffer(this.preview, new Asc.asc_CTextOptions(encoding, delimiter, delimiterChar), _.bind(this.previewCallback, this)); break; case Common.Utils.importTextType.TXT: this.api.asc_decodeBuffer(this.preview, new Asc.asc_CTextOptions(encoding), _.bind(this.previewCallback, this)); break; case Common.Utils.importTextType.Paste: case Common.Utils.importTextType.Columns: this.api.asc_TextImport(new Asc.asc_CTextOptions(encoding, delimiter, delimiterChar), _.bind(this.previewCallback, this), this.type == Common.Utils.importTextType.Paste); break; } }, previewCallback: function(data) { if (!data || !data.length) return; this.data = data; this.previewInner.height(data.length*17); if (!this.scrollerY) this.scrollerY = new Common.UI.Scroller({ el: this.previewScrolled, minScrollbarLength : 20, alwaysVisibleY: true, alwaysVisibleX: true, onChange: _.bind(function(){ if (this.scrollerY) { var startPos = this.scrollerY.getScrollTop(), start = Math.floor(startPos/17+0.5), end = start+Math.min(6, this.data.length); if (end>this.data.length) { end = this.data.length; start = this.data.length-6; startPos = start*17; } this.previewParent.height(108); this.previewParent.css({top: startPos}); this.previewDataBlock(this.data.slice(start, end)); } }, this) }); this.scrollerY.update(); this.scrollerY.scrollTop(0); }, previewDataBlock: function(data) { if (!_.isUndefined(this.scrollerX)) { this.scrollerX.destroy(); delete this.scrollerX; } if (this.type == Common.Utils.importTextType.CSV || this.type == Common.Utils.importTextType.Paste || this.type == Common.Utils.importTextType.Columns) { var maxlength = 0; for (var i=0; imaxlength) maxlength = data[i].length; } var tpl = ''; for (var i=0; i'; } for (j=data[i].length; j'; } tpl += '
    '; } this.previewPanel.html(tpl); this.scrollerX = new Common.UI.Scroller({ el: this.previewPanel, suppressScrollY: true, alwaysVisibleX: true, minScrollbarLength : 20 }); }, onCmbDelimiterSelect: function(combo, record){ this.inputDelimiter.setVisible(record.value == -1); (record.value == -1) && this.inputDelimiter.cmpEl.find('input').focus(); if (this.preview) this.updatePreview(); }, onCmbEncodingSelect: function(combo, record){ this.updatePreview(); }, txtDelimiter : "Delimiter", txtEncoding : "Encoding ", txtSpace : "Space", txtTab : "Tab", txtTitle : "Choose %1 options", txtPassword : "Password", txtTitleProtected : "Protected File", txtOther: 'Other', txtIncorrectPwd: 'Password is incorrect.', closeButtonText: 'Close File', txtPreview: 'Preview', txtComma: 'Comma', txtColon: 'Colon', txtSemicolon: 'Semicolon', txtProtected: 'Once you enter the password and open the file, the current password to the file will be reset.' }, Common.Views.OpenDialog || {})); });