summaryrefslogtreecommitdiffstats
path: root/src/types
diff options
context:
space:
mode:
authorDevlin Junker <devlin.junker@gmail.com>2023-08-20 20:58:51 -0700
committerBenjamin Brahmer <info@b-brahmer.de>2023-08-26 07:48:18 +0200
commit9272190bc066fb58ff358fef8623f91ecf52cb57 (patch)
tree33eeec6dc1d8ecb286c4c642eafc4d16c53a06d8 /src/types
parentefb1ac236e0e5f2038886fccf4d01337b486732a (diff)
add unread route and component
- started on unread component and using load-more callback from VirtualScroll component - realized we need to change to a 3-panel display because VirtualScroll removes the rendered component even when open if you scroll too much - created FeedItemDisplay component to display a selected feed item details Signed-off-by: Devlin Junker <devlin.junker@gmail.com>
Diffstat (limited to 'src/types')
-rw-r--r--src/types/MutationTypes.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/types/MutationTypes.ts b/src/types/MutationTypes.ts
index 8c00e714b..7176366e5 100644
--- a/src/types/MutationTypes.ts
+++ b/src/types/MutationTypes.ts
@@ -11,5 +11,7 @@ export const FOLDER_MUTATION_TYPES = {
export const FEED_ITEM_MUTATION_TYPES = {
SET_ITEMS: 'SET_ITEMS',
SET_STARRED_COUNT: 'SET_STARRED_COUNT',
+ SET_UNREAD_COUNT: 'SET_UNREAD_COUNT',
UPDATE_ITEM: 'UPDATE_ITEM',
+ SET_FETCHING: 'SET_FETCHING'
}