/* * (c) Copyright Ascensio System SIA 2010-2024 * * 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-6 Ernesta Birznieka-Upish * 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 * */ /** * HyperlinkSettingsDialog.js * * Created on 04/23/24 * */ if (Common === undefined) var Common = {}; var c_oHyperlinkType = { InternalLink:0, WebLink: 1 }; define([], function () { 'use strict'; PDFE.Views.HyperlinkSettingsDialog = Common.UI.Window.extend(_.extend({ initialize : function(options) { var _options = {}; _.extend(_options, { title: this.textTitle, width: 350, style: 'min-width: 230px;', cls: 'modal-dlg', id: 'window-hyperlink-settings', buttons: ['ok', 'cancel'] }, options || {}); this.template = [ '
', '
', '', '', '
', '', '', '
', '', '
', '', '
', '', '
', '', '
' ].join(''); _options.tpl = _.template(this.template)(_options); this.slides = _options.slides; this.api = _options.api; this.urlType = AscCommon.c_oAscUrlType.Invalid; this.appOptions = _options.appOptions; this.isAnnotation = !!_options.isAnnotation; Common.UI.Window.prototype.initialize.call(this, _options); }, render: function() { Common.UI.Window.prototype.render.call(this); var me = this, $window = this.getChild(); me.btnExternal = new Common.UI.Button({ el: $('#id-dlg-hyperlink-external'), enableToggle: true, toggleGroup: 'hyperlink-type', allowDepress: false, pressed: true }); me.btnExternal.on('click', _.bind(me.onLinkTypeClick, me, c_oHyperlinkType.WebLink)); me.btnInternal = new Common.UI.Button({ el: $('#id-dlg-hyperlink-internal'), enableToggle: true, toggleGroup: 'hyperlink-type', allowDepress: false }); me.btnInternal.on('click', _.bind(me.onLinkTypeClick, me, c_oHyperlinkType.InternalLink)); Common.UI.GroupedButtons([me.btnExternal, me.btnInternal]); var config = { el : $('#id-dlg-hyperlink-url'), allowBlank : false, blankError : me.txtEmpty, validateOnBlur: false, style : 'width: 100%;', iconCls: 'toolbar__icon btn-browse', placeHolder: me.appOptions.isDesktopApp ? me.txtUrlPlaceholder : '', btnHint: me.textSelectFile, validation : function(value) { var trimmed = $.trim(value); if (trimmed.length>2083) return me.txtSizeLimit; me.urlType = me.api.asc_getUrlType(trimmed); return (me.urlType!==AscCommon.c_oAscUrlType.Invalid) ? true : me.txtNotUrl; } }; me.inputUrl = me.appOptions.isDesktopApp ? new Common.UI.InputFieldBtn(config) : new Common.UI.InputField(config); me.inputUrl._input.on('input', function (e) { me.isInputFirstChange && me.inputUrl.showError(); me.isInputFirstChange = false; var val = $(e.target).val(); if (me.isAutoUpdate) { me.inputDisplay.setValue(val); me.isTextChanged = true; } me.btnOk.setDisabled($.trim(val)==''); }); me.appOptions.isDesktopApp && me.inputUrl.on('button:click', _.bind(me.onSelectFile, me)); me.inputDisplay = new Common.UI.InputField({ el : $('#id-dlg-hyperlink-display'), allowBlank : true, validateOnBlur: false, style : 'width: 100%;' }).on('changed:after', function() { me.isTextChanged = true; }); me.inputDisplay._input.on('input', function (e) { me.isAutoUpdate = ($(e.target).val()==''); }); me.inputTip = new Common.UI.InputField({ el : $('#id-dlg-hyperlink-tip'), style : 'width: 100%;', maxLength : Asc.c_oAscMaxTooltipLength }); me.internalList = new Common.UI.TreeView({ el: $('#id-dlg-hyperlink-list'), store: new Common.UI.TreeViewStore(), enableKeyEvents: true, tabindex: 1 }); me.internalList.on('item:select', _.bind(this.onSelectItem, this)); me.chPageView = new Common.UI.CheckBox({ el: $window.find('#id-dlg-hyperlink-chb-page'), labelText: this.txtPageView }).on('change', function(field, newValue, oldValue, eOpts){ me.internalList.setDisabled(newValue==='checked'); var rec = me.internalList.getSelectedRec(); me.btnOk.setDisabled((!rec || rec.get('index')==4) && (newValue!=='checked')); }); me.btnOk = _.find(this.getFooterButtons(), function (item) { return (item.$el && item.$el.find('.primary').addBack().filter('.primary').length>0); }) || new Common.UI.Button({ el: $window.find('.primary') }); me.btnOk.setDisabled(true); $window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this)); me.internalList.on('entervalue', _.bind(me.onPrimary, me)); me.externalPanel = $window.find('#id-external-link'); me.internalPanel = $window.find('#id-internal-link'); if (me.isAnnotation) { $window.find('.not-annotation').addClass('hidden'); } else me.chPageView.setVisible(false); }, getFocusedComponents: function() { return [this.btnExternal, this.btnInternal, this.inputUrl, this.internalList, this.inputDisplay, this.inputTip, this.chPageView].concat(this.getFooterButtons()); }, setSettings: function (props) { if (props) { var me = this; var type = me.parseUrl(props.get_Value()); (type == c_oHyperlinkType.WebLink) ? me.btnExternal.toggle(true) : me.btnInternal.toggle(true); me.ShowHideElem(type, props.get_Value()); if (props.get_Text()!==null) { me.inputDisplay.setValue(props.get_Text()); me.inputDisplay.setDisabled(false); me.isAutoUpdate = (me.inputDisplay.getValue()=='' || type == c_oHyperlinkType.WebLink && me.inputUrl.getValue()==me.inputDisplay.getValue()); } else { this.inputDisplay.setValue(this.textDefault); this.inputDisplay.setDisabled(true); } this.isTextChanged = false; this.inputTip.setValue(props.get_ToolTip()); this.isAnnotation && this.chPageView.setValue(props.get_PageView()); me._originalProps = props; } else { this.btnExternal.toggle(true); this.ShowHideElem(c_oHyperlinkType.WebLink); } }, getSettings: function () { var me = this, props = new Asc.CHyperlinkProperty(); var def_display = '', type = this.btnExternal.isActive() ? c_oHyperlinkType.WebLink : c_oHyperlinkType.InternalLink; if (type==c_oHyperlinkType.InternalLink) {//InternalLink var url = "ppaction://hlink"; var tip = ''; var txttip = me.inputTip.getValue(); var rec = this.internalList.getSelectedRec(); if (rec) { url = url + rec.get('type'); tip = rec.get('tiptext'); } props.put_Value( url ); !this.isAnnotation && props.put_ToolTip(_.isEmpty(txttip) ? tip : txttip); def_display = tip; } else { var url = $.trim(me.inputUrl.getValue()); if (me.urlType!==AscCommon.c_oAscUrlType.Unsafe && ! /(((^https?)|(^ftp)):\/\/)|(^mailto:)/i.test(url) ) url = ( (me.urlType==AscCommon.c_oAscUrlType.Email) ? 'mailto:' : 'http://' ) + url; url = url.replace(new RegExp("%20",'g')," "); props.put_Value( url ); !this.isAnnotation && props.put_ToolTip(me.inputTip.getValue()); def_display = url; } if (!me.inputDisplay.isDisabled() && (me.isTextChanged || _.isEmpty(me.inputDisplay.getValue()))) { if (_.isEmpty(me.inputDisplay.getValue()) || type==c_oHyperlinkType.WebLink && me.isAutoUpdate) me.inputDisplay.setValue(def_display); !this.isAnnotation && props.put_Text(me.inputDisplay.getValue()); } else !this.isAnnotation && props.put_Text(null); return props; }, onBtnClick: function(event) { if (event.currentTarget && event.currentTarget.attributes['result']) this._handleInput(event.currentTarget.attributes['result'].value); }, onPrimary: function(event) { this._handleInput('ok'); return false; }, _handleInput: function(state) { if (state === 'ok' && this.btnOk.isDisabled()) return; if (this.options.handler) { if (state == 'ok') { if (this.isAnnotation && this.btnInternal.isActive() && this.chPageView.getValue()==='checked') { var me = this; me.hide(); Common.NotificationCenter.trigger('editing:disable', true, { viewMode: true, allowSignature: false, statusBar: true, rightMenu: {clear: true, disable: true}, leftMenu: {disable: true, previewMode: true}, fileMenu: {protect: true}, navigation: {disable: true, previewMode: true}, comments: {disable: true, previewMode: true}, chat: true, viewport: true, documentHolder: {clear: true, disable: true}, toolbar: true, plugins: false, header: {docmode: true, search: true}, shortcuts: true }, 'setlink'); me.api.SetCanInteract(false); Common.UI.alert({ modal: false, maxwidth: 400, title: this.txtCreateLink, msg: this.txtCreateDesc, buttons: [ {caption: this.txtSetLink, primary: true, value: 'ok'}, 'cancel'], callback: function(btn){ if (btn === 'ok') { me.options.handler.call(me, me, 'view'); } me.close(); Common.NotificationCenter.trigger('editing:disable', false, { viewMode: false, allowSignature: false, statusBar: true, rightMenu: {clear: true, disable: true}, leftMenu: {disable: true, previewMode: true}, fileMenu: {protect: true}, navigation: {disable: true, previewMode: true}, comments: {disable: true, previewMode: true}, chat: true, viewport: true, documentHolder: {clear: true, disable: true}, toolbar: true, plugins: false, header: {docmode: true, search: true}, shortcuts: true }, 'setlink'); me.api.SetCanInteract(true); } }); return; } var checkurl = (this.btnExternal.isActive()) ? this.inputUrl.checkValidate() : true; if (checkurl !== true) { this.isInputFirstChange = true; this.inputUrl.focus(); return; } if (!this.isAnnotation) { var checkdisp = this.inputDisplay.checkValidate(); if (checkdisp !== true) { this.inputDisplay.focus(); return; } !this._originalProps.get_Value() && Common.Utils.InternalSettings.set("pdfe-settings-link-type", this.btnInternal.isActive()); } } this.options.handler.call(this, this, state); } this.close(); }, ShowHideElem: function(value, url) { this.externalPanel.toggleClass('hidden', value !== c_oHyperlinkType.WebLink); this.internalPanel.toggleClass('hidden', value !== c_oHyperlinkType.InternalLink); if (value==c_oHyperlinkType.InternalLink) { if (url===null || url===undefined || url=='' ) url = "ppaction://hlinkshowjump?jump=firstslide"; var store = this.internalList.store; if (store.length<1) { var arr = [], i = 0; arr.push(new Common.UI.TreeViewModel({ name : this.txtFirst, level: 0, index: i++, hasParent: false, isEmptyItem: false, isNotHeader: true, hasSubItems: false, type: "showjump?jump=firstslide", tiptext: this.txtFirst, selected: url == "ppaction://hlinkshowjump?jump=firstslide" })); arr.push(new Common.UI.TreeViewModel({ name : this.txtLast, level: 0, index: i++, hasParent: false, isEmptyItem: false, isNotHeader: true, hasSubItems: false, type: "showjump?jump=lastslide", tiptext: this.txtLast, selected: url == "ppaction://hlinkshowjump?jump=lastslide" })); arr.push(new Common.UI.TreeViewModel({ name : this.txtNext, level: 0, index: i++, hasParent: false, isEmptyItem: false, isNotHeader: true, hasSubItems: false, type: "showjump?jump=nextslide", tiptext: this.txtNext, selected: url == "ppaction://hlinkshowjump?jump=nextslide" })); arr.push(new Common.UI.TreeViewModel({ name : this.txtPrev, level: 0, index: i++, hasParent: false, isEmptyItem: false, isNotHeader: true, hasSubItems: false, type: "showjump?jump=previousslide", tiptext: this.txtPrev, selected: url == "ppaction://hlinkshowjump?jump=previousslide" })); arr.push(new Common.UI.TreeViewModel({ name : this.textPages, level: 0, index: i++, hasParent: false, isEmptyItem: false, isNotHeader: true, hasSubItems: this.api.getCountPages()>0 })); var mask = "ppaction://hlinksldjumpslide", indSlide = url.indexOf(mask), slideNum = (0 == indSlide) ? parseInt(url.substring(mask.length)) : -1; for (var i=0; i