-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjquery.codemirror.js
154 lines (120 loc) · 5.28 KB
/
jquery.codemirror.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*!
CodeMirror jQuery Plugin
@name jquery.codemirror.js
@description a jQuery plugin for using CodeMirror
@version 1.0.2
@copyright (c) 2018 Philipp Nikolajev (https://nikolajev.ee)
@license Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
*/
(function ($) {
$.fn.codemirrorInit = function (codemirrorOptions, jqueryCodemirrorOptions) {
$(this).init.prototype = $.extend({}, $(this).init.prototype, {
codemirror: function () {
var $this = this;
return {
setValue: function (value) {
for (var i = 0; i < $this.length; i++) {
$.data($this[i], 'codemirror').setValue(value);
}
},
getValue: function () {
if (this.length > 1) {
throw new Error("Only one DOM element can be selected");
}
return $.data($this[0], 'codemirror').getValue();
},
setOption: function (option, value) {
$.each($this, function (key, element) {
$.data(element, 'codemirror').setOption(option, value);
});
},
setOptions: function (optionsObject) {
$.each($this, function (key, element) {
$.each(optionsObject, function (option, value) {
$.data(element, 'codemirror').setOption(option, value);
});
});
}
}
}
});
// Defaults
var codemirrorDefaults = {
mode: "text/html",
lineNumbers: true,
lineWrapping: true
};
// Private methods
function getConfigAttrTitle(element, preferredTitle) {
if ($(element).is("[" + preferredTitle + "]")) {
return preferredTitle;
}
if ($(element).is("[" + preferredTitle + "-config" + "]")) {
return preferredTitle + "-config";
}
return null;
}
function parseJsonConfig(configJson) {
if (configJson === undefined) {
return {};
}
var isJson = true;
try {
var json = $.parseJSON(configJson);
}
catch (error) {
isJson = false;
}
if (isJson) {
return $.parseJSON(configJson);
}
return {};
}
function getCodemirrorElementConfigs(element) {
var codemirrorConfigAttrTitle = getConfigAttrTitle(element, 'codemirror');
var configJson = (codemirrorConfigAttrTitle === null) ? undefined : $(element).attr(codemirrorConfigAttrTitle);
return parseJsonConfig(configJson);
}
function getJqueryCodemirrorElementConfigs(element) {
var codemirrorConfigAttrTitle = getConfigAttrTitle(element, 'jquery-codemirror');
var configJson = (codemirrorConfigAttrTitle === null) ? undefined : $(element).attr(codemirrorConfigAttrTitle);
return parseJsonConfig(configJson);
}
function copyToClipboard(value) {
var $temp = $("<textarea>");
$('body').append($temp.css({opacity: 0, zIndex: -9999}));
$temp.val(value).select();
document.execCommand("copy");
$temp.remove();
}
// Element iteration
return this.each(function () {
var basicCodemirrorConfigs = $.extend({}, codemirrorDefaults, codemirrorOptions);
var elementCodemirrorConfigs = getCodemirrorElementConfigs(this);
var codemirrorConfigs = $.extend({}, basicCodemirrorConfigs, elementCodemirrorConfigs);
$.data(this, 'codemirror', CodeMirror(this, codemirrorConfigs));
var jqueryCodemirrorConfigs = $.extend({}, jqueryCodemirrorOptions, getJqueryCodemirrorElementConfigs(this));
$(this).children('.CodeMirror').css(jqueryCodemirrorConfigs);
// Buttons
var buttonsWrapper = $('<div>');
var buttons = $('<div>');
var copyToClipboardButton = $('<div title="Copy to clipboard">');
$(this).prepend(buttonsWrapper.addClass("codemirror-buttons-wrapper").append(
buttons.addClass("codemirror-buttons").append(
copyToClipboardButton.addClass("codemirror-button").addClass("copy-to-clipboard")
)
));
buttonsWrapper.css('pointer-events', 'none');
copyToClipboardButton.css('pointer-events', 'auto');
$(this).mouseenter(function () {
$(this).children('.codemirror-buttons-wrapper').first().show();
});
$(this).mouseleave(function () {
$(this).children('.codemirror-buttons-wrapper').first().hide();
});
$(this).find('.copy-to-clipboard').click(function () {
copyToClipboard($(this).parent().parent().parent().codemirror().getValue());
});
});
};
})(jQuery);