-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJpJsDate.js
395 lines (363 loc) · 15 KB
/
JpJsDate.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
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
JpJsDate.js
(主に日本における業務システム向け、日付・時刻・月度入力HTMLフィールド)
2022-2023 🄫堺 康行
ライセンスに関しては、リポジトリ内のLICENSEファイルを参照してください。
https://github.com/Sakai3578/JpJsDate/blob/main/JpJsDate.js
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
*/
/*
* 時間入力モーダルの上方向マージン調整(inputフィールドのpadding値によっては調整が必要)
*/
const JpJsDate_TIME_MODAL_TOP_MARGIN = 25;
/*
* 入力制御
*/
$(function() {
//日時入力フィールドでtabまたはEsc入力でモーダル除去
$(document).on('keydown', '.JpJsDate-datetime', function(e) {
if (e.keyCode === 9 || e.keyCode === 27) {
//モーダル除去
$(`.JpJsDate-time-input-modal`).remove();
}
});
//日時フォーマット(JpJsDate-datetimeクラスを付与したinputフィールド)
$(document).on('change', '.JpJsDate-datetime', function() {
//モーダル除去
$(`.JpJsDate-time-input-modal`).remove();
//入力値を取得
let val = $(this).val();
if (val === '') {
return;
}
//入力値を日付テキストに変換
let valSplit = val.split(' ');
let dateText = to_datetime_text(valSplit[0]);
if (typeof dateText === "undefined" || valSplit.length > 2) {
//第1パートが日付ではないまたはスペース区切りで3パーツ以上ある場合、値を消去
$(this).val('');
} else if (valSplit.length === 1) {
$(this).val(dateText);
} else if (valSplit.length === 2 && !valSplit[1].match(/^([01]?[0-9]|2[0-3]):([0-5][0-9])$/)) {
//第2パートが時間フォーマットではない場合、値を消去
$(this).val('');
} else {
$(this).val(`${dateText} ${valSplit[1]}`);
}
});
//日付フォーマット(JpJsDate-dateクラスを付与したinputフィールド)
$(document).on('change', '.JpJsDate-date', function() {
//入力値を取得
let val = $(this).val();
if (val === '') {
return;
}
//入力値を日付テキストに変換
let text = to_date_text(val);
if (typeof text === "undefined") {
$(this).val('');
} else {
$(this).val(text);
}
});
//日付フォーマット+曜日(JpJsDate-date-withDayOfWeek'クラスを付与したinputフィールド)
$(document).on('change', '.JpJsDate-date-withDayOfWeek', function() {
//入力値を取得
let val = $(this).val();
if (val === '') {
$(`span.${$(this).attr('dow-hook')}`).text('');
return;
}
//入力値を日付テキストに変換
let text = to_date_text(val);
if (typeof text === "undefined") {
$(this).val('');
$(`span.${$(this).attr('dow-hook')}`).text('');
return;
}
$(this).val(text);
//曜日連携
const daysOfWeek = ['日', '月', '火', '水', '木', '金', '土'];
const dayOfWeek = daysOfWeek[(new Date(text)).getDay()];
$(`span.${$(this).attr('dow-hook')}`).text(dayOfWeek);
});
//月フォーマット(JpJsDate-monthクラスを付与したinputフィールド)
$(document).on('change', '.JpJsDate-month', function() {
//入力値を取得
let val = $(this).val();
if (val === '') {
return;
}
//入力値を月テキストに変換
let text = to_month_text(val);
if (typeof text === "undefined") {
$(this).val('');
} else {
$(this).val(text);
}
});
});
//時刻モーダル表示
function switch_timepicker(inputFieldNameAttribute) {
let modal_class_name = 'JpJsDate-time-input-modal';
$(`.${modal_class_name}`).remove();
let inputFieldjQueryObject = $(`[name=${inputFieldNameAttribute.replaceAll('.', '\\.')}]`);
//現在の入力時刻を取得
let currentValSplit = inputFieldjQueryObject.val().split(' ');
let currentHour = 0;
let currentMinute = 0;
if (currentValSplit.length === 2) {
let timePartSplit = currentValSplit[1].split(':');
if (timePartSplit.length === 2 && !isNaN(timePartSplit[0]) && !isNaN(timePartSplit[1]) && Number(timePartSplit[0]) <= 23 && Number(timePartSplit[1]) <= 59) {
currentHour = Number(timePartSplit[0]);
currentMinute = Number(timePartSplit[1]);
}
}
let position = inputFieldjQueryObject.position();
//モーダルをビルド
let modalHtml = `<div class="${modal_class_name}"
style="position: absolute;
background-color: #444;
align-items: center;
color: #fff;
border-radius: 1px;
padding: 5px;
top: ${position["top"] + JpJsDate_TIME_MODAL_TOP_MARGIN}px;
left: ${position["left"]}px;">
<div style="display: flex">
<div>
<span>時</span><br>
<select name="JpJsDate-hour" style="width: 60px;" size="12">`;
for (h = 0; h < 24; h++) {
modalHtml += `<option value="${h}">${h}</option>`;
}
modalHtml += ' </select>';
modalHtml += '</div>';
modalHtml += '<div>';
modalHtml += ' <span>分</span><br>';
modalHtml += ' <select name="JpJsDate-minute" style="width: 60px;" size="12">`;';
for (m = 0; m < 24; m++) {
modalHtml += `<option value="${m}">${m}</option>`;
}
modalHtml += `</select>
</div>
</div>
<div style="display: flex">
<button type="button" class="gray-small-button" onclick="JpJsDate_time_submit('${inputFieldjQueryObject.attr("id")}', $('[name=JpJsDate-hour]').val(), $('[name=JpJsDate-minute]').val()); $('.${modal_class_name}').remove();">決定</button>
<button type="button" class="gray-small-button" onclick="$('.${modal_class_name}').remove();">中止</button>
</div>
</div>`;
//モーダルを追加
$('body').append(modalHtml);
//selectタグの選択変更処理
$('[name=JpJsDate-hour]').val(String(currentHour));
$('[name=JpJsDate-minute]').val(currentMinute);
}
/*
* 時刻モーダル選択後処理
*/
function JpJsDate_time_submit(inputFieldId, hour, minute) {
inputFieldId = inputFieldId.replaceAll('.', '\\.');
let currentValue = $(`#${inputFieldId}`).val();
let hourAsNum = Number(hour);
let minuteAsNum = Number(minute);
let timeText = `${hourAsNum > 10 ? '' : '0'}${hourAsNum}:${minuteAsNum < 10 ? '0' : ''}${minuteAsNum}`;
let currentValueSp = currentValue.split(' ');
let currentDateText = to_date_text(currentValueSp[0]);
if (typeof currentDateText === "undefined") {
let now = new Date();
$(`#${inputFieldId}`).val(`${now.getFullYear()}/${now.getMonth() + 1 < 10 ? '0' : ''}${now.getMonth() + 1}/${now.getDate() < 10 ? '0' : ''}${now.getDate()} ${timeText}`);
} else {
console.log(currentValueSp[0]);
console.log(timeText);
$(`#${inputFieldId}`).val(`${currentDateText} ${timeText}`);
}
}
/*
* 時刻省略可能日付の入力後フォーマット処理
*/
function to_datetime_text(text) {
let sp = text.split(' ')
if (sp.length === 1) {
//時刻パートがない場合、日付入力フォーマット処理
return to_date_text(text);
} else {
let sp2IsTimeFormat = text.match(/^([01]?[0-9]|2[0-3]):([0-5][0-9])$/);
if (sp2IsTimeFormat) {
return `${to_date_text(text)} ${sp[1]}`;
}
}
}
/*
* 数値テキストからyyyy/MM/dd形式に変換する関数。
* 入力値が意図するymd値を推論します。
*/
function to_date_text(inputVal) {
//全角数値を半角に変換
inputVal = inputVal.replace(/[0-9]/g, function(s) {return String.fromCharCode(s.charCodeAt(0) - 0xFEE0)});
let year = 0;
let month = 0;
let day = 0;
//スラッシュまたはハイフンがあるか否かで最初に分岐
const hyphenReplcaedVal = inputVal.replaceAll('-', '/');
const slashCount = hyphenReplcaedVal.split('/').length - 1;
if (slashCount === 2) {
//日付形式で入力された場合
//入力値が2022/5/1形式のケース
//日付として正しいかの判定
let date = new Date(inputVal);
if (!isNaN(date.getDate())) {
year = date.getFullYear();
month = date.getMonth() + 1;
day = date.getDate();
}
} else if (slashCount === 1) {
//スラッシュが1個
const splitVals = hyphenReplcaedVal.split('/');
if (isNaN(splitVals[0]) || isNaN(splitVals[1])) {
return;
}
if (splitVals[1].length <= 2) {
//入力値が5/21形式のケース
year = new Date().getFullYear();
month = splitVals[0];
day = splitVals[1];
} else if (splitVals[1].length === 3) {
//2024/201→2024/2/1に変換
year = splitVals[0]
month = parseFloat(splitVals[1][0]);
day = parseFloat(splitVals[1].substr(1, 2));
} else if (splitVals[1].length === 4) {
//2024/1201→2024/12/1に変換
year = splitVals[0]
month = parseFloat(splitVals[1].substr(0, 2));
day = parseFloat(splitVals[1].substr(2, 2));
}
} else {
//数値のみで入力された場合
//数値変換できない値であればフォームを空にして終了
if (isNaN(inputVal) || inputVal === null || inputVal === '') {
return;
}
//文字列から年月日を推定
if (inputVal.length === 1) {
//1文字の場合、年・月は現在時刻を使用
year = new Date().getFullYear();
month = new Date().getMonth() + 1;
day = parseFloat(inputVal);
} else if (inputVal.length === 2) {
const nowYear = new Date().getFullYear();
const inputNumber = parseFloat(inputVal);
const nowMonth = new Date().getMonth() + 1;
const daysInMonth = getDaysInMonth(nowYear, nowMonth)
if (inputNumber <= daysInMonth) {
//入力数字が日数なら当月日付
year = nowYear;
month = nowMonth;
day = inputNumber;
} else {
//1文字目を月、2文字目を日付
year = new Date().getFullYear();
month = parseFloat(inputVal[0]);
day = parseFloat(inputVal[1]);
}
} else if (inputVal.length === 3) {
//3文字の場合、年は現在時刻を使用
year = new Date().getFullYear();
month = parseFloat(inputVal[0]);
day = parseFloat(inputVal.substr(1, 2));
} else if (inputVal.length === 4) {
//4文字の場合、年は現在時刻を使用
year = new Date().getFullYear();
month = parseFloat(inputVal.substr(0, 2));
day = parseFloat(inputVal.substr(2, 2));
} else if (inputVal.length === 8) {
//8文字の場合
year = parseFloat(inputVal.substr(0, 4));
month = parseFloat(inputVal.substr(4, 2));
day = parseFloat(inputVal.substr(6, 2));
}
}
//ymd数値が日付として正しいか否かの判定→正しければ、フォーマットして返却
let date_text = `${year}/${month}/${day}`;
let date = new Date(date_text);
if (isNaN(date.getDate())) {
return;
} else {
//new Date(date_text)で4/31→5/1に変換されるので、日付変換後の値を採用
const resultYear = date.getFullYear();
const resultMonth = date.getMonth() + 1;
const resultDay = date.getDate();
return `${resultYear}/${resultMonth <= 9 ? '0' : ''}${resultMonth}/${resultDay <= 9 ? '0' : ''}${resultDay}`;
}
}
/*
* 月に属する日数を取得
*/
function getDaysInMonth(year, month) {
return new Date(year, month, 0).getDate();
}
/*
* 数値テキストからyyyy/MM(年月)形式に変換する関数
*/
function to_month_text(str) {
//全角数値を半角に変換
str = str.replace(/[0-9]/g, function(s) {return String.fromCharCode(s.charCodeAt(0) - 0xFEE0)});
let year = 0;
let month = 0;
//入力値が意図するym値を推論する処理
if (str.indexOf('/') !== -1 || str.indexOf('-') !== -1) {
//日付形式で入力された場合
if (str.length === 5 || str.length === 6) {
//入力値が2022/9,2022/10形式のケース
var sp = str.replaceAll('-', '/').split('/')
if (sp.length === 2 && !isNaN(sp[0]) && !isNaN(sp[1])) {
year = parseFloat(sp[0]);
month = parseFloat(sp[1]);
}
} else if (str.length === 4 || str.length === 5) {
//入力値が22/9,22/10形式のケース
var sp = str.replaceAll('-', '/').split('/')
if (sp.length === 2 && !isNaN(sp[0]) && !isNaN(sp[1])) {
year = parseFloat(sp[0]) + 2000;
month = parseFloat(sp[1]);
}
}
} else {
//数値のみで入力された場合
//数値変換できない値であればフォームを空にして終了
if (isNaN(str) || str === null || str === '') {
return;
}
//文字列から年月日を推定
if (str.length === 1 || str.length === 2) {
//1~2文字の場合、月のみ入力と判断→年は現在時刻を使用
year = new Date().getFullYear();
month = parseFloat(str);
} else if (str.length === 3) {
//3文字の場合、yymで変換
year = parseFloat(str.substr(0, 2)) + 2000;
month = parseFloat(str[2]);
} else if (str.length === 4) {
//4文字の場合、yymmで変換
year = parseFloat(str.substr(0, 2)) + 2000;
month = parseFloat(str.substr(2, 2));
} else if (str.length === 5) {
//5文字の場合、yyyymmで変換
year = parseFloat(str.substr(0, 4));
month = parseFloat(str[4]);
} else if (str.length === 6) {
//6文字の場合、yyyymmで変換
year = parseFloat(str.substr(0, 4));
month = parseFloat(str.substr(4, 2));
}
}
//ymd数値が日付として正しいか否かの判定→正しければ、フォーマットして返却
let date_text = `${year}/${month}/${1}`;
let date = new Date(date_text);
if (isNaN(date.getDate())) {
return;
} else {
return `${year}/${month <= 9 ? '0' : ''}${month}`;
}
}