import { observer } from 'mobx-react'; import ms from 'ms'; import { Component, type ReactElement } from 'react'; import Confetti from 'react-confetti'; import { type WrappedComponentProps, defineMessages, injectIntl, } from 'react-intl'; import withStyles, { type WithStylesProps } from 'react-jss'; import { Link } from 'react-router-dom'; import type Service from '../../../models/Service'; import Appear from '../../ui/effects/Appear'; import ServiceView from './ServiceView'; 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', }, }; interface IProps extends WrappedComponentProps, WithStylesProps { services?: Service[]; setWebviewReference: () => void; detachService: () => void; // handleIPCMessage: () => void; // TODO: [TECH DEBT] later check it // openWindow: () => void; // TODO: [TECH DEBT] later check it reload: (options: { serviceId: string }) => void; openSettings: (options: { path: string }) => void; update: (options: { serviceId: string; serviceData: { isEnabled: boolean }; redirect: boolean; }) => void; userHasCompletedSignup: boolean; isSpellcheckerEnabled: boolean; } interface IState { showConfetti: boolean; } @observer class Services extends Component { confettiTimeout: number | null = null; constructor(props: IProps) { super(props); this.state = { showConfetti: true, }; } componentDidMount(): void { this.confettiTimeout = window.setTimeout(() => { this.setState({ showConfetti: false, }); }, ms('8s')); } componentWillUnmount(): void { if (this.confettiTimeout) { clearTimeout(this.confettiTimeout); } } render(): ReactElement { const { services = [], // handleIPCMessage, // TODO: [TECH DEBT] later check it setWebviewReference, detachService, // openWindow, // TODO: [TECH DEBT] later check it reload, openSettings, update, userHasCompletedSignup, classes, isSpellcheckerEnabled, intl, } = this.props; const { showConfetti } = this.state; 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(withStyles(styles, { injectTheme: true })(Services));