/* * 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 . */ const React = require('react') const {TextField, FlatButton} = require('material-ui') const Pydio = require('pydio'); const {ActionDialogMixin, CancelButtonProviderMixin, SubmitButtonProviderMixin} = Pydio.requireLib('boot'); const PassUtils = require('pydio/util/pass'); export default React.createClass({ mixins: [ AdminComponents.MessagesConsumerMixin, ActionDialogMixin, CancelButtonProviderMixin, SubmitButtonProviderMixin ], propTypes: { pydio : React.PropTypes.instanceOf(Pydio), userId: React.PropTypes.string.isRequired }, getDefaultProps: function(){ return { dialogTitle: global.pydio.MessageHash['role_editor.25'], dialogSize: 'sm' } }, getInitialState: function () { const pwdState = PassUtils.getState(); return {...pwdState}; }, onChange: function (event, value) { const passValue = this.refs.pass.getValue(); const confirmValue = this.refs.confirm.getValue(); const newState = PassUtils.getState(passValue, confirmValue, this.state); this.setState(newState); }, submit: function () { if(!this.state.valid){ this.props.pydio.UI.displayMessage('ERROR', this.state.passErrorText || this.state.confirmErrorText); return; } const value = this.refs.pass.getValue(); PydioApi.getClient().request({ get_action: "edit", sub_action: "update_user_pwd", user_id: this.props.userId, user_pwd: value }, function () { this.dismiss() }.bind(this) ); }, render: function () { // This is passed via state, context is not working, // so we have to get the messages from the global. const getMessage = function (id, namespace='') { return global.pydio.MessageHash[namespace + (namespace ? '.' : '') + id] || id; }; return (
); } });