-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgapla.js
170 lines (163 loc) · 4.83 KB
/
gapla.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
/**
* This is GaplaJS v1.0
* A Frontend Framework discovered for performance.
* @version 1.0.0
* @author Hackning (Bishal Dey <bishaldey@hackning.com>)
* @license LICENSE.md
*/
import { history } from 'backbone'
var dateFormat = require('dateformat');
var csso = require('csso');
class GaplaJS {
Title(title){
this.Select("title").innerHTML = `${title}`
}
Select(dom){
var elm = document.querySelector(dom)
return elm
}
SelectAll(dom){
var elm = document.querySelectorAll(dom)
return elm
}
InlineStyle(element, style){
this.Select(element).style = style
}
Style(style){
if (document.styleSheets.length > 1){
this.Select("style").innerHTML += style
}else{
document.head.innerHTML += `<style rel="stylesheet" type="text/css"></style>`
this.Select("style").innerHTML += style
}
}
MinifyCSS(style){
return csso.minify(style).css
}
Click(element, method){
this.Select(element).onclick = method
}
AddClass(element, cls){
this.Select(element).classList.add(cls)
}
RemoveClass(element, cls){
this.Select(element).classList.remove(cls)
}
ContainClass(element, cls){
return this.Select(element).classList.contains(cls)
}
Log(msg){
console.log(msg)
}
Go(url){
history.navigate(url, { trigger: true})
}
ChangeURL(url){
window.history.replaceState("", "", url)
}
LoadDOM(element, template){
this.Select(element).innerHTML = template
}
AppendDOM(element, template){
this.Select(element).innerHTML += template
}
AppendDOMAtTop(element, template){
this.Select(element).insertAdjacentHTML('afterbegin', template)
}
ClearDOM(element){
this.LoadDOM(element, '')
}
RemoveDOM(element){
this.Select(element).remove()
}
AppendDOMBeforeAt(element, template){
this.Select(element).insertAdjacentHTML('beforebegin', template)
}
isEmptyDOM(element){
if(!this.Select(element).innerHTML){
return true
}else{
return false
}
}
OnEvent(element, event, job){
this.Select(element).addEventListener(event, job)
}
OnContentLoaded(task){
document.addEventListener('DOMContentLoaded', task)
}
validateEmail(email) {
var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
return re.test(email);
}
validateMobileNumber(number) {
var mob = /^[1-9]{1}[0-9]{9}$/
if (mob.test(number) == false) {
return false
}else{
return true
}
}
YearNow(){
var d = new Date()
return d.getFullYear()
}
leftPad(number, targetLength) {
var output = number + ''
while (output.length < targetLength) {
output = '0' + output
}
return output
}
convToTime(s){
var min = Math.floor(s/60)
var sec = s%60
return `${this.leftPad(min,2)}:${this.leftPad(sec,2)}`
}
FormatDate(data, format){
return dateFormat(data, format)
}
dataURItoBlob(dataURI, callback) {
// convert base64 to raw binary data held in a string
// doesn't handle URLEncoded DataURIs - see SO answer #6850276 for code that does this
var byteString = atob(dataURI.split(',')[1]);
// separate out the mime component
var mimeString = dataURI.split(',')[0].split(':')[1].split(';')[0]
// write the bytes of the string to an ArrayBuffer
var ab = new ArrayBuffer(byteString.length);
var ia = new Uint8Array(ab);
for (var i = 0; i < byteString.length; i++) {
ia[i] = byteString.charCodeAt(i);
}
// write the ArrayBuffer to a blob, and you're done
var bb = new Blob([ab], {type: 'image/png'});
return bb;
}
GetRoute(){
return history.getFragment()
}
dec2hex (dec) {
return ('0' + dec.toString(16)).substr(-2)
}
generateId (len) {
var arr = new Uint8Array((len || 40) / 2)
window.crypto.getRandomValues(arr)
return Array.from(arr, this.dec2hex).join('')
}
MakeRequest(url, options){
return new Promise(resolve => {
return fetch(url, options)
.then(res => resolve(res.json()))
})
}
randomString(len, an){
an = an&&an.toLowerCase();
var str="", i=0, min=an=="a"?10:0, max=an=="n"?10:62;
for(;i++<len;){
var r = Math.random()*(max-min)+min <<0;
str += String.fromCharCode(r+=r>9?r<36?55:61:48);
}
return str;
}
}
export const Gapla = new GaplaJS()