grommet
Version:
focus on the essential experience
89 lines (72 loc) • 3.2 kB
JavaScript
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
import React, { Component } from 'react';
import { storiesOf } from '@storybook/react';
import { Box, Grommet, Select, Button } from 'grommet';
import { grommet } from 'grommet/themes';
var SimpleSelect =
/*#__PURE__*/
function (_Component) {
_inheritsLoose(SimpleSelect, _Component);
function SimpleSelect() {
var _this;
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
_this = _Component.call.apply(_Component, [this].concat(args)) || this;
_defineProperty(_assertThisInitialized(_this), "state", {
options: ['one', 'two'],
value: '',
open: false
});
return _this;
}
var _proto = SimpleSelect.prototype;
_proto.render = function render() {
var _this2 = this;
var _this$props = this.props,
theme = _this$props.theme,
rest = _objectWithoutPropertiesLoose(_this$props, ["theme"]);
var _this$state = this.state,
options = _this$state.options,
value = _this$state.value,
open = _this$state.open;
return React.createElement(Grommet, {
full: true,
theme: theme || grommet
}, React.createElement(Box, {
fill: true,
align: "center",
justify: "start",
pad: "large",
gap: "small"
}, React.createElement(Button, {
onClick: function onClick() {
return _this2.setState({
open: !open
});
},
label: "Control the select"
}), React.createElement(Select, _extends({
id: "select",
name: "select",
placeholder: "Select",
open: open,
value: value,
options: options,
onChange: function onChange(_ref) {
var option = _ref.option;
return _this2.setState({
value: option
});
}
}, rest))));
};
return SimpleSelect;
}(Component);
storiesOf('Select', module).add('Controlled', function () {
return React.createElement(SimpleSelect, null);
});