## Description Adds the account-level `unread_count_for_filters` feature flag as the dark-launch gate for filtered sidebar unread counts. This reuses the deprecated `quoted_email_reply` flag slot, resets the reused bit for existing accounts, and removes stale defaults so new accounts do not reference the old flag. This also adds the feature where we are now calculating the unread counts for built in filters like mentions, participating and unattended along with unread count for saved filters/folders. Closes [CW-7262](https://linear.app/chatwoot/issue/CW-7262/unread-counts-for-filters-folders) ## Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality not to work as expected) - [ ] This change requires a documentation update
104 lines
2.7 KiB
JavaScript
104 lines
2.7 KiB
JavaScript
import ConversationAPI from '../../api/conversations';
|
|
import types from '../mutation-types';
|
|
|
|
export const state = {
|
|
allCount: 0,
|
|
inboxes: {},
|
|
labels: {},
|
|
teams: {},
|
|
mentionsCount: 0,
|
|
participatingCount: 0,
|
|
unattendedCount: 0,
|
|
folders: {},
|
|
};
|
|
|
|
const normalizeCount = count => {
|
|
const parsedCount = Number(count);
|
|
return Number.isFinite(parsedCount) && parsedCount > 0 ? parsedCount : 0;
|
|
};
|
|
|
|
const normalizeCounts = counts => {
|
|
return Object.entries(counts || {}).reduce((result, [id, count]) => {
|
|
const parsedCount = normalizeCount(count);
|
|
if (parsedCount > 0) {
|
|
result[String(id)] = parsedCount;
|
|
}
|
|
|
|
return result;
|
|
}, {});
|
|
};
|
|
|
|
export const getters = {
|
|
getAllUnreadCount($state) {
|
|
return $state.allCount;
|
|
},
|
|
getInboxUnreadCount: $state => inboxId => {
|
|
return $state.inboxes[String(inboxId)] || 0;
|
|
},
|
|
getLabelUnreadCount: $state => labelId => {
|
|
return $state.labels[String(labelId)] || 0;
|
|
},
|
|
getTeamUnreadCount: $state => teamId => {
|
|
return $state.teams[String(teamId)] || 0;
|
|
},
|
|
getMentionsUnreadCount($state) {
|
|
return $state.mentionsCount;
|
|
},
|
|
getParticipatingUnreadCount($state) {
|
|
return $state.participatingCount;
|
|
},
|
|
getUnattendedUnreadCount($state) {
|
|
return $state.unattendedCount;
|
|
},
|
|
getFolderUnreadCount: $state => folderId => {
|
|
return $state.folders[String(folderId)] || 0;
|
|
},
|
|
getInboxUnreadCounts($state) {
|
|
return $state.inboxes;
|
|
},
|
|
getLabelUnreadCounts($state) {
|
|
return $state.labels;
|
|
},
|
|
getTeamUnreadCounts($state) {
|
|
return $state.teams;
|
|
},
|
|
getFolderUnreadCounts($state) {
|
|
return $state.folders;
|
|
},
|
|
};
|
|
|
|
export const actions = {
|
|
get: async function getUnreadCounts({ commit }) {
|
|
try {
|
|
const response = await ConversationAPI.getUnreadCounts();
|
|
commit(types.SET_CONVERSATION_UNREAD_COUNTS, response.data.payload);
|
|
} catch (error) {
|
|
// Ignore errors so the sidebar can continue rendering without badges.
|
|
}
|
|
},
|
|
clear({ commit }) {
|
|
commit(types.SET_CONVERSATION_UNREAD_COUNTS, {});
|
|
},
|
|
};
|
|
|
|
export const mutations = {
|
|
[types.SET_CONVERSATION_UNREAD_COUNTS]($state, payload = {}) {
|
|
$state.allCount = normalizeCount(payload.all_count);
|
|
$state.inboxes = normalizeCounts(payload.inboxes);
|
|
$state.labels = normalizeCounts(payload.labels);
|
|
$state.teams = normalizeCounts(payload.teams);
|
|
$state.mentionsCount = normalizeCount(payload.mentions_count);
|
|
$state.participatingCount = normalizeCount(payload.participating_count);
|
|
$state.unattendedCount = normalizeCount(payload.unattended_count);
|
|
$state.folders = normalizeCounts(payload.folders);
|
|
},
|
|
};
|
|
|
|
export default {
|
|
namespaced: true,
|
|
state,
|
|
getters,
|
|
actions,
|
|
mutations,
|
|
};
|