react-meteo-chart
Version:
pre alpha of meteo chart
180 lines (141 loc) • 6.83 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = exports.COLORS = void 0;
var _react = _interopRequireWildcard(require("react"));
var _reactVis = require("react-vis");
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj["default"] = obj; return newObj; } }
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a 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); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
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; }
var COLORS = {
widSpeedColor: "#ae0b0b",
temperatureColor: "#dce775",
barometricTendencyColor: "#1f6025",
precipitationColor: "#40bfb7",
normalizedPressureColor: "#342d86",
pressureColor: "#822d86"
};
exports.COLORS = COLORS;
var ITEMS = [{
title: "Скорость ветра, м/с",
color: "".concat(COLORS.widSpeedColor),
strokeWidth: 13
}, {
title: "Температура, C°",
color: "".concat(COLORS.temperatureColor),
strokeWidth: 13
}, {
title: "Барическая тенденция, гПа",
color: "".concat(COLORS.barometricTendencyColor),
strokeWidth: 13
}, {
title: "Осадки, мм",
color: "".concat(COLORS.precipitationColor),
strokeWidth: 13
}, {
title: "Приведенное давление, гПа",
color: "".concat(COLORS.normalizedPressureColor),
strokeWidth: 13
}, {
title: "Давление, гПа",
color: "".concat(COLORS.pressureColor),
strokeWidth: 13
}];
var AmsLegend =
/*#__PURE__*/
function (_Component) {
_inherits(AmsLegend, _Component);
function AmsLegend() {
var _getPrototypeOf2;
var _this;
_classCallCheck(this, AmsLegend);
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
_this = _possibleConstructorReturn(this, (_getPrototypeOf2 = _getPrototypeOf(AmsLegend)).call.apply(_getPrototypeOf2, [this].concat(args)));
_defineProperty(_assertThisInitialized(_this), "state", {
wind: true,
temp: true,
tendency: true,
precipit: true,
normalPress: true,
press: true
});
return _this;
}
_createClass(AmsLegend, [{
key: "render",
value: function render() {
var _this2 = this;
var _this$state = this.state,
wind = _this$state.wind,
temp = _this$state.temp,
tendency = _this$state.tendency,
precipit = _this$state.precipit,
normalPress = _this$state.normalPress,
press = _this$state.press;
var setVal = this.props.setVal;
return _react["default"].createElement(_reactVis.DiscreteColorLegend, {
className: "legend",
orientation: "horizontal",
width: 850,
items: ITEMS,
onItemClick: function onItemClick(e) {
switch (e.title) {
case "Скорость ветра, м/с":
_this2.setState({
wind: !wind
});
setVal(wind, "wind");
break;
case "Температура, C°":
_this2.setState({
temp: !temp
});
setVal(temp, "temp");
break;
case "Барическая тенденция, гПа":
_this2.setState({
tendency: !tendency
});
setVal(tendency, "tendency");
break;
case "Осадки, мм":
_this2.setState({
precipit: !precipit
});
setVal(precipit, "precipit");
break;
case "Приведенное давление, гПа":
_this2.setState({
normalPress: !normalPress
});
setVal(normalPress, "normalPress");
break;
case "Давление, гПа":
_this2.setState({
press: !press
});
setVal(press, "press");
break;
default:
console.log("Unknown item");
break;
}
}
});
}
}]);
return AmsLegend;
}(_react.Component);
var _default = AmsLegend;
exports["default"] = _default;