-
-
Notifications
You must be signed in to change notification settings - Fork 405
Expand file tree
/
Copy pathsettings.js
More file actions
286 lines (268 loc) · 8.1 KB
/
settings.js
File metadata and controls
286 lines (268 loc) · 8.1 KB
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
// @ts-nocheck
function appendHTML(parent, html) {
// Create a temporary container for the HTML string
const tempDiv = document.createElement("div");
tempDiv.innerHTML = html;
// Move all child elements from the temporary container to the parent
while (tempDiv.children.length > 0) {
parent.appendChild(tempDiv.children[0]);
}
// Remove the temporary container to clean up the DOM
tempDiv.remove();
// Destroy all existing tooltips to prevent duplication
const tooltipElements = document.querySelectorAll('[data-toggle="tooltip"]');
tooltipElements.forEach((tooltip) => {
if ($(tooltip).data("bs.tooltip")) {
$(tooltip).tooltip("dispose");
}
});
// Reinitialize tooltips for the updated elements
$('[data-toggle="tooltip"]').tooltip({ container: "body" });
}
const vscode = acquireVsCodeApi();
const textInputTemplate = `<div class="form-group mb-4">
<label for="setting:@correspondingSetting" class="text-white-50a"
>@name</label
>
@tooltip
<input
type="text"
class="form-control text"
id="setting:@correspondingSetting"
placeholder="@placeholder"
setting="@correspondingSetting"
settingType="@settingType"
/>
</div>`;
const textInputGroupTemplate = `<div class="mb-4">
<label for="setting:@correspondingSetting" class="text-white-50a"
>@name</label
>
@tooltip
<div class="input-group">
<input
type="text"
class="form-control text"
id="setting:@correspondingSetting"
placeholder="@placeholder"
setting="@correspondingSetting"
settingType="@settingType"
/>
<div class="input-group-append">
<button class="btn btn-primary" @disabled onclick="@action" type="button" id="button-addon2">View</button>
</div>
</div>
</div>`;
const numberInputTemplate = `<div class="form-group mb-4">
<label for="setting:@correspondingSetting" class="text-white-50a"
>@name</label
>
@tooltip
<input
type="number"
class="form-control number"
id="setting:@correspondingSetting"
placeholder="@placeholder"
setting="@correspondingSetting"
settingType="@settingType"
/>
</div>`;
const checkboxTemplate = `<div class="custom-control custom-checkbox my-1 mr-sm-2 mb-4">
<input
class="custom-control-input checkbox"
type="checkbox"
id="setting:@correspondingSetting"
setting="@correspondingSetting"
settingType="@settingType"
/>
<label
for="setting:@correspondingSetting"
class="custom-control-label text-white-50a"
>@name</label>
@tooltip
</div>`;
const textareaTemplate = `<div class="form-group mb-3">
<label
for="setting:@correspondingSetting"
class="text-white-50a"
>@name</label>
@tooltip
<textarea
class="form-control textarea"
id="setting:@correspondingSetting"
data-min-rows="1"
placeholder="@placeholder"
setting="@correspondingSetting"
settingType="@settingType"
></textarea>
</div>`;
const globalParent = document.getElementById("globalSettings");
const envParent = document.getElementById("environmentSettings");
const saveStatus = document.getElementById("saveStatus");
globalMap.forEach(settingMap => {
let template;
switch (settingMap.type) {
case "textinput":
template = textInputTemplate;
break;
case "numberinput":
template = numberInputTemplate;
break;
case "checkbox":
template = checkboxTemplate;
break;
case "textarea":
template = textareaTemplate;
break;
}
const html = template
.replace(new RegExp("@name", "g"), settingMap.name)
.replace(new RegExp("@placeholder", "g"), settingMap.placeholder)
.replace(
new RegExp("@correspondingSetting", "g"),
settingMap.correspondingSetting
)
.replace(new RegExp("@tooltip"), "")
.replace(new RegExp("@settingType", "g"), "global");
appendHTML(globalParent, html);
});
envMap.forEach(envMap => {
let template;
switch (envMap.type) {
case "textinput":
template = textInputTemplate;
break;
case "numberinput":
template = textInputTemplate;
break;
case "checkbox":
template = checkboxTemplate;
break;
}
const isInputGroup = envMap.correspondingSetting === "gist";
let disabledStatus = "";
if (isInputGroup) {
template = textInputGroupTemplate;
if (!_.get(envData, "gist") || !_.get(globalData, "token")) {
disabledStatus = "disabled";
}
}
const html = template
.replace(new RegExp("@name", "g"), envMap.name)
.replace(new RegExp("@placeholder", "g"), envMap.placeholder)
.replace(
new RegExp("@correspondingSetting", "g"),
envMap.correspondingSetting
)
.replace(
new RegExp("@tooltip"),
`
<a
class="text-white-50a fas fa-info-circle"
data-toggle="tooltip"
data-placement="right"
title="${envMap.tooltip}">
</a>
`
)
.replace(new RegExp("@settingType", "g"), "env")
.replace(
new RegExp("@action", "g"),
`inputGroupAction('${envMap.correspondingSetting}')`
)
.replace(new RegExp("@disabled", "g"), disabledStatus);
appendHTML(envParent, html);
});
$(document).ready(function() {
save();
$('[data-toggle="tooltip"]').tooltip({ container: "html" });
$(".text")
.each((i, el) => {
if ($(el).attr("settingType") === "global") {
$(el).val(_.get(globalData, $(el).attr("setting")));
} else {
$(el).val(envData[$(el).attr("setting")]);
}
})
.change(function() {
save();
let val = $(this).val();
vscode.postMessage({
command: $(this).attr("setting"),
text: val,
type: $(this).attr("settingType")
});
});
$(".number")
.each((i, el) => {
if ($(el).attr("settingType") === "global") {
$(el).val(_.get(globalData, $(el).attr("setting")));
} else {
$(el).val(envData[$(el).attr("setting")]);
}
})
.change(function() {
save();
let val = Number($(this).val());
vscode.postMessage({
command: $(this).attr("setting"),
text: val,
type: $(this).attr("settingType")
});
});
$(".checkbox")
.each((i, el) => {
if ($(el).attr("settingType") === "global") {
$(el).prop("checked", _.get(globalData, $(el).attr("setting")));
} else {
$(el).prop("checked", envData[$(el).attr("setting")]);
}
})
.change(function() {
save();
let val = $(this).is(":checked");
vscode.postMessage({
command: $(this).attr("setting"),
text: val,
type: $(this).attr("settingType")
});
});
$(".textarea")
.each((i, el) => {
let str = "";
const items = _.get(globalData, $(el).attr("setting"));
items.forEach(item => (str += item + "\n"));
$(el).val(str.slice(0, -1));
$(el).prop("rows", items.length);
})
.change(function() {
save();
let val = [];
$(this)
.val()
.split("\n")
.forEach(item => {
if (item !== "") {
val.push(item);
}
});
vscode.postMessage({
command: $(this).attr("setting"),
text: val,
type: "global"
});
});
});
function save() {
saveStatus.innerHTML = `<i class="spinner-border dock-bottom-left"></i>`;
setTimeout(
() =>
(saveStatus.innerHTML = `<i class="fas fa-check dock-bottom-left"></i>`),
1000
);
}
function inputGroupAction(setting) {
if (setting === "gist") {
vscode.postMessage("openGist");
}
}