-
Notifications
You must be signed in to change notification settings - Fork 888
Expand file tree
/
Copy pathtime.js
More file actions
132 lines (108 loc) · 3 KB
/
time.js
File metadata and controls
132 lines (108 loc) · 3 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
//input element
export default function(cell, onRendered, success, cancel, editorParams){
var inputFormat = editorParams.format,
vertNav = editorParams.verticalNavigation || "editor",
DT = inputFormat ? (window.DateTime || luxon.DateTime) : null,
newDatetime;
//create and style input
var cellValue = cell.getValue(),
input = document.createElement("input");
input.type = "time";
input.style.padding = "4px";
input.style.width = "100%";
input.style.boxSizing = "border-box";
if(editorParams.elementAttributes && typeof editorParams.elementAttributes == "object"){
for (let key in editorParams.elementAttributes){
if(key.charAt(0) == "+"){
key = key.slice(1);
input.setAttribute(key, input.getAttribute(key) + editorParams.elementAttributes["+" + key]);
}else{
input.setAttribute(key, editorParams.elementAttributes[key]);
}
}
}
cellValue = typeof cellValue !== "undefined" ? cellValue : "";
if(inputFormat){
if(DT){
if(DT.isDateTime(cellValue)){
newDatetime = cellValue;
}else if(inputFormat === "x"){
newDatetime = DT.fromMillis(cellValue);
}else if(inputFormat === "iso"){
newDatetime = DT.fromISO(String(cellValue));
}else{
newDatetime = DT.fromFormat(String(cellValue), inputFormat);
}
cellValue = newDatetime.toFormat("HH:mm");
}else{
console.error("Editor Error - 'date' editor 'format' param is dependant on luxon.js");
}
}
input.value = cellValue;
onRendered(function(){
if(cell.getType() == "cell"){
input.focus({preventScroll: true});
input.style.height = "100%";
if(editorParams.selectContents){
input.select();
}
}
});
function onChange(){
var value = input.value,
luxTime;
if(((cellValue === null || typeof cellValue === "undefined") && value !== "") || value !== cellValue){
if(value && inputFormat){
luxTime = DT.fromFormat(String(value), "hh:mm");
switch(inputFormat){
case true:
value = luxTime;
break;
case "x":
value = luxTime.toMillis();
break;
case "iso":
value = luxTime.toISO();
break;
default:
value = luxTime.toFormat(inputFormat);
}
}
if(success(value)){
cellValue = input.value; //persist value if successfully validated incase editor is used as header filter
}
}else{
cancel();
}
}
//submit new value on blur
input.addEventListener("blur", function(e) {
if (e.relatedTarget || e.rangeParent || e.explicitOriginalTarget !== input) {
onChange(); // only on a "true" blur; not when focusing browser's date/time picker
}
});
//submit new value on enter
input.addEventListener("keydown", function(e){
switch(e.key){
// case "Tab":
case "Enter":
onChange();
break;
case "Escape":
cancel();
break;
case "End":
case "Home":
e.stopPropagation();
break;
case "ArrowUp":
case "ArrowDown":
if(vertNav == "editor"){
e.stopImmediatePropagation();
e.stopPropagation();
}
break;
}
});
return input;
}