import { Component } from 'react'; import PropTypes from 'prop-types'; import { observer, PropTypes as MobxPropTypes, inject } from 'mobx-react'; import { Link } from 'react-router'; import { defineMessages, injectIntl } from 'react-intl'; import Confetti from 'react-confetti'; import ms from 'ms'; import injectSheet from 'react-jss'; import ServiceView from './ServiceView'; import Appear from '../../ui/effects/Appear'; const messages = defineMessages({ getStarted: { id: 'services.getStarted', defaultMessage: 'Get started', }, login: { id: 'services.login', defaultMessage: 'Please login to use Ferdium.', }, serverless: { id: 'services.serverless', defaultMessage: 'Use Ferdium without an Account', }, serverInfo: { id: 'services.serverInfo', defaultMessage: 'Optionally, you can change your Ferdium server by clicking the cog in the bottom left corner. If you are switching over (from one of the hosted servers) to using Ferdium without an account, please be informed that you can export your data from that server and subsequently import it using the Help menu to resurrect all your workspaces and configured services!', }, }); const styles = { confettiContainer: { position: 'absolute', width: '100%', zIndex: 9999, pointerEvents: 'none', }, }; class Services extends Component { static propTypes = { services: MobxPropTypes.arrayOrObservableArray, setWebviewReference: PropTypes.func.isRequired, detachService: PropTypes.func.isRequired, handleIPCMessage: PropTypes.func.isRequired, openWindow: PropTypes.func.isRequired, reload: PropTypes.func.isRequired, openSettings: PropTypes.func.isRequired, update: PropTypes.func.isRequired, userHasCompletedSignup: PropTypes.bool.isRequired, classes: PropTypes.object.isRequired, isSpellcheckerEnabled: PropTypes.bool.isRequired, }; static defaultProps = { services: [], }; state = { showConfetti: true, }; _confettiTimeout = null; componentDidMount() { this._confettiTimeout = window.setTimeout(() => { this.setState({ showConfetti: false, }); }, ms('8s')); } componentWillUnmount() { if (this._confettiTimeout) { clearTimeout(this._confettiTimeout); } } render() { const { services, handleIPCMessage, setWebviewReference, detachService, openWindow, reload, openSettings, update, userHasCompletedSignup, classes, isSpellcheckerEnabled, } = this.props; const { showConfetti } = this.state; const { intl } = this.props; return (
{userHasCompletedSignup && (
)} {services.length === 0 && (
Logo {intl.formatMessage(messages.getStarted)}
)} {services .filter(service => !service.isTodosService) .map(service => ( reload({ serviceId: service.id })} edit={() => openSettings({ path: `services/edit/${service.id}` })} enable={() => update({ serviceId: service.id, serviceData: { isEnabled: true, }, redirect: false, }) } isSpellcheckerEnabled={isSpellcheckerEnabled} /> ))}
); } } export default injectIntl( injectSheet(styles, { injectTheme: true })( inject('actions')(observer(Services)), ), );