/* * 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 . */ /** * Search input building a set of query parameters and calling * the callbacks to display / hide results */ export default React.createClass({ propTypes:{ // Required parameters:React.PropTypes.object.isRequired, queryParameterName:React.PropTypes.string.isRequired, // Other textLabel:React.PropTypes.string, displayResults:React.PropTypes.func, hideResults:React.PropTypes.func, displayResultsState:React.PropTypes.bool, limit:React.PropTypes.number }, getInitialState: function(){ return { displayResult:this.props.displayResultsState?true:false }; }, getDefaultProps: function(){ var dm = new PydioDataModel(); dm.setRootNode(new AjxpNode()); return {dataModel: dm}; }, displayResultsState: function(){ this.setState({ displayResult:true }); }, hideResultsState: function(){ this.setState({ displayResult:false }); this.props.hideResults(); }, onClickSearch: function(){ var value = this.refs.query.getValue(); var dm = this.props.dataModel; var params = this.props.parameters; params[this.props.queryParameterName] = value; params['limit'] = this.props.limit || 100; dm.getRootNode().setChildren([]); PydioApi.getClient().request(params, function(transport){ var remoteNodeProvider = new RemoteNodeProvider({}); remoteNodeProvider.parseNodes(dm.getRootNode(), transport); dm.getRootNode().setLoaded(true); this.displayResultsState(); this.props.displayResults(value, dm); }.bind(this)); }, keyDown: function(event){ if(event.key == 'Enter'){ this.onClickSearch(); } }, render: function(){ return (
); } });