* 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
64 lines
1.7 KiB
JavaScript
64 lines
1.7 KiB
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import { withRouter } from 'react-router-dom';
|
|
import { inject } from 'mobx-react';
|
|
import { MoreIcon } from 'outline-icons';
|
|
|
|
import CopyToClipboard from 'components/CopyToClipboard';
|
|
import { DropdownMenu, DropdownMenuItem } from 'components/DropdownMenu';
|
|
import { documentHistoryUrl } from 'utils/routeHelpers';
|
|
import Revision from 'models/Revision';
|
|
import Document from 'models/Document';
|
|
import UiStore from 'stores/UiStore';
|
|
|
|
type Props = {
|
|
label?: React.Node,
|
|
onOpen?: () => *,
|
|
onClose: () => *,
|
|
history: Object,
|
|
document: Document,
|
|
revision: Revision,
|
|
className?: string,
|
|
ui: UiStore,
|
|
};
|
|
|
|
class RevisionMenu extends React.Component<Props> {
|
|
handleRestore = async (ev: SyntheticEvent<*>) => {
|
|
ev.preventDefault();
|
|
await this.props.document.restore(this.props.revision);
|
|
this.props.ui.showToast('Document restored');
|
|
this.props.history.push(this.props.document.url);
|
|
};
|
|
|
|
handleCopy = () => {
|
|
this.props.ui.showToast('Link copied');
|
|
};
|
|
|
|
render() {
|
|
const { label, className, onOpen, onClose } = this.props;
|
|
const url = `${window.location.origin}${documentHistoryUrl(
|
|
this.props.document,
|
|
this.props.revision.id
|
|
)}`;
|
|
|
|
return (
|
|
<DropdownMenu
|
|
label={label || <MoreIcon />}
|
|
onOpen={onOpen}
|
|
onClose={onClose}
|
|
className={className}
|
|
>
|
|
<DropdownMenuItem onClick={this.handleRestore}>
|
|
Restore version
|
|
</DropdownMenuItem>
|
|
<hr />
|
|
<CopyToClipboard text={url} onCopy={this.handleCopy}>
|
|
<DropdownMenuItem>Copy link</DropdownMenuItem>
|
|
</CopyToClipboard>
|
|
</DropdownMenu>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default withRouter(inject('ui')(RevisionMenu));
|