]> cat aescling's git repositories - mastodon.git/commitdiff
Fix minor bugs
authorThibaut Girka <thib@sitedethib.com>
Sat, 19 Sep 2020 12:30:09 +0000 (14:30 +0200)
committerThibG <thib@sitedethib.com>
Sat, 19 Sep 2020 13:01:46 +0000 (15:01 +0200)
app/javascript/flavours/glitch/actions/markers.js
app/javascript/flavours/glitch/reducers/notifications.js

index 96e29accf405fe7a4c69ae4e30476bf506ec5456..6b49ebf8877851e5b763abbc0c767091fb9b14a1 100644 (file)
@@ -105,15 +105,15 @@ export function submitMarkers() {
 };
 
 export const fetchMarkers = () => (dispatch, getState) => {
-    const params = { timeline: ['notifications'] };
+  const params = { timeline: ['notifications'] };
 
-    dispatch(fetchMarkersRequest());
+  dispatch(fetchMarkersRequest());
 
-    api(getState).get('/api/v1/markers', { params }).then(response => {
-      dispatch(fetchMarkersSuccess(response.data));
-    }).catch(error => {
-      dispatch(fetchMarkersFail(error));
-    });
+  api(getState).get('/api/v1/markers', { params }).then(response => {
+    dispatch(fetchMarkersSuccess(response.data));
+  }).catch(error => {
+    dispatch(fetchMarkersFail(error));
+  });
 };
 
 export function fetchMarkersRequest() {
index 67725b90251cb4137b4fa23220b3237bb99fdc1e..474ca30128e56f3df89f78309e5134a9a439a6f2 100644 (file)
@@ -112,7 +112,7 @@ const expandNormalizedNotifications = (state, notifications, next, isLoadingRece
     } else {
       const mostRecent = items.find(item => item !== null);
       if (mostRecent && compareId(lastReadId, mostRecent.get('id')) < 0) {
-        mutable.set('lastReadId', mostRecentId);
+        mutable.set('lastReadId', mostRecent.get('id'));
       }
     }
 
@@ -129,7 +129,7 @@ const clearUnread = (state) => {
   state = state.set('unread', state.get('pendingItems').size);
   const lastNotification = state.get('items').find(item => item !== null);
   return state.set('lastReadId', lastNotification ? lastNotification.get('id') : '0');
-}
+};
 
 const updateTop = (state, top) => {
   state = state.set('top', top);
@@ -142,8 +142,9 @@ const updateTop = (state, top) => {
 };
 
 const deleteByStatus = (state, statusId) => {
+  const lastReadId = state.get('lastReadId');
+
   if (shouldCountUnreadNotifications(state)) {
-    const lastReadId = state.get('lastReadId');
     const deletedUnread = state.get('items').filter(item => item !== null && item.get('status') === statusId && compareId(item.get('id'), lastReadId) > 0);
     state = state.update('unread', unread => unread - deletedUnread.size);
   }
@@ -224,7 +225,7 @@ const recountUnread = (state, last_read_id) => {
       mutable.set('unread', mutable.get('pendingItems').count(item => item !== null) + mutable.get('items').count(item => item && compareId(item.get('id'), last_read_id) > 0));
     }
   });
-}
+};
 
 export default function notifications(state = initialState, action) {
   let st;