-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
115 lines (83 loc) · 2.4 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
/**
*
*/
var template = require('./template')
, domify = require('domify')
, event = require('event')
, viewportToolbar = require('viewport-toolbar')
, body
, stateHistory;
body = document.querySelector('body');
// History cache
stateHistory = [];
/**
* Expose.
*/
module.exports = Viewport;
/**
* Viewport
*/
function Viewport () {
this.el = domify(template);
this.container = this.el.querySelector('#viewport');
body.appendChild(this.el);
}
/**
*
*/
Viewport.prototype.goTo = function (view, ctx, direction) {
var length = stateHistory.length
, state = ctx.state;
console.log(view);
if (length === 0) {
stateHistory.push(state.path);
this.goToFrom(view);
return;
}
if (state.path === stateHistory[length-2] || direction === 'left') {
stateHistory.pop();
this.goToFrom(view, 'view-left');
} else {
stateHistory.push(state.path);
this.goToFrom(view, 'view-right');
}
return this;
};
/**
*
*/
Viewport.prototype.goToFrom = function (view, from) {
var current = document.querySelector('.view-center')
, currentEl
, container = this.container
, viewEl = view.el || view.view.el
, onTransitionEnd;
if (!viewEl) throw new Error("View component needs to have a DOM element.");
if (current && current.id === viewEl.id) return;
// append to container
container.appendChild(viewEl);
if (!current || !from) {
viewEl.setAttribute("class", "view view-center");
return;
}
currentEl = current;
// Position the view at the starting position of the animation
viewEl.setAttribute("class", "view " + from);
onTransitionEnd = function (e) {
e.preventDefault();
event.unbind(currentEl, 'webkitTransitionEnd', onTransitionEnd);
currentEl.remove();
};
event.bind(currentEl, 'webkitTransitionEnd', onTransitionEnd);
// Force reflow. More information here: http://www.phpied.com/rendering-repaint-reflowrelayout-restyle/
container.offsetWidth;
viewEl.setAttribute("class", "view transition view-center");
currentEl.setAttribute("class", "view transition " + (from === "view-left" ? "view-right" : "view-left"));
};
/**
* Enables main toolbar.
*/
Viewport.prototype.enableToolbar = function (options) {
var toolbar = viewportToolbar(options);
this.el.appendChild(toolbar.el);
};