alpaca
Version:
Alpaca provides the easiest and fastest way to generate interactive forms for the web and mobile devices. It runs simply as HTML5 or more elaborately using Bootstrap, jQuery Mobile or jQuery UI. Alpaca uses Handlebars to process JSON schema and provide
67 lines (55 loc) • 1.73 kB
JavaScript
define([
'summernote/base/core/func',
'summernote/base/core/list',
'summernote/base/core/dom',
'summernote/base/core/range',
'summernote/base/core/key'
], function (func, list, dom, range, key) {
var AutoLink = function (context) {
var self = this;
var defaultScheme = 'http://';
var linkPattern = /^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|mailto:[A-Z0-9._%+-]+@)?(www\.)?(.+)$/i;
this.events = {
'summernote.keyup': function (we, e) {
if (!e.isDefaultPrevented()) {
self.handleKeyup(e);
}
},
'summernote.keydown': function (we, e) {
self.handleKeydown(e);
}
};
this.initialize = function () {
this.lastWordRange = null;
};
this.destroy = function () {
this.lastWordRange = null;
};
this.replace = function () {
if (!this.lastWordRange) {
return;
}
var keyword = this.lastWordRange.toString();
var match = keyword.match(linkPattern);
if (match && (match[1] || match[2])) {
var link = match[1] ? keyword : defaultScheme + keyword;
var node = $('<a />').html(keyword).attr('href', link)[0];
this.lastWordRange.insertNode(node);
this.lastWordRange = null;
context.invoke('editor.focus');
}
};
this.handleKeydown = function (e) {
if (list.contains([key.code.ENTER, key.code.SPACE], e.keyCode)) {
var wordRange = context.invoke('editor.createRange').getWordRange();
this.lastWordRange = wordRange;
}
};
this.handleKeyup = function (e) {
if (list.contains([key.code.ENTER, key.code.SPACE], e.keyCode)) {
this.replace();
}
};
};
return AutoLink;
});