App.js

79 lines | 3.515 kB Blame History Raw Download
"use strict";

var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }

function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }

var App = function (_React$Component) {
    _inherits(App, _React$Component);

    function App(props) {
        _classCallCheck(this, App);

        var _this = _possibleConstructorReturn(this, (App.__proto__ || Object.getPrototypeOf(App)).call(this, props));

        console.log('App start');

        _this.state = { counter: 0 };

        //Прикрепление текущего объекта к this в функции обработки
        _this.OnClick_Minus = _this.OnClick_Minus.bind(_this);
        _this.OnClick_Plus = _this.OnClick_Plus.bind(_this);
        return _this;
    }

    _createClass(App, [{
        key: "OnClick_Minus",
        value: function OnClick_Minus() {
            this.setState({ counter: this.state.counter - 1 });
        }
    }, {
        key: "OnClick_Plus",
        value: function OnClick_Plus(e) {
            this.setState({ counter: this.state.counter + 1 });
        }
    }, {
        key: "render",
        value: function render() {
            return React.createElement(
                "div",
                null,
                React.createElement(
                    "h1",
                    null,
                    "Hello, React 2+2 = ",
                    2 + 2
                ),
                " ",
                React.createElement("br", null),
                React.createElement(
                    "p",
                    null,
                    "Counter: ",
                    this.state.counter,
                    " "
                ),
                React.createElement(
                    "button",
                    { onClick: this.OnClick_Minus },
                    "Counter--"
                ),
                React.createElement(
                    "button",
                    { onClick: this.OnClick_Plus },
                    "Counter++"
                ),
                React.createElement(Component2, null),
                React.createElement("br", null)
            );
        }
    }]);

    return App;
}(React.Component);

ReactDOM.render(React.createElement(App, null), document.getElementById("app"));