-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.js
138 lines (133 loc) · 4.45 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
var React = require('react');
var render = require('react-dom').render;
var moment = require('moment');
var createReactClass = require('create-react-class');
var D = React.DOM;
var TransitiveNumber = require('..');
var transitiveNumber = React.createFactory(TransitiveNumber);
var App = createReactClass({
getInitialState: function() {
return {
time: 0,
count: 9
};
},
componentDidMount: function() {
this._timer = setInterval(this.tick, 1000);
},
componentWillUnmount: function() {
clearInterval(this._timer);
},
tick: function() {
this.setState({
time: this.state.time + 1
});
},
incrementCount: function() {
this.setState({
count: this.state.count + 1
});
},
decrementCount: function() {
this.setState({
count: this.state.count - 1
});
},
render: function() {
return D.div(
null,
D.div(
{ className: 'comparison' },
D.div(
{ className: 'comparison__cell comparison__cell_head' },
'Plain HTML'
),
D.div(
{ className: 'comparison__cell comparison__cell_head' },
'With ',
D.code(null, 'TransitiveNumber')
),
D.div(
{ className: 'comparison__cell comparison__cell_first' },
D.div(
{ className: 'timer' },
D.span({ className: 'timer__dot' }),
D.span(
null,
moment(this.state.time * 1000).format('HH:mm:ss')
)
)
),
D.div(
{ className: 'comparison__cell' },
D.div(
{ className: 'timer' },
D.span({ className: 'timer__dot' }),
transitiveNumber(
null,
moment(this.state.time * 1000).format('HH:mm:ss')
)
)
),
D.div(
{ className: 'comparison__cell comparison__cell_first' },
D.div(
{ className: 'counter' },
D.button(
{
className: 'counter__button counter__button_down',
type: 'button',
onClick: this.decrementCount
}
),
D.span(
null,
this.state.count + ' points'
),
D.button(
{
className: 'counter__button counter__button_up',
type: 'button',
onClick: this.incrementCount
}
)
)
),
D.div(
{ className: 'comparison__cell' },
D.div(
{ className: 'counter' },
D.button(
{
className: 'counter__button counter__button_down',
type: 'button',
onClick: this.decrementCount
}
),
transitiveNumber(
null,
this.state.count
),
' points',
D.button(
{
className: 'counter__button counter__button_up',
type: 'button',
onClick: this.incrementCount
}
)
)
)
)
);
}
});
document.addEventListener('DOMContentLoaded', function() {
var app = React.createFactory(App);
setInterval(function() {
render(
app(),
document.getElementById('app')
);
});
});