/* * 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 ActionDialogMixin from './ActionDialogMixin' /** * Sample Dialog class used for reference only, ready to be * copy/pasted :-) */ export default React.createClass({ mixins:[ ActionDialogMixin ], getInitialState: function(){ return {...this.props.activityState}; }, componentDidMount: function(){ this._observer = (activityState) => { this.setState(activityState); }; this.props.pydio.observe('activity_state_change', this._observer); }, componentWillUnmount: function(){ this.props.pydio.stopObserving('activity_state_change', this._observer); }, getDefaultProps: function(){ return { dialogTitleId: '375t', dialogIsModal: false }; }, render: function(){ const {MessageHash} = this.props.pydio; const {lastActiveSince, timerString} = this.state; const sentence = MessageHash['375'].replace('__IDLE__', lastActiveSince).replace('__LOGOUT__', timerString); return (
{this.props.pydio.notify('user_activity');}}>

{sentence}

{MessageHash['376']}

); } });