/* * Copyright 2007-2017 Charles du Jeu - Abstrium SAS * This file is part of Pydio. * * Pydio 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. * * Pydio 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 Pydio. If not, see . * * The latest code can be found at . */ import FormMixin from '../mixins/FormMixin' const React = require('react') const {AutoComplete, MenuItem, RefreshIndicator} = require('material-ui') import FieldWithChoices from '../mixins/FieldWithChoices' let AutocompleteBox = React.createClass({ mixins:[FormMixin], handleUpdateInput: function(searchText) { //this.setState({searchText: searchText}); }, handleNewRequest: function(chosenValue) { this.onChange(null, chosenValue.key); }, render: function(){ const {choices} = this.props; let dataSource = []; let labels = {}; choices.forEach((choice, key) => { dataSource.push({ key : key, text : choice, value : {choice} }); labels[key] = choice; }); let displayText = this.state.value; if(labels && labels[displayText]){ displayText = labels[displayText]; } return (
{!dataSource.length && } {dataSource.length && (key.toLowerCase().indexOf(searchText.toLowerCase()) === 0)} openOnFocus={true} menuProps={{maxHeight: 200}} /> }
); } }); AutocompleteBox = FieldWithChoices(AutocompleteBox); export {AutocompleteBox as default}