-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcounter_component.js
37 lines (37 loc) · 1.16 KB
/
counter_component.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
define(['./local_storage', 'di/annotations'], function($__0,$__1) {
"use strict";
var __moduleName = (void 0);
var Storage = ($__0).Storage;
var Inject = ($__1).Inject;
function __construct(storage) {
this.storage = storage;
}
__construct.parameters = [[Storage]];
var CounterComponent = React.createClass({
__construct: __construct,
getInitialState: function() {
return {count: this.storage.get('count') || 0};
},
setCount: function(value) {
this.setState({count: value});
this.storage.set('count', value);
},
handleIncrement: function(event) {
this.setCount(this.state.count + 1);
},
handleDecrement: function(event) {
this.setCount(this.state.count - 1);
},
render: function() {
var classes = 'counter ' + (this.state.count >= 0 ? 'positive' : 'negative');
return (React.DOM.div({className: classes}, React.DOM.button({onClick: this.handleDecrement}, "-"), React.DOM.div(null, this.state.count), React.DOM.button({onClick: this.handleIncrement}, "+")));
}
});
;
return {
get CounterComponent() {
return CounterComponent;
},
__transpiledModule: true
};
});