-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdateToFormat.js
65 lines (58 loc) · 2.08 KB
/
dateToFormat.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
const vscode = require("vscode");
const moment = require("moment");
const { date_formats, time_formats } = require("./formats.js");
const checkDateString = () => {
const editor = vscode.window.activeTextEditor;
const selectionRange = editor.selection;
const selectedString = editor.document.getText(selectionRange);
var validFormats = [];
var noFittingFormat = false;
var formatsToSelect = ["Date", "Time"];
vscode.window
.showQuickPick(["Date", "Time"], {
placeHolder: "Do you need the format for a Date or a Time?"
})
.then(selectedFormat => {
if (selectedFormat === "Date") {
var check = false;
for (var i in date_formats) {
check = moment(
selectedString,
date_formats[i],
true
).isValid();
if (check) {
validFormats.push(date_formats[i]);
}
}
} else {
var check = false;
for (var i in time_formats) {
check = moment(
selectedString,
time_formats[i],
true
).isValid();
if (check) {
validFormats.push(time_formats[i]);
}
}
}
if (validFormats.length < 1) {
noFittingFormat = true;
validFormats.push("No fitting format found.");
}
vscode.window
.showQuickPick(validFormats, {
placeHolder: "Select your format."
})
.then(selectedFormat => {
if (!noFittingFormat) {
editor.edit(builder => {
builder.replace(editor.selection, selectedFormat);
});
}
});
});
};
module.exports = { checkDateString };