/* Copyright 2008-2018 Clipperz Srl This file is part of Clipperz, the online password manager. For further information about its features and functionalities please refer to http://www.clipperz.com. * Clipperz 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. * Clipperz 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 Clipperz. If not, see http://www.gnu.org/licenses/. */ "use strict"; Clipperz.Base.module('Clipperz.PM.UI.Components.ExtraFeatures.DataImport.CSV'); Clipperz.PM.UI.Components.ExtraFeatures.DataImport.CSV.NotesClass = React.createClass({ displayName: 'Clipperz.PM.UI.Components.ExtraFeatures.DataImport.CSV.Notes', getInitialState: function() { return { 'notesIndex': this.props.importContext.state('csvData.notesIndex'), }; }, onChangeCallback: function (columnIndex) { this.setState({'notesIndex': columnIndex}); this.props.importContext.setState('csvData.notesIndex', columnIndex); }, render: function() { var importContext = this.props.importContext; return React.DOM.div({},[ React.DOM.p({}, "Select the column that represents a \"notes\" field. (optional)"), React.DOM.input({ 'id': 'csv-notes-nonotes', 'type': 'radio', 'checked': ! this.state['notesIndex'], 'onChange': MochiKit.Base.partial(this.onChangeCallback, null) }), React.DOM.label({'htmlFor': 'csv-notes-nonotes'}, "\"notes\" field not present"), React.DOM.table({'className': 'csvTable'},[ React.DOM.thead({}, React.DOM.tr({}, MochiKit.Base.map(MochiKit.Base.bind(function (cellInfo) { var result; var columnIndex = cellInfo[0]; var columnValue = cellInfo[1]; var thClasses = { 'title': (columnIndex == importContext.state('csvData.titleIndex')), 'notes': (columnIndex == importContext.state('csvData.notesIndex')), } if (importContext.state('csvData.selectedColumns')[columnIndex]) { result = React.DOM.th({ 'key': 'csv-notes-header-' + columnIndex, 'className': Clipperz.PM.UI.Components.classNames(thClasses) }, [ React.DOM.input({ 'type': 'radio', 'id': 'csv-notes-input-' + columnIndex, 'key': 'csv-notes-input-' + columnIndex, 'ref': 'csv-notes-input-' + columnIndex, 'checked': (columnIndex == this.state['notesIndex']), 'onChange': MochiKit.Base.partial(this.onChangeCallback, columnIndex), 'disabled': (columnIndex == importContext.state('csvData.titleIndex')) }), React.DOM.label({'htmlFor': 'csv-notes-input-' + columnIndex}, columnValue), ]); } else { result = null; } return result; }, this), Clipperz.Base.zipWithRange(this.props.importContext.state('csvData.labels')))) ), importContext.renderCsvTableBody(true) ]) ]); } }); Clipperz.PM.UI.Components.ExtraFeatures.DataImport.CSV.Notes = React.createFactory(Clipperz.PM.UI.Components.ExtraFeatures.DataImport.CSV.NotesClass);