# Pull Request Template ## Description This PR includes the following updates: 1. Updated the design system color tokens by introducing new tokens for surfaces, overlays, buttons, labels, and cards, along with refinements to existing shades. 2. Refreshed both light and dark themes with adjusted background, border, and solid colors. 3. Replaced static Inter font files with the Inter variable font (including italic), supporting weights from 100–900. 4. Added custom font weights (420, 440, 460, 520) along with custom typography classes to enable more fine-grained and consistent typography control. ## Type of change - [x] New feature (non-breaking change which adds functionality) ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [x] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules --------- Co-authored-by: Pranav <pranav@chatwoot.com>
277 lines
8.1 KiB
Vue
277 lines
8.1 KiB
Vue
<script setup>
|
|
import { computed, ref, watch, onMounted, nextTick } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { useRoute, useRouter } from 'vue-router';
|
|
import { useStore, useMapGetter } from 'dashboard/composables/store';
|
|
import { useAlert, useTrack } from 'dashboard/composables';
|
|
import { useUISettings } from 'dashboard/composables/useUISettings';
|
|
import wootConstants from 'dashboard/constants/globals';
|
|
import { INBOX_EVENTS } from 'dashboard/helper/AnalyticsHelper/events';
|
|
|
|
import InboxCard from 'dashboard/components-next/Inbox/InboxCard.vue';
|
|
import InboxListHeader from './components/InboxListHeader.vue';
|
|
import IntersectionObserver from 'dashboard/components/IntersectionObserver.vue';
|
|
import CmdBarConversationSnooze from 'dashboard/routes/dashboard/commands/CmdBarConversationSnooze.vue';
|
|
import Spinner from 'dashboard/components-next/spinner/Spinner.vue';
|
|
|
|
const { t } = useI18n();
|
|
const route = useRoute();
|
|
const router = useRouter();
|
|
const store = useStore();
|
|
const { uiSettings } = useUISettings();
|
|
|
|
const notificationList = ref(null);
|
|
const page = ref(1);
|
|
const status = ref('');
|
|
const type = ref('');
|
|
const sortOrder = ref(wootConstants.INBOX_SORT_BY.NEWEST);
|
|
const isInboxContextMenuOpen = ref(false);
|
|
|
|
const infiniteLoaderOptions = computed(() => ({
|
|
root: notificationList.value,
|
|
rootMargin: '100px 0px 100px 0px',
|
|
}));
|
|
|
|
const meta = useMapGetter('notifications/getMeta');
|
|
const uiFlags = useMapGetter('notifications/getUIFlags');
|
|
const records = useMapGetter('notifications/getFilteredNotificationsV4');
|
|
const inboxById = useMapGetter('inboxes/getInboxById');
|
|
|
|
const currentConversationId = computed(() => Number(route.params.id));
|
|
|
|
const inboxFilters = computed(() => ({
|
|
page: page.value,
|
|
status: status.value,
|
|
type: type.value,
|
|
sortOrder: sortOrder.value,
|
|
}));
|
|
|
|
const notifications = computed(() => {
|
|
return records.value(inboxFilters.value);
|
|
});
|
|
|
|
const showEndOfList = computed(() => {
|
|
return uiFlags.value.isAllNotificationsLoaded && !uiFlags.value.isFetching;
|
|
});
|
|
|
|
const showEmptyState = computed(() => {
|
|
return !uiFlags.value.isFetching && !notifications.value.length;
|
|
});
|
|
|
|
const stateInbox = inboxId => {
|
|
return inboxById.value(inboxId);
|
|
};
|
|
|
|
const fetchNotifications = () => {
|
|
page.value = 1;
|
|
store.dispatch('notifications/clear');
|
|
const filter = inboxFilters.value;
|
|
store.dispatch('notifications/index', filter);
|
|
};
|
|
|
|
const scrollActiveIntoView = () => {
|
|
const activeEl = notificationList.value?.querySelector('.inbox-card.active');
|
|
activeEl?.scrollIntoView({ block: 'center', behavior: 'smooth' });
|
|
};
|
|
|
|
const redirectToInbox = () => {
|
|
if (route.name === 'inbox_view') return;
|
|
router.replace({ name: 'inbox_view' });
|
|
};
|
|
|
|
const loadMoreNotifications = () => {
|
|
if (uiFlags.value.isAllNotificationsLoaded) return;
|
|
|
|
page.value += 1;
|
|
store.dispatch('notifications/index', {
|
|
page: page.value,
|
|
status: status.value,
|
|
type: type.value,
|
|
sortOrder: sortOrder.value,
|
|
});
|
|
};
|
|
|
|
const markNotificationAsRead = async notificationItem => {
|
|
useTrack(INBOX_EVENTS.MARK_NOTIFICATION_AS_READ);
|
|
|
|
const { id, primaryActorId, primaryActorType } = notificationItem;
|
|
try {
|
|
await store.dispatch('notifications/read', {
|
|
id,
|
|
primaryActorId,
|
|
primaryActorType,
|
|
unreadCount: meta.value.unreadCount,
|
|
});
|
|
|
|
useAlert(t('INBOX.ALERTS.MARK_AS_READ'));
|
|
store.dispatch('notifications/unReadCount');
|
|
} catch {
|
|
// error
|
|
}
|
|
};
|
|
|
|
const markNotificationAsUnRead = async notificationItem => {
|
|
useTrack(INBOX_EVENTS.MARK_NOTIFICATION_AS_UNREAD);
|
|
redirectToInbox();
|
|
|
|
const { id } = notificationItem;
|
|
|
|
try {
|
|
await store.dispatch('notifications/unread', { id });
|
|
useAlert(t('INBOX.ALERTS.MARK_AS_UNREAD'));
|
|
store.dispatch('notifications/unReadCount');
|
|
} catch {
|
|
// error
|
|
}
|
|
};
|
|
|
|
const deleteNotification = async notificationItem => {
|
|
useTrack(INBOX_EVENTS.DELETE_NOTIFICATION);
|
|
redirectToInbox();
|
|
|
|
try {
|
|
await store.dispatch('notifications/delete', {
|
|
notification: notificationItem,
|
|
unread_count: meta.value.unreadCount,
|
|
count: meta.value.count,
|
|
});
|
|
|
|
useAlert(t('INBOX.ALERTS.DELETE'));
|
|
} catch {
|
|
// error
|
|
}
|
|
};
|
|
|
|
const onFilterChange = option => {
|
|
const { STATUS, TYPE, SORT_ORDER } = wootConstants.INBOX_FILTER_TYPE;
|
|
if (option.type === STATUS) {
|
|
status.value = option.selected ? option.key : '';
|
|
}
|
|
if (option.type === TYPE) {
|
|
type.value = option.selected ? option.key : '';
|
|
}
|
|
if (option.type === SORT_ORDER) {
|
|
sortOrder.value = option.key;
|
|
}
|
|
fetchNotifications();
|
|
};
|
|
|
|
const setSavedFilter = () => {
|
|
const { inbox_filter_by: filterBy = {} } = uiSettings.value;
|
|
const { status: savedStatus, type: savedType, sort_by: sortBy } = filterBy;
|
|
status.value = savedStatus;
|
|
type.value = savedType;
|
|
sortOrder.value = sortBy || wootConstants.INBOX_SORT_BY.NEWEST;
|
|
store.dispatch('notifications/setNotificationFilters', inboxFilters.value);
|
|
};
|
|
|
|
const openConversation = async notificationItem => {
|
|
const {
|
|
id,
|
|
primaryActorId,
|
|
primaryActorType,
|
|
primaryActor: { inboxId, id: conversationId },
|
|
notificationType,
|
|
} = notificationItem;
|
|
|
|
if (route.params.id === String(conversationId)) return;
|
|
|
|
useTrack(INBOX_EVENTS.OPEN_CONVERSATION_VIA_INBOX, {
|
|
notificationType,
|
|
});
|
|
|
|
try {
|
|
await store.dispatch('notifications/read', {
|
|
id,
|
|
primaryActorId,
|
|
primaryActorType,
|
|
unreadCount: meta.value.unreadCount,
|
|
});
|
|
|
|
// to update the unread count in the store realtime
|
|
store.dispatch('notifications/unReadCount');
|
|
|
|
router.push({
|
|
name: 'inbox_view_conversation',
|
|
params: { inboxId, type: 'conversation', id: conversationId },
|
|
});
|
|
} catch {
|
|
// error
|
|
}
|
|
};
|
|
|
|
watch(
|
|
inboxFilters,
|
|
(newVal, oldVal) => {
|
|
if (newVal !== oldVal) {
|
|
store.dispatch('notifications/updateNotificationFilters', newVal);
|
|
}
|
|
},
|
|
{ deep: true }
|
|
);
|
|
|
|
watch(currentConversationId, () => {
|
|
nextTick(scrollActiveIntoView);
|
|
});
|
|
|
|
onMounted(() => {
|
|
scrollActiveIntoView();
|
|
setSavedFilter();
|
|
fetchNotifications();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<section class="flex w-full h-full bg-n-surface-1">
|
|
<div
|
|
class="flex flex-col h-full w-full lg:min-w-[340px] lg:max-w-[340px] ltr:border-r rtl:border-l border-n-weak"
|
|
:class="!currentConversationId ? 'flex' : 'hidden xl:flex'"
|
|
>
|
|
<InboxListHeader
|
|
:is-context-menu-open="isInboxContextMenuOpen"
|
|
@filter="onFilterChange"
|
|
@redirect="redirectToInbox"
|
|
/>
|
|
<div
|
|
ref="notificationList"
|
|
class="flex flex-col gap-0.5 w-full h-[calc(100%-56px)] pb-4 overflow-x-hidden px-2 overflow-y-auto divide-y divide-n-weak [&>*:hover]:!border-y-transparent [&>*.active]:!border-y-transparent [&>*:hover+*]:!border-t-transparent [&>*.active+*]:!border-t-transparent"
|
|
>
|
|
<InboxCard
|
|
v-for="notificationItem in notifications"
|
|
:key="notificationItem.id"
|
|
:inbox-item="notificationItem"
|
|
:state-inbox="stateInbox(notificationItem.primaryActor?.inboxId)"
|
|
class="inbox-card rounded-none hover:rounded-lg hover:bg-n-alpha-1 dark:hover:bg-n-alpha-3"
|
|
:class="
|
|
currentConversationId === notificationItem.primaryActor?.id
|
|
? 'bg-n-alpha-1 dark:bg-n-alpha-3 !rounded-lg active'
|
|
: ''
|
|
"
|
|
@mark-notification-as-read="markNotificationAsRead"
|
|
@mark-notification-as-un-read="markNotificationAsUnRead"
|
|
@delete-notification="deleteNotification"
|
|
@context-menu-open="isInboxContextMenuOpen = true"
|
|
@context-menu-close="isInboxContextMenuOpen = false"
|
|
@click="openConversation(notificationItem)"
|
|
/>
|
|
<div v-if="uiFlags.isFetching" class="flex justify-center my-4">
|
|
<Spinner class="text-n-brand" />
|
|
</div>
|
|
<p
|
|
v-if="showEmptyState"
|
|
class="p-4 text-sm font-medium text-center text-n-slate-10"
|
|
>
|
|
{{ $t('INBOX.LIST.NO_NOTIFICATIONS') }}
|
|
</p>
|
|
<IntersectionObserver
|
|
v-if="!showEndOfList && !uiFlags.isFetching"
|
|
:options="infiniteLoaderOptions"
|
|
@observed="loadMoreNotifications"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<router-view />
|
|
<CmdBarConversationSnooze />
|
|
</section>
|
|
</template>
|