/* * 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 . */ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _ProfilePane = require('./ProfilePane'); var _ProfilePane2 = _interopRequireDefault(_ProfilePane); var _pydio = require('pydio'); var _pydio2 = _interopRequireDefault(_pydio); var _materialUi = require('material-ui'); var _Pydio$requireLib = _pydio2['default'].requireLib('boot'); var ActionDialogMixin = _Pydio$requireLib.ActionDialogMixin; var CancelButtonProviderMixin = _Pydio$requireLib.CancelButtonProviderMixin; var SubmitButtonProviderMixin = _Pydio$requireLib.SubmitButtonProviderMixin; /** * Sample Dialog class used for reference only, ready to be * copy/pasted :-) */ exports['default'] = _react2['default'].createClass({ displayName: 'WelcomeModal', mixins: [ActionDialogMixin, CancelButtonProviderMixin], getDefaultProps: function getDefaultProps() { return { dialogTitle: '', dialogIsModal: true, dialogSize: 'sm', dialogPadding: 0 }; }, close: function close(skip) { if (this.props.onRequestStart) { this.props.onRequestStart(skip); } this.props.onDismiss(); }, getMessage: function getMessage(id) { return this.props.pydio.MessageHash['ajax_gui.tour.welcomemodal.' + id]; }, getButtons: function getButtons() { var _this = this; return [_react2['default'].createElement(_materialUi.FlatButton, { label: this.getMessage('skip'), onTouchTap: function () { _this.close(true); } }), _react2['default'].createElement(_materialUi.FlatButton, { label: this.getMessage('start'), primary: true, onTouchTap: function () { return _this.close(false); } })]; }, render: function render() { return _react2['default'].createElement( 'div', null, _react2['default'].createElement( 'div', { style: { position: 'relative', width: '100%', height: 205, overflow: 'hidden', backgroundColor: '#eceff1' } }, _react2['default'].createElement(_ProfilePane2['default'], _extends({ miniDisplay: true }, this.props, { saveOnChange: true })) ), _react2['default'].createElement(_materialUi.CardTitle, { title: this.getMessage('title'), subtitle: this.getMessage('subtitle') }) ); } }); module.exports = exports['default'];