UNPKG

yyuap-ref

Version:

cloud os fe ref project which is based on tinper

81 lines (61 loc) 3.19 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); 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; }; }(); var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _tree = require('../../bee/tree'); var _tree2 = _interopRequireDefault(_tree); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 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 Error = function (_Component) { _inherits(Error, _Component); function Error(props) { _classCallCheck(this, Error); var _this = _possibleConstructorReturn(this, (Error.__proto__ || Object.getPrototypeOf(Error)).call(this, props)); _this.state = {}; return _this; } _createClass(Error, [{ key: 'render', value: function render() { var language = this.props.language; var nodata = "没有查询到数据"; switch (language) { case "zh_CN": nodata = '没有查询到数据'; break; case "en_US": nodata = 'No query to data'; break; case "zh_TW": nodata = '沒有査詢到數據'; break; case "fr_FR": nodata = 'Pas de données'; break; case "de_DE": nodata = 'Keine abfrage zu Daten'; break; case "ja_JP": nodata = 'データが検索されていません'; break; default: nodata = '没有查询到数据'; } var show = this.props.show; var className = show ? 'c-error show ' : 'c-error hide '; return _react2.default.createElement( 'div', { className: className }, nodata ); } }]); return Error; }(_react.Component); exports.default = Error; module.exports = exports['default'];