Merge pull request #380 from jorilallo/jori/fix-sidebar-active

Fix to to sidebar active state
This commit is contained in:
Jori Lallo 2017-10-31 22:31:56 -07:00 committed by GitHub
commit a725a4bbf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -16,6 +16,7 @@ import CollectionMenu from 'menus/CollectionMenu';
import CollectionsStore from 'stores/CollectionsStore';
import UiStore from 'stores/UiStore';
import Document from 'models/Document';
import Collection from 'models/Collection';
import DocumentsStore from 'stores/DocumentsStore';
import { type NavigationNode } from 'types';
@ -36,6 +37,7 @@ type Props = {
render() {
const {
history,
location,
collections,
activeDocument,
ui,
@ -50,6 +52,7 @@ type Props = {
<CollectionLink
key={collection.id}
history={history}
location={location}
collection={collection}
activeDocument={activeDocument}
activeDocumentRef={activeDocumentRef}
@ -70,7 +73,17 @@ type Props = {
}
}
type CollectionLinkProps = {
history: Object,
collection: Collection,
ui: UiStore,
activeDocument: ?Document,
activeDocumentRef: HTMLElement => void,
prefetchDocument: (id: string) => Promise<void>,
};
@observer class CollectionLink extends Component {
props: CollectionLinkProps;
dropzoneRef;
@observable menuOpen = false;