mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
df38008c56
Summary: This diff includes a few small things: - Menu: Don't select the first item until the user taps down arrow, and allow the user to use the arrow keys to move up and down through Menu items. - Menu: Make scroll code from MultiselectList re-usable, use in Menu. Now if you use the keys to move to an item that is offscreen it will follow. - Popover: Tapping the button that opened popover should close it - Make sure buttons in toolbars are at least standard height - Re-enable Markdown processing via `grunt docs` - A bit of initial inline documentation for crosjdoc. Need to evaluate whether this is worth doing everywhere. - New `search-playground` package for experimenting with search and search weights. - Swap itemClassProvider for more generic itemPropProvider - Add crojsdoc config file - Export React, because third party packages can't require things from our app - [FEATURE] Bring back static file support in third party packages via `nylas://translate/IMG_20150417_124142.jpg` - Fix invariant error with search bar - [FEATURE] "Show Original" under Message actions - Fix DatabaseView so that many archives at once don't cause problems Test Plan: Run specs Reviewers: evan Reviewed By: evan Differential Revision: https://review.inboxapp.com/D1426
59 lines
2.1 KiB
CoffeeScript
59 lines
2.1 KiB
CoffeeScript
Utils = require '../src/flux/models/utils'
|
|
|
|
Exports =
|
|
|
|
React: require 'react'
|
|
|
|
# The Task Queue
|
|
Task: require '../src/flux/tasks/task'
|
|
TaskQueue: require '../src/flux/stores/task-queue'
|
|
|
|
# The Database
|
|
DatabaseStore: require '../src/flux/stores/database-store'
|
|
ModelView: require '../src/flux/stores/model-view'
|
|
DatabaseView: require '../src/flux/stores/database-view'
|
|
SearchView: require '../src/flux/stores/search-view'
|
|
|
|
# Actions
|
|
Actions: require '../src/flux/actions'
|
|
|
|
# API Endpoints
|
|
EdgehillAPI: require '../src/flux/edgehill-api'
|
|
|
|
# Testing
|
|
InboxTestUtils: require '../spec-inbox/test_utils'
|
|
|
|
# Component Registry
|
|
ComponentRegistry: require '../src/component-registry'
|
|
|
|
# Utils
|
|
Utils: Utils
|
|
MessageUtils: require '../src/flux/models/message-utils'
|
|
|
|
# Mixins
|
|
UndoManager: require '../src/flux/undo-manager'
|
|
|
|
PriorityUICoordinator: require '../src/priority-ui-coordinator'
|
|
|
|
# Stores
|
|
DraftStore: require '../src/flux/stores/draft-store'
|
|
MessageStore: require '../src/flux/stores/message-store'
|
|
ContactStore: require '../src/flux/stores/contact-store'
|
|
NamespaceStore: require '../src/flux/stores/namespace-store'
|
|
AnalyticsStore: require '../src/flux/stores/analytics-store'
|
|
WorkspaceStore: require '../src/flux/stores/workspace-store'
|
|
FocusedTagStore: require '../src/flux/stores/focused-tag-store'
|
|
FocusedContentStore: require '../src/flux/stores/focused-content-store'
|
|
FileUploadStore: require '../src/flux/stores/file-upload-store'
|
|
FileDownloadStore: require '../src/flux/stores/file-download-store'
|
|
FocusedContactsStore: require '../src/flux/stores/focused-contacts-store'
|
|
|
|
## TODO move to inside of individual Salesforce package. See https://trello.com/c/tLAGLyeb/246-move-salesforce-models-into-individual-package-db-models-for-packages-various-refactors
|
|
SalesforceAssociation: require '../src/flux/models/salesforce-association'
|
|
SalesforceContact: require '../src/flux/models/salesforce-contact'
|
|
|
|
# Also include all of the model classes
|
|
for key, klass of Utils.modelClassMap()
|
|
Exports[klass.name] = klass
|
|
|
|
module.exports = Exports
|