forked from s-yadav/patternLock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpatternLock.js
437 lines (361 loc) · 15.4 KB
/
patternLock.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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
/*
patternLock.js v 1.1.1
Author: Sudhanshu Yadav, Nimiq Foundation
Copyright (c) 2015,2016 Sudhanshu Yadav - ignitersworld.com , released under the MIT license.
Copyright (c) 2018 Nimiq Foundation - nimiq.com , released under the MIT license.
*/
export default (function(window, undefined) {
"use strict";
var document = window.document;
var nullFunc = function() {},
objectHolder = {};
//internal functions
function readyDom(iObj) {
var holder = iObj.holder,
option = iObj.option,
matrix = option.matrix,
margin = option.margin,
radius = option.radius,
html = ['<ul class="patt-wrap" style="padding:' + margin + 'px">'];
for (var i = 0, ln = matrix[0] * matrix[1]; i < ln; i++) {
html.push('<li class="patt-circ" style="margin:' + margin + 'px; width : ' + (radius * 2) + 'px; height : ' + (radius * 2) + 'px; -webkit-border-radius: ' + radius + 'px; -moz-border-radius: ' + radius + 'px; border-radius: ' + radius + 'px; "><div class="patt-dots"></div></li>');
}
html.push('</ul>');
holder.innerHTML = html.join('');
holder.style.width = (matrix[1] * (radius * 2 + margin * 2) + margin * 2) + 'px';
holder.style.height = (matrix[0] * (radius * 2 + margin * 2) + margin * 2) + 'px';
//select pattern circle
iObj.pattCircle = iObj.holder.querySelectorAll('.patt-circ');
}
//return height and angle for lines
function getLengthAngle(x1, x2, y1, y2) {
var xDiff = x2 - x1,
yDiff = y2 - y1;
return {
length: Math.ceil(Math.sqrt(xDiff * xDiff + yDiff * yDiff)),
angle: Math.round((Math.atan2(yDiff, xDiff) * 180) / Math.PI)
};
}
var startHandler = function(e, obj) {
e.preventDefault();
var iObj = objectHolder[obj.token];
if (iObj.disabled) return;
//check if pattern is visible or not
if (!iObj.option.patternVisible) {
iObj.holder.classList.add('patt-hidden');
}
var touchMove = e.type == "touchstart" ? "touchmove" : "mousemove",
touchEnd = e.type == "touchstart" ? "touchend" : "mouseup";
//assign events
window.__patternLockMoveHandler = function(e) {
moveHandler.call(this, e, obj);
};
this.addEventListener(touchMove, window.__patternLockMoveHandler);
document.addEventListener(touchEnd, function() {
endHandler.call(this, e, obj);
}, {once: true});
//set pattern offset
var wrap = iObj.holder.querySelector('.patt-wrap'),
offset = wrap.getBoundingClientRect();
iObj.wrapper = wrap;
iObj.wrapTop = offset.top;
iObj.wrapLeft = offset.left;
//reset pattern
obj.reset();
},
moveHandler = function(e, obj) {
e.preventDefault();
var x = e.clientX || e.touches[0].clientX,
y = e.clientY || e.touches[0].clientY,
iObj = objectHolder[obj.token],
option = iObj.option,
li = iObj.pattCircle,
patternAry = iObj.patternAry,
posObj = iObj.getIdxFromPoint(x, y),
idx = posObj.idx,
pattId = iObj.mapperFunc(idx) || idx;
if (patternAry.length > 0) {
var laMove = getLengthAngle(iObj.lineX1, posObj.x, iObj.lineY1, posObj.y);
iObj.line.style.width = (laMove.length + 10) + 'px';
iObj.line.style.transform = 'rotate(' + laMove.angle + 'deg)';
}
if (idx && ((option.allowRepeat && patternAry[patternAry.length - 1] !== pattId) || patternAry.indexOf(pattId) === -1)) {
var elm = li[idx - 1];
//mark if any points are in middle of previous point and current point, if it does check them
if (iObj.lastPosObj) {
var lastPosObj = iObj.lastPosObj,
ip = lastPosObj.i,
jp = lastPosObj.j,
xDelta = posObj.i - lastPosObj.i > 0 ? 1 : -1,
yDelta = posObj.j - lastPosObj.j > 0 ? 1 : -1,
iDiff = Math.abs(posObj.i - ip),
jDiff = Math.abs(posObj.j - jp);
while (((iDiff === 0 && jDiff > 1) || (jDiff === 0 && iDiff > 1) || (jDiff == iDiff && jDiff > 1))) {
ip = iDiff ? ip + xDelta : ip;
jp = jDiff ? jp + yDelta : jp;
iDiff = Math.abs(posObj.i - ip);
jDiff = Math.abs(posObj.j - jp);
var nextIdx = (jp - 1) * option.matrix[1] + ip,
nextPattId = iObj.mapperFunc(nextIdx) || nextIdx;
if (option.allowRepeat || patternAry.indexOf(nextPattId) == -1) {
//add direction to previous point and line
iObj.addDirectionClass({i: ip, j: jp});
//mark a point added
iObj.markPoint(li[nextPattId - 1], nextPattId);
//add line between the points
iObj.addLine({i: ip,j: jp});
}
}
}
//add direction to last point and line
if (iObj.lastPosObj) iObj.addDirectionClass(posObj);
//mark the initial point added
iObj.markPoint(elm, pattId);
//add initial line
iObj.addLine(posObj);
iObj.lastPosObj = posObj;
}
},
endHandler = function(e, obj) {
e.preventDefault();
var iObj = objectHolder[obj.token],
option = iObj.option,
pattern = iObj.patternAry.join(option.delimiter);
//remove hidden pattern class and remove event
iObj.holder.removeEventListener("touchmove", window.__patternLockMoveHandler);
iObj.holder.removeEventListener("mousemove", window.__patternLockMoveHandler);
iObj.holder.classList.remove('patt-hidden');
if (!pattern) return;
option.onDraw(pattern);
//to remove last line
if (iObj.line.parentNode) iObj.line.parentNode.removeChild(iObj.line);
if (iObj.rightPattern) {
if (pattern == iObj.rightPattern) {
iObj.onSuccess();
} else {
iObj.onError();
obj.error();
}
}
};
function InternalMethods() {}
InternalMethods.prototype = {
constructor: InternalMethods,
getIdxFromPoint: function(x, y) {
var option = this.option,
matrix = option.matrix,
xi = x - this.wrapLeft,
yi = y - this.wrapTop,
idx = null,
margin = option.margin,
plotLn = option.radius * 2 + margin * 2,
qsntX = Math.ceil(xi / plotLn),
qsntY = Math.ceil(yi / plotLn),
remX = xi % plotLn,
remY = yi % plotLn;
if (qsntX <= matrix[1] && qsntY <= matrix[0] && remX > margin * 2 && remY > margin * 2) {
idx = (qsntY - 1) * matrix[1] + qsntX;
}
return {
idx: idx,
i: qsntX,
j: qsntY,
x: xi,
y: yi
};
},
markPoint: function(elm, pattId) {
//add the current element on pattern
elm.classList.add('hovered');
//push pattern on array
this.patternAry.push(pattId);
this.lastElm = elm;
},
//method to add lines between two element
addLine: function(posObj) {
var _this = this,
patternAry = _this.patternAry,
option = _this.option;
//add start point for line
var lineOnMove = option.lineOnMove,
margin = option.margin,
radius = option.radius,
newX = (posObj.i - 1) * (2 * margin + 2 * radius) + 2 * margin + radius,
newY = (posObj.j - 1) * (2 * margin + 2 * radius) + 2 * margin + radius;
if (patternAry.length > 1) {
//to fix line
var lA = getLengthAngle(_this.lineX1, newX, _this.lineY1, newY);
_this.line.style.width = (lA.length + 10) + 'px';
_this.line.style.transform = 'rotate(' + lA.angle + 'deg)';
if (!lineOnMove) _this.line.style.display = 'block';
}
//to create new line
var line = document.createElement('div');
line.classList.add('patt-lines');
line.style.top = (newY - 5) + 'px';
line.style.left = (newX - 5) + 'px';
_this.line = line;
_this.lineX1 = newX;
_this.lineY1 = newY;
//add on dom
_this.wrapper.appendChild(line);
if (!lineOnMove) _this.line.style.display = 'none';
},
// add direction on point and line
addDirectionClass: function(curPos) {
var point = this.lastElm,
line = this.line,
lastPos = this.lastPosObj;
var direction = [];
curPos.j - lastPos.j > 0 ? direction.push('s') : curPos.j - lastPos.j < 0 ? direction.push('n') : 0;
curPos.i - lastPos.i > 0 ? direction.push('e') : curPos.i - lastPos.i < 0 ? direction.push('w') : 0;
direction = direction.join('-');
if (direction) {
point.classList.add(direction, "dir");
line.classList.add(direction, "dir");
}
}
};
function PatternLock(selector, option) {
var self = this,
token = self.token = Math.random(),
iObj = objectHolder[token] = new InternalMethods(),
holder = iObj.holder = selector instanceof Node ? selector : document.querySelector(selector);
//if holder is not present return
if (!holder) {
console.error('PatternLock: selector ' + selector + ' not found!');
return;
}
iObj.object = self;
//optimizing options
option = option || {};
var defaultsFixes = {
onDraw: nullFunc
};
var matrix = option.matrix;
if (matrix && matrix[0] * matrix[1] > 9) defaultsFixes.delimiter = ",";
option = iObj.option = Object.assign({}, PatternLock.defaults, defaultsFixes, option);
readyDom(iObj);
//add class on holder
holder.classList.add('patt-holder');
//change offset property of holder if it does not have any property
if (holder.style.position == "static") holder.style.position = 'relative';
//assign event
holder.addEventListener("touchstart", function(e) {
startHandler.call(this, e, self);
});
holder.addEventListener("mousedown", function(e) {
startHandler.call(this, e, self);
});
//adding a mapper function
var mapper = option.mapper;
if (typeof mapper == "object") {
iObj.mapperFunc = function(idx) {
return mapper[idx];
};
} else if (typeof mapper == "function") {
iObj.mapperFunc = mapper;
} else {
iObj.mapperFunc = nullFunc;
}
//to delete from option object
iObj.option.mapper = null;
}
PatternLock.prototype = {
constructor: PatternLock,
//method to set options after initializtion
option: function(key, val) {
var iObj = objectHolder[this.token],
option = iObj.option;
//for set methods
if (val === undefined) {
return option[key];
}
//for setter
else {
option[key] = val;
if (key == "margin" || key == "matrix" || key == "radius") {
readyDom(iObj);
}
}
},
//get drawn pattern as string
getPattern: function() {
var iObj = objectHolder[this.token];
return (iObj.patternAry || []).join(iObj.option.delimiter);
},
//method to draw a pattern dynamically
setPattern: function(pattern) {
var iObj = objectHolder[this.token],
option = iObj.option,
matrix = option.matrix,
margin = option.margin,
radius = option.radius;
//allow to set password manually only when enable set pattern option is true
if (!option.enableSetPattern) return;
//check if pattern is string break it with the delimiter
if (typeof pattern === "string") {
pattern = pattern.split(option.delimiter);
}
this.reset();
iObj.wrapLeft = 0;
iObj.wrapTop = 0;
for (var i = 0; i < pattern.length; i++) {
var idx = pattern[i] - 1,
x = idx % matrix[1],
y = Math.floor(idx / matrix[1]),
clientX = x * (2 * margin + 2 * radius) + 2 * margin + radius,
clientY = y * (2 * margin + 2 * radius) + 2 * margin + radius;
moveHandler.call(null, {
clientX: clientX,
clientY: clientY,
preventDefault: nullFunc
}, this);
}
},
//to temprory enable disable plugin
enable: function() {
var iObj = objectHolder[this.token];
iObj.disabled = false;
},
disable: function() {
var iObj = objectHolder[this.token];
iObj.disabled = true;
},
//reset pattern lock
reset: function() {
var iObj = objectHolder[this.token];
//to remove lines
iObj.pattCircle.forEach(el => el.classList.remove('hovered', 'dir', 's', 'n', 'w', 'e', 's-w', 's-e', 'n-w', 'n-e'));
iObj.holder.querySelectorAll('.patt-lines').forEach(el => iObj.wrapper.removeChild(el));
//add/reset a array which capture pattern
iObj.patternAry = [];
//remove last Obj
iObj.lastPosObj = null;
//remove error class if added
iObj.holder.classList.remove('patt-error');
},
//to display error if pattern is not drawn correct
error: function() {
objectHolder[this.token].holder.classList.add('patt-error');
},
//to check the drawn pattern against given pattern
checkForPattern: function(pattern, success, error) {
var iObj = objectHolder[this.token];
iObj.rightPattern = pattern;
iObj.onSuccess = success || nullFunc;
iObj.onError = error || nullFunc;
}
};
PatternLock.defaults = {
matrix: [3, 3],
margin: 20,
radius: 25,
patternVisible: true,
lineOnMove: true,
delimiter: "", // a delimiter between the pattern
enableSetPattern: false,
allowRepeat: false
};
return PatternLock;
})(window);