import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { observer } from 'mobx-react'; import injectSheet from 'react-jss'; import classnames from 'classnames'; import { Loader } from '@meetfranz/ui'; import { defineMessages, intlShape } from 'react-intl'; import { workspaceStore } from '../index'; const messages = defineMessages({ switchingTo: { id: 'workspaces.switchingIndicator.switchingTo', defaultMessage: '!!!Switching to', }, }); const styles = theme => ({ wrapper: { display: 'flex', alignItems: 'flex-start', position: 'absolute', transition: 'width 0.5s ease', width: `calc(100% - ${theme.workspaces.drawer.width}px)`, marginTop: '20px', }, component: { background: 'rgba(20, 20, 20, 0.4)', padding: '10px 20px', display: 'flex', width: 'auto', height: 'auto', margin: [0, 'auto'], borderRadius: 6, alignItems: 'center', zIndex: 200, }, spinner: { width: 40, height: 40, marginRight: 10, }, message: { fontSize: 16, whiteSpace: 'nowrap', color: theme.colorAppLoaderSpinner, }, }); @injectSheet(styles) @observer class WorkspaceSwitchingIndicator extends Component { static propTypes = { classes: PropTypes.object.isRequired, theme: PropTypes.object.isRequired, }; static contextTypes = { intl: intlShape, }; render() { const { classes, theme } = this.props; const { intl } = this.context; const { isSwitchingWorkspace, nextWorkspace } = workspaceStore; if (!isSwitchingWorkspace) return null; const nextWorkspaceName = nextWorkspace ? nextWorkspace.name : 'All services'; return (

{`${intl.formatMessage(messages.switchingTo)} ${nextWorkspaceName}`}

); } } export default WorkspaceSwitchingIndicator;