UNPKG

@natlibfi/melinda-merge-ui-commons

Version:
148 lines (127 loc) 18.6 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.RecordPanel = 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 _marcRecordPanel = require('./marc-record-panel'); require('../../styles/components/record-panel.scss'); var _marcEditorPanel = require('./marc-editor-panel'); 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. * * Common modules for Melinda UI applications * * Copyright (C) 2015-2019 University Of Helsinki (The National Library Of Finland) * * This file is part of melinda-ui-commons * * melinda-ui-commons 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. * * melinda-ui-commons 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 RecordPanel = exports.RecordPanel = function (_React$Component) { _inherits(RecordPanel, _React$Component); function RecordPanel() { _classCallCheck(this, RecordPanel); return _possibleConstructorReturn(this, (RecordPanel.__proto__ || Object.getPrototypeOf(RecordPanel)).apply(this, arguments)); } _createClass(RecordPanel, [{ key: 'handleRecordUpdate', value: function handleRecordUpdate(nextRecord) { if (this.props.onRecordUpdate) { this.props.onRecordUpdate(nextRecord); } } }, { key: 'renderRecord', value: function renderRecord() { return _react2.default.createElement( 'div', null, this.props.showHeader ? this.props.recordHeader : null, this.props.editable ? this.renderEditor() : this.renderPreview() ); } }, { key: 'renderPreview', value: function renderPreview() { if (this.props.record !== undefined) { return _react2.default.createElement( 'div', null, _react2.default.createElement( 'div', { className: 'card-content' }, _react2.default.createElement(_marcRecordPanel.MarcRecordPanel, { record: this.props.record, onFieldClick: this.props.onFieldClick }) ), this.props.children ); } else { return _react2.default.createElement( 'div', null, this.props.children ); } } }, { key: 'renderEditor', value: function renderEditor() { var _this2 = this; return _react2.default.createElement( 'div', { className: 'card-content' }, _react2.default.createElement(_marcEditorPanel.MarcEditor, { record: this.props.record, onRecordUpdate: function onRecordUpdate(record) { return _this2.handleRecordUpdate(record); } }) ); } }, { key: 'render', value: function render() { return _react2.default.createElement( 'div', { className: 'marc-record-container' }, this.renderRecord() ); } }]); return RecordPanel; }(_react2.default.Component); RecordPanel.propTypes = { children: _propTypes2.default.oneOfType([_propTypes2.default.object, _propTypes2.default.array]), editable: _propTypes2.default.bool, error: _propTypes2.default.object, onFieldClick: _propTypes2.default.func, onRecordUpdate: _propTypes2.default.func, record: _propTypes2.default.object, recordHeader: _propTypes2.default.element, showHeader: _propTypes2.default.bool, title: _propTypes2.default.string }; //# sourceMappingURL=record-panel.js.map