@natlibfi/melinda-merge-ui-commons
Version:
Common modules for Melinda Merge UI application
129 lines (110 loc) • 18.2 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ErrorMessagePanel = undefined;
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 _propTypes = require('prop-types');
var _propTypes2 = _interopRequireDefault(_propTypes);
var _classnames = require('classnames');
var _classnames2 = _interopRequireDefault(_classnames);
require('../../styles/components/error-message-panel.scss');
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; } /**
*
* @licstart The following is the entire license notice for the JavaScript code in this file.
*
* UI for merging MARC records
*
* Copyright (C) 2015-2019 University Of Helsinki (The National Library Of Finland)
*
* This file is part of marc-merge-ui
*
* marc-merge-ui program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* marc-merge-ui is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @licend The above is the entire license notice
* for the JavaScript code in this file.
*
*/
var ErrorMessagePanel = exports.ErrorMessagePanel = function (_React$Component) {
_inherits(ErrorMessagePanel, _React$Component);
function ErrorMessagePanel() {
_classCallCheck(this, ErrorMessagePanel);
return _possibleConstructorReturn(this, (ErrorMessagePanel.__proto__ || Object.getPrototypeOf(ErrorMessagePanel)).apply(this, arguments));
}
_createClass(ErrorMessagePanel, [{
key: 'renderTitle',
value: function renderTitle() {
return _react2.default.createElement(
'div',
{ className: 'heading' },
this.props.title
);
}
}, {
key: 'renderMessage',
value: function renderMessage() {
return _react2.default.createElement(
'p',
null,
this.props.message
);
}
}, {
key: 'renderMessageList',
value: function renderMessageList() {
return _react2.default.createElement(
'pre',
null,
this.props.messageList.join('\n')
);
}
}, {
key: 'render',
value: function render() {
return _react2.default.createElement(
'div',
{ className: (0, _classnames2.default)({ 'panel': this.props.typePanel }) },
this.props.recordHeader ? this.props.recordHeader : null,
_react2.default.createElement(
'div',
{ className: (0, _classnames2.default)({ 'red': !this.props.warning, 'yellow': this.props.warning }, 'lighten-2', 'error-message-panel') },
this.props.title ? this.renderTitle() : null,
this.props.message ? this.renderMessage() : null,
this.props.messageList ? this.renderMessageList() : null,
this.props.warning ? _react2.default.createElement(
'button',
{ className: 'waves-effect waves-light btn', onClick: this.props.onDismiss, name: 'dismiss' },
'Hylk\xE4\xE4'
) : null
)
);
}
}]);
return ErrorMessagePanel;
}(_react2.default.Component);
ErrorMessagePanel.propTypes = {
title: _propTypes2.default.string,
message: _propTypes2.default.string,
messageList: _propTypes2.default.array,
warning: _propTypes2.default.bool,
onDismiss: _propTypes2.default.func,
recordHeader: _propTypes2.default.element,
typePanel: _propTypes2.default.bool
};
//# sourceMappingURL=error-message-panel.js.map