2011-10-07 01:30:55 -03:00
|
|
|
/*
|
2015-04-12 00:15:12 -03:00
|
|
|
* Copyright [2015] [wisemapping]
|
2011-10-07 01:30:55 -03:00
|
|
|
*
|
|
|
|
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
|
|
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
|
|
|
* "powered by wisemapping" text requirement on every single page;
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the license at
|
|
|
|
*
|
|
|
|
* http://www.wisemapping.org/license
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2015-03-23 09:25:54 +01:00
|
|
|
mindplot.widget.LinkEditor = new Class(/** @lends LinkEditor */{
|
2014-03-29 17:13:31 -03:00
|
|
|
Extends:BootstrapDialog,
|
2014-04-03 22:39:23 -03:00
|
|
|
|
2015-03-23 09:25:54 +01:00
|
|
|
/**
|
|
|
|
* @constructs
|
|
|
|
* @param model
|
|
|
|
* @throws will throw an error if model is null or undefined
|
|
|
|
* @extends BootstrapDialog
|
|
|
|
*/
|
2012-08-28 00:33:27 -03:00
|
|
|
initialize:function (model) {
|
2011-10-07 01:30:55 -03:00
|
|
|
$assert(model, "model can not be null");
|
2014-04-19 16:28:28 -03:00
|
|
|
this._model = model;
|
2014-04-10 19:33:20 -03:00
|
|
|
this.parent($msg("LINK"), {
|
|
|
|
cancelButton: true,
|
|
|
|
closeButton: true,
|
2014-04-18 17:13:44 -03:00
|
|
|
acceptButton: true,
|
2014-09-14 17:45:11 -03:00
|
|
|
removeButton: typeof model.getValue() != 'undefined',
|
2014-05-04 15:59:12 -03:00
|
|
|
errorMessage: true,
|
2014-12-26 23:13:12 -03:00
|
|
|
onEventData: {model: this._model}
|
2014-04-10 19:33:20 -03:00
|
|
|
});
|
2014-09-11 11:35:31 -03:00
|
|
|
this.css({margin:"150px auto"});
|
2011-10-07 01:30:55 -03:00
|
|
|
var panel = this._buildPanel(model);
|
2014-04-03 22:39:23 -03:00
|
|
|
this.setContent(panel);
|
2011-10-07 01:30:55 -03:00
|
|
|
},
|
|
|
|
|
2012-08-28 00:33:27 -03:00
|
|
|
_buildPanel:function (model) {
|
2014-04-01 07:24:36 -03:00
|
|
|
var result = $('<div></div>').css("padding-top", "5px");
|
2014-05-10 17:58:29 -03:00
|
|
|
this.form = $('<form></form>').attr({
|
2014-04-19 16:28:28 -03:00
|
|
|
'action': 'none',
|
|
|
|
'id': 'linkFormId'
|
2014-04-02 15:57:32 -03:00
|
|
|
});
|
2014-04-01 07:24:36 -03:00
|
|
|
var text = $('<p></p>').text("Paste your url here:");
|
2014-04-19 16:28:28 -03:00
|
|
|
text.css('margin','0px 0px 20px');
|
2011-10-08 20:36:47 -03:00
|
|
|
|
2014-05-10 17:58:29 -03:00
|
|
|
this.form.append(text);
|
2014-04-01 07:24:36 -03:00
|
|
|
|
2014-04-19 16:28:28 -03:00
|
|
|
var section = $('<div></div>').attr({
|
|
|
|
'class': 'input-group'
|
|
|
|
});
|
2014-04-03 22:42:21 -03:00
|
|
|
|
2014-04-19 16:28:28 -03:00
|
|
|
// Add Input
|
2014-09-11 14:38:49 -03:00
|
|
|
var input = $('<input id="inputUrl"/>').attr({
|
2014-04-19 16:28:28 -03:00
|
|
|
'placeholder': 'http://www.example.com/',
|
|
|
|
'required': 'true',
|
|
|
|
'autofocus': 'autofocus',
|
|
|
|
'class': 'form-control'
|
2014-04-02 15:57:32 -03:00
|
|
|
});
|
2015-05-31 11:12:27 -03:00
|
|
|
input.on("keypress", function(event) {
|
|
|
|
event.stopPropagation();
|
|
|
|
});
|
2014-04-01 07:24:36 -03:00
|
|
|
|
|
|
|
if (model.getValue() != null){
|
2014-04-12 15:00:51 -03:00
|
|
|
input.val(model.getValue());
|
|
|
|
}
|
2011-10-07 01:30:55 -03:00
|
|
|
|
2014-04-01 07:24:36 -03:00
|
|
|
// Open Button
|
2014-04-19 16:28:28 -03:00
|
|
|
var openButton = $('<button></button>').attr({
|
|
|
|
'type': 'button',
|
|
|
|
'class': 'btn btn-default'
|
2014-04-02 15:57:32 -03:00
|
|
|
});
|
2014-04-01 07:24:36 -03:00
|
|
|
|
2014-04-19 16:28:28 -03:00
|
|
|
openButton.html($msg('OPEN_LINK')).css('margin-left', '0px');
|
|
|
|
openButton.click(function(){
|
2014-04-19 16:38:04 -03:00
|
|
|
window.open(input.val(),"_blank", "status=1,width=700,height=450,resize=1");
|
2014-04-01 07:24:36 -03:00
|
|
|
});
|
2014-05-04 15:59:12 -03:00
|
|
|
var spanControl = $('<span class="input-group-btn"></span>').append(openButton);
|
2014-04-01 07:24:36 -03:00
|
|
|
|
2014-04-19 16:28:28 -03:00
|
|
|
section.append(input);
|
|
|
|
section.append(spanControl);
|
2014-05-10 17:58:29 -03:00
|
|
|
this.form.append(section);
|
2014-04-01 07:24:36 -03:00
|
|
|
|
2014-05-04 15:59:12 -03:00
|
|
|
var me = this;
|
2014-05-10 17:58:29 -03:00
|
|
|
this.form.unbind('submit').submit(
|
|
|
|
function (event) {
|
2014-04-10 19:33:20 -03:00
|
|
|
event.preventDefault();
|
2014-05-04 15:59:12 -03:00
|
|
|
if(me.checkURL(input.val())){
|
2014-05-10 17:58:29 -03:00
|
|
|
me.cleanError();
|
2014-05-04 15:59:12 -03:00
|
|
|
var inputValue = input.val();
|
2014-12-26 18:09:30 -03:00
|
|
|
if (inputValue != null && $.trim(inputValue) != "") {
|
2014-05-04 15:59:12 -03:00
|
|
|
model.setValue(inputValue);
|
|
|
|
}
|
|
|
|
me.close();
|
2014-05-10 17:58:29 -03:00
|
|
|
this.formSubmitted = true;
|
|
|
|
} else {
|
|
|
|
me.alertError($msg('URL_ERROR'));
|
|
|
|
event.stopPropagation();
|
2014-04-10 19:33:20 -03:00
|
|
|
}
|
2014-05-10 17:58:29 -03:00
|
|
|
}
|
|
|
|
);
|
2014-04-01 07:24:36 -03:00
|
|
|
|
2014-05-10 17:58:29 -03:00
|
|
|
result.append(this.form);
|
2011-10-07 01:30:55 -03:00
|
|
|
return result;
|
2014-04-12 15:00:51 -03:00
|
|
|
},
|
|
|
|
|
2015-03-23 09:25:54 +01:00
|
|
|
/**
|
|
|
|
* checks whether the input is a valid url
|
|
|
|
* @return {Boolean} true if the url is valid
|
|
|
|
*/
|
2014-05-04 15:59:12 -03:00
|
|
|
checkURL: function(url){
|
|
|
|
var regex = /^(http|https|ftp):\/\/[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(:[0-9]{1,5})?(\/.*)?$/i;
|
|
|
|
return(regex.test(url));
|
|
|
|
},
|
|
|
|
|
2015-03-23 09:25:54 +01:00
|
|
|
/**
|
|
|
|
* overrides abstract parent method
|
|
|
|
* triggered when the user clicks the accept button - submits the url input
|
|
|
|
* @param event
|
|
|
|
*/
|
2014-05-10 17:58:29 -03:00
|
|
|
onAcceptClick: function(event) {
|
|
|
|
this.formSubmitted = false;
|
|
|
|
$("#linkFormId").trigger('submit');
|
|
|
|
if (!this.formSubmitted) {
|
|
|
|
event.stopPropagation();
|
|
|
|
}
|
2014-09-11 14:38:49 -03:00
|
|
|
},
|
|
|
|
|
2015-03-23 09:25:54 +01:00
|
|
|
/**
|
|
|
|
* overrides parent method
|
|
|
|
* sets the url input on focus
|
|
|
|
*/
|
2014-09-11 14:38:49 -03:00
|
|
|
onDialogShown: function() {
|
|
|
|
$(this).find('#inputUrl').focus();
|
2014-09-14 18:32:18 -03:00
|
|
|
},
|
|
|
|
|
2015-03-23 09:25:54 +01:00
|
|
|
/**
|
|
|
|
* overrides abstract parent method
|
|
|
|
* triggered when the user clicks the remove button - deletes the link
|
|
|
|
*/
|
2014-09-14 18:32:18 -03:00
|
|
|
onRemoveClick: function(event) {
|
|
|
|
event.data.model.setValue(null);
|
|
|
|
event.data.dialog.close();
|
2011-10-07 01:30:55 -03:00
|
|
|
}
|
2014-05-04 15:59:12 -03:00
|
|
|
|
2011-10-07 01:30:55 -03:00
|
|
|
});
|