Websocket Support (#937)

* 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
This commit is contained in:
Tom Moor
2019-04-17 19:11:23 -07:00
committed by GitHub
parent 4a571a088e
commit 07a941a65d
93 changed files with 2441 additions and 744 deletions

View File

@@ -21,7 +21,7 @@ class Toast extends React.Component<Props> {
componentDidMount() {
this.timeout = setTimeout(
this.props.onRequestClose,
this.props.closeAfterMs
this.props.toast.timeout || this.props.closeAfterMs
);
}
@@ -31,6 +31,7 @@ class Toast extends React.Component<Props> {
render() {
const { toast, onRequestClose } = this.props;
const { action } = toast;
const message =
typeof toast.message === 'string'
? toast.message
@@ -38,20 +39,43 @@ class Toast extends React.Component<Props> {
return (
<li>
<Container onClick={onRequestClose} type={toast.type}>
<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;
padding: 10px 12px;
color: ${props => props.theme.white};
background: ${props => props.theme[props.type]};
font-size: 15px;
@@ -64,7 +88,8 @@ const Container = styled.div`
`;
const Message = styled.div`
padding-left: 5px;
display: inline-block;
padding: 10px 12px;
`;
export default Toast;