2021-07-16 16:41:58 +02:00
|
|
|
/*
|
|
|
|
* Copyright [2015] [wisemapping]
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
const FeatureModel = require('./FeatureModel').default;
|
|
|
|
|
|
|
|
const LinkModel = new Class(/** @lends LinkModel */{
|
2021-10-05 02:05:34 +02:00
|
|
|
Extends: FeatureModel,
|
|
|
|
/**
|
2021-07-16 16:41:58 +02:00
|
|
|
* @constructs
|
|
|
|
* @param attributes
|
|
|
|
* @extends mindplot.model.FeatureModel
|
|
|
|
*/
|
2021-10-05 02:05:34 +02:00
|
|
|
initialize(attributes) {
|
|
|
|
this.parent(LinkModel.FEATURE_TYPE);
|
|
|
|
this.setUrl(attributes.url);
|
|
|
|
},
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-10-05 02:05:34 +02:00
|
|
|
/** @return {String} the url attribute value */
|
|
|
|
getUrl() {
|
|
|
|
return this.getAttribute('url');
|
|
|
|
},
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-10-05 02:05:34 +02:00
|
|
|
/**
|
2021-07-16 16:41:58 +02:00
|
|
|
* @param {String} url a URL provided by the user to set the link to
|
|
|
|
* @throws will throw an error if url is null or undefined
|
|
|
|
*/
|
2021-10-05 02:05:34 +02:00
|
|
|
setUrl(url) {
|
|
|
|
$assert(url, 'url can not be null');
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-10-05 02:05:34 +02:00
|
|
|
const fixedUrl = this._fixUrl(url);
|
|
|
|
this.setAttribute('url', fixedUrl);
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-10-05 02:05:34 +02:00
|
|
|
const type = fixedUrl.contains('mailto:') ? 'mail' : 'url';
|
|
|
|
this.setAttribute('urlType', type);
|
|
|
|
},
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-10-05 02:05:34 +02:00
|
|
|
// url format is already checked in LinkEditor.checkUrl
|
|
|
|
_fixUrl(url) {
|
|
|
|
let result = url;
|
|
|
|
if (!result.contains('http://') && !result.contains('https://') && !result.contains('mailto://')) {
|
|
|
|
result = `http://${result}`;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
},
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-10-05 02:05:34 +02:00
|
|
|
/**
|
2021-07-16 16:41:58 +02:00
|
|
|
* @param {String} urlType the url type, either 'mail' or 'url'
|
2021-10-05 02:05:34 +02:00
|
|
|
* @throws will throw an error if urlType is null or undefined
|
2021-07-16 16:41:58 +02:00
|
|
|
*/
|
2021-10-05 02:05:34 +02:00
|
|
|
setUrlType(urlType) {
|
|
|
|
$assert(urlType, 'urlType can not be null');
|
|
|
|
this.setAttribute('urlType', urlType);
|
|
|
|
},
|
2021-07-16 16:41:58 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @constant
|
|
|
|
* @type {String}
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
LinkModel.FEATURE_TYPE = 'link';
|
|
|
|
|
|
|
|
export default LinkModel;
|