* Atom / RSS meta link * Spike * Feeling good about this spike now * Remove document.collection * Remove koa.ctx from all presenters to make them portable outside requests * Remove full serialized model from events Move events.add to controllers for now, will eventually be in commands * collections.create event parentDocument -> parentDocumentId * Fix up deprecated tests * Fixed: Doc creation * documents.move * Handle collection deleted * 💚 * Authorize room join requests * Move starred data structure Account for documents with no context on sockets * Add socket.io-redis * Add WEBSOCKETS_ENABLED env variable to disable websockets entirely for self hosted New installations will default to true, existing installations to false * 💚 No need for promise response here * Reload notice
96 lines
2.1 KiB
JavaScript
96 lines
2.1 KiB
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import styled from 'styled-components';
|
|
import { darken } from 'polished';
|
|
import { fadeAndScaleIn } from 'shared/styles/animations';
|
|
import type { Toast as TToast } from '../../../types';
|
|
|
|
type Props = {
|
|
onRequestClose: () => void,
|
|
closeAfterMs: number,
|
|
toast: TToast,
|
|
};
|
|
|
|
class Toast extends React.Component<Props> {
|
|
timeout: TimeoutID;
|
|
|
|
static defaultProps = {
|
|
closeAfterMs: 3000,
|
|
};
|
|
|
|
componentDidMount() {
|
|
this.timeout = setTimeout(
|
|
this.props.onRequestClose,
|
|
this.props.toast.timeout || this.props.closeAfterMs
|
|
);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
clearTimeout(this.timeout);
|
|
}
|
|
|
|
render() {
|
|
const { toast, onRequestClose } = this.props;
|
|
const { action } = toast;
|
|
const message =
|
|
typeof toast.message === 'string'
|
|
? toast.message
|
|
: toast.message.toString();
|
|
|
|
return (
|
|
<li>
|
|
<Container
|
|
onClick={action ? undefined : onRequestClose}
|
|
type={toast.type || 'success'}
|
|
>
|
|
<Message>{message}</Message>
|
|
{action && (
|
|
<Action type={toast.type || 'success'} onClick={action.onClick}>
|
|
{action.text}
|
|
</Action>
|
|
)}
|
|
</Container>
|
|
</li>
|
|
);
|
|
}
|
|
}
|
|
|
|
const Action = styled.span`
|
|
display: inline-block;
|
|
padding: 10px 12px;
|
|
height: 100%;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
color: ${props => props.theme.white};
|
|
background: ${props => darken(0.05, props.theme[props.type])};
|
|
border-top-right-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
|
|
&:hover {
|
|
background: ${props => darken(0.1, props.theme[props.type])};
|
|
}
|
|
`;
|
|
|
|
const Container = styled.div`
|
|
display: inline-block;
|
|
align-items: center;
|
|
animation: ${fadeAndScaleIn} 100ms ease;
|
|
margin: 8px 0;
|
|
color: ${props => props.theme.white};
|
|
background: ${props => props.theme[props.type]};
|
|
font-size: 15px;
|
|
border-radius: 5px;
|
|
cursor: default;
|
|
|
|
&:hover {
|
|
background: ${props => darken(0.05, props.theme[props.type])};
|
|
}
|
|
`;
|
|
|
|
const Message = styled.div`
|
|
display: inline-block;
|
|
padding: 10px 12px;
|
|
`;
|
|
|
|
export default Toast;
|