Chatwoot/app/javascript/dashboard/store/modules/notifications/getters.js

16 lines
361 B
JavaScript
Raw Normal View History

export const getters = {
getNotifications($state) {
return Object.values($state.records).sort((n1, n2) => n2.id - n1.id);
},
getUIFlags($state) {
return $state.uiFlags;
},
getNotification: $state => id => {
const notification = $state.records[id];
return notification || {};
},
getMeta: $state => {
return $state.meta;
},
};