16 lines
361 B
JavaScript
16 lines
361 B
JavaScript
|
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;
|
||
|
},
|
||
|
};
|