-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
144 lines (136 loc) · 3.63 KB
/
index.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
/**
*
* @Name : FilterInput.js
* @Version : 1.1
* @Programmer : Max
* @Date : 2018-06-27-2018-07-02, 2019-07-02
* @Released under : https://github.com/BaseMax/FilterInputJs/blob/master/LICENSE
* @Repository : https://github.com/BaseMax/FilterInputJs
*
**/
(function(window, document) {
"use strict";
/**
* @function exec
*
* @goal : Check a element and Make it ready for runtime filter input values
*
* @return void
**/
const exec = function(element) {
function exec_decimal(event) {
this.value = this.value.replace(/[^0-9\.]/g, "");
if (
(event.which != 46 || this.value.indexOf(".") != -1) &&
(event.which < 48 || event.which > 57)
) {
event.preventDefault();
}
}
function exec_integer(event) {
this.value = this.value.replace(/[^\d].+/, "");
if (event.which < 48 || event.which > 57) {
event.preventDefault();
}
}
function exec_string(event) {
//soon
}
function exec_any(event) {
//soon
}
function exec_any_empty(event) {
//soon
}
if (element.hasAttribute("data-filter")) {
var tag = element.tagName.toLowerCase();
var filter = element.getAttribute("data-filter");
var require = false;
///////////////////////////////////////////////
if (filter.startsWith("!")) {
filter = filter.substr(1);
require = true;
}
///////////////////////////////////////////////
switch (filter) {
case "decimal":
if (tag == "input") {
element.addEventListener("blur", exec_decimal);
element.addEventListener("keypress", exec_decimal);
element.addEventListener("keyup", exec_decimal);
element.setAttribute("type", "number");
}
break;
case "integer":
if (tag == "input") {
element.addEventListener("blur", exec_integer);
element.addEventListener("keypress", exec_integer);
element.addEventListener("keyup", exec_integer);
element.setAttribute("type", "number");
}
break;
/*
case "string":
if(tag == "input")
{
element.addEventListener("blur",exec_string);
element.addEventListener("keypress",exec_string);
element.addEventListener("keyup",exec_string);
element.setAttribute("type","text")
}
break;
case "any":
if(tag == "input")
{
element.addEventListener("blur",exec_any);
element.addEventListener("keypress",exec_any);
element.addEventListener("keyup",exec_any);
element.setAttribute("type","text")
}
break;
case "!any":
if(tag == "input")
{
element.addEventListener("blur",exec_any_empty);
element.addEventListener("keypress",exec_any_empty);
element.addEventListener("keyup",exec_any_empty);
element.setAttribute("type","text")
}
break;
*/
}
if (require == true) element.setAttribute("required", "required");
else element.removeAttribute("required");
}
};
/**
* @struct filter
*
* @goal : access to public functions
*
* @return struct
**/
window.filter = {
//////////////////////
exec: exec
//////////////////////
};
/**
* @struct onload
*
* @goal : set onclick and events after page load...
*
* @return {void}
**/
window.addEventListener(
"load",
function() {
var data_items;
data_items = document.querySelectorAll("[data-filter]");
data_items.forEach(function(item) {
window.filter.exec(item);
});
},
false
);
})(window, document);