b01d032d0d
* Enhancement: Updates sidebar to a new design (#2733) * feat: Changes primary navbar to new design (#2598) * feat: updates design for secondary navbar (#2612) * Changes primary nvbar to new design * Updates design for contexual sidebar * Fixes issues with JSON * Remove duplication of notificatons in Navigation * Fixes broken tests * Fixes broken tests * Update app/javascript/dashboard/components/layout/AvailabilityStatus.vue * Update app/javascript/dashboard/components/layout/AvailabilityStatus.vue * Update app/javascript/dashboard/components/layout/SidebarItem.vue Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> * Update app/javascript/dashboard/components/layout/SidebarItem.vue Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> * Update app/javascript/dashboard/modules/sidebar/components/Secondary.vue Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> * Chore: Update design changes to features * Fixes menu transitions and refactors code * Refactors sidebar routeing logic * lint error fixes * Fixes dropdown menu styles * Fixes secondary new item links * Fixes lint scss issues * fixes linter issues * Fixes broken test cases * Update AvailabilityStatus.spec.js * Review feedbacks * Fixes add modal for label * Add tooltip for primary menu item * Tooltip for notifications * Adds tooltip for primary menu items * Review fixes * Review fixes * Fix merge issues * fixes logo size for login pages * fixes Merge breaks with styles Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
76 lines
2.1 KiB
JavaScript
76 lines
2.1 KiB
JavaScript
import AvailabilityStatus from '../AvailabilityStatus.vue';
|
|
import { createLocalVue, mount } from '@vue/test-utils';
|
|
import Vuex from 'vuex';
|
|
import VueI18n from 'vue-i18n';
|
|
|
|
import WootButton from 'dashboard/components/ui/WootButton';
|
|
import WootDropdownItem from 'shared/components/ui/dropdown/DropdownItem';
|
|
import WootDropdownMenu from 'shared/components/ui/dropdown/DropdownMenu';
|
|
import WootDropdownHeader from 'shared/components/ui/dropdown/DropdownHeader';
|
|
import WootDropdownDivider from 'shared/components/ui/dropdown/DropdownDivider';
|
|
import i18n from 'dashboard/i18n';
|
|
|
|
const localVue = createLocalVue();
|
|
localVue.use(Vuex);
|
|
localVue.use(VueI18n);
|
|
localVue.component('woot-button', WootButton);
|
|
localVue.component('woot-dropdown-header', WootDropdownHeader);
|
|
localVue.component('woot-dropdown-menu', WootDropdownMenu);
|
|
localVue.component('woot-dropdown-divider', WootDropdownDivider);
|
|
localVue.component('woot-dropdown-item', WootDropdownItem);
|
|
|
|
const i18nConfig = new VueI18n({
|
|
locale: 'en',
|
|
messages: i18n,
|
|
});
|
|
|
|
describe('AvailabilityStatus', () => {
|
|
const currentAvailability = 'online';
|
|
const currentAccountId = '1';
|
|
let store = null;
|
|
let actions = null;
|
|
let modules = null;
|
|
let availabilityStatus = null;
|
|
|
|
beforeEach(() => {
|
|
actions = {
|
|
updateAvailability: jest.fn(() => {
|
|
return Promise.resolve();
|
|
}),
|
|
};
|
|
|
|
modules = {
|
|
auth: {
|
|
getters: {
|
|
getCurrentUserAvailability: () => currentAvailability,
|
|
getCurrentAccountId: () => currentAccountId,
|
|
},
|
|
},
|
|
};
|
|
|
|
store = new Vuex.Store({
|
|
actions,
|
|
modules,
|
|
});
|
|
|
|
availabilityStatus = mount(AvailabilityStatus, {
|
|
store,
|
|
localVue,
|
|
i18n: i18nConfig,
|
|
});
|
|
});
|
|
|
|
it('dispatches an action when user changes status', async () => {
|
|
await availabilityStatus;
|
|
availabilityStatus
|
|
.findAll('.status-change--dropdown-button')
|
|
.at(2)
|
|
.trigger('click');
|
|
|
|
expect(actions.updateAvailability).toBeCalledWith(
|
|
expect.any(Object),
|
|
{ availability: 'offline', account_id: currentAccountId },
|
|
undefined
|
|
);
|
|
});
|
|
});
|