diff --git a/app/javascript/dashboard/components-next/icon/ChannelIcon.vue b/app/javascript/dashboard/components-next/icon/ChannelIcon.vue
new file mode 100644
index 000000000..11117cc18
--- /dev/null
+++ b/app/javascript/dashboard/components-next/icon/ChannelIcon.vue
@@ -0,0 +1,17 @@
+
+
+
+
+
diff --git a/app/javascript/dashboard/components-next/icon/provider.js b/app/javascript/dashboard/components-next/icon/provider.js
new file mode 100644
index 000000000..5b00376d1
--- /dev/null
+++ b/app/javascript/dashboard/components-next/icon/provider.js
@@ -0,0 +1,36 @@
+import { computed } from 'vue';
+
+export function useChannelIcon(inbox) {
+ const channelTypeIconMap = {
+ 'Channel::Api': 'i-ri-cloudy-fill',
+ 'Channel::Email': 'i-ri-mail-fill',
+ 'Channel::FacebookPage': 'i-ri-messenger-fill',
+ 'Channel::Line': 'i-ri-line-fill',
+ 'Channel::Sms': 'i-ri-chat-1-fill',
+ 'Channel::Telegram': 'i-ri-telegram-fill',
+ 'Channel::TwilioSms': 'i-ri-chat-1-fill',
+ 'Channel::TwitterProfile': 'i-ri-twitter-x-fill',
+ 'Channel::WebWidget': 'i-ri-global-fill',
+ 'Channel::Whatsapp': 'i-ri-whatsapp-fill',
+ };
+
+ const providerIconMap = {
+ microsoft: 'i-ri-microsoft-fill',
+ google: 'i-ri-google-fill',
+ };
+
+ const channelIcon = computed(() => {
+ const type = inbox.channel_type;
+ let icon = channelTypeIconMap[type];
+
+ if (type === 'Channel::Email' && inbox.provider) {
+ if (Object.keys(providerIconMap).includes(inbox.provider)) {
+ icon = providerIconMap[inbox.provider];
+ }
+ }
+
+ return icon ?? 'i-ri-global-fill';
+ });
+
+ return channelIcon;
+}
diff --git a/app/javascript/dashboard/components-next/icon/specs/provider.spec.js b/app/javascript/dashboard/components-next/icon/specs/provider.spec.js
new file mode 100644
index 000000000..df30d7138
--- /dev/null
+++ b/app/javascript/dashboard/components-next/icon/specs/provider.spec.js
@@ -0,0 +1,59 @@
+import { useChannelIcon } from '../provider';
+
+describe('useChannelIcon', () => {
+ it('returns correct icon for API channel', () => {
+ const inbox = { channel_type: 'Channel::Api' };
+ const { value: icon } = useChannelIcon(inbox);
+ expect(icon).toBe('i-ri-cloudy-fill');
+ });
+
+ it('returns correct icon for Facebook channel', () => {
+ const inbox = { channel_type: 'Channel::FacebookPage' };
+ const { value: icon } = useChannelIcon(inbox);
+ expect(icon).toBe('i-ri-messenger-fill');
+ });
+
+ it('returns correct icon for WhatsApp channel', () => {
+ const inbox = { channel_type: 'Channel::Whatsapp' };
+ const { value: icon } = useChannelIcon(inbox);
+ expect(icon).toBe('i-ri-whatsapp-fill');
+ });
+
+ describe('Email channel', () => {
+ it('returns mail icon for generic email channel', () => {
+ const inbox = { channel_type: 'Channel::Email' };
+ const { value: icon } = useChannelIcon(inbox);
+ expect(icon).toBe('i-ri-mail-fill');
+ });
+
+ it('returns Microsoft icon for Microsoft email provider', () => {
+ const inbox = {
+ channel_type: 'Channel::Email',
+ provider: 'microsoft',
+ };
+ const { value: icon } = useChannelIcon(inbox);
+ expect(icon).toBe('i-ri-microsoft-fill');
+ });
+
+ it('returns Google icon for Google email provider', () => {
+ const inbox = {
+ channel_type: 'Channel::Email',
+ provider: 'google',
+ };
+ const { value: icon } = useChannelIcon(inbox);
+ expect(icon).toBe('i-ri-google-fill');
+ });
+ });
+
+ it('returns default icon for unknown channel type', () => {
+ const inbox = { channel_type: 'Channel::Unknown' };
+ const { value: icon } = useChannelIcon(inbox);
+ expect(icon).toBe('i-ri-global-fill');
+ });
+
+ it('returns default icon when channel type is undefined', () => {
+ const inbox = {};
+ const { value: icon } = useChannelIcon(inbox);
+ expect(icon).toBe('i-ri-global-fill');
+ });
+});
diff --git a/app/javascript/dashboard/components-next/sidebar/ChannelLeaf.vue b/app/javascript/dashboard/components-next/sidebar/ChannelLeaf.vue
index e3a2430a5..2a93089a9 100644
--- a/app/javascript/dashboard/components-next/sidebar/ChannelLeaf.vue
+++ b/app/javascript/dashboard/components-next/sidebar/ChannelLeaf.vue
@@ -1,6 +1,7 @@