feat: Adds the ability to edit/delete category

This commit is contained in:
iamsivin 2022-09-02 17:43:57 +05:30
parent 8bdd229adb
commit ba0fc3552d
13 changed files with 646 additions and 37 deletions

View file

@ -15,8 +15,11 @@ class CategoriesAPI extends PortalsAPI {
return axios.post(`${this.url}/${portalSlug}/categories`, categoryObj); return axios.post(`${this.url}/${portalSlug}/categories`, categoryObj);
} }
update({ portalSlug, categoryObj }) { update({ portalSlug, categoryId, categoryObj }) {
return axios.patch(`${this.url}/${portalSlug}/categories`, categoryObj); return axios.patch(
`${this.url}/${portalSlug}/categories/${categoryId}`,
categoryObj
);
} }
delete({ portalSlug, categoryId }) { delete({ portalSlug, categoryId }) {

View file

@ -139,6 +139,20 @@
"TITLE": "Locales" "TITLE": "Locales"
} }
}, },
"CATEGORIES": {
"TITLE": "Categories in",
"NEW_CATEGORY": "New category",
"TABLE": {
"NAME": "Name",
"DESCRIPTION": "Description",
"LOCALE": "Locale",
"ARTICLE_COUNT": "No. of articles",
"ACTION_BUTTON": {
"EDIT": "Edit category",
"DELETE": "Delete category"
}
}
},
"EDIT_BASIC_INFO": { "EDIT_BASIC_INFO": {
"BUTTON_TEXT": "Update basic settings" "BUTTON_TEXT": "Update basic settings"
} }
@ -353,6 +367,43 @@
"SUCCESS_MESSAGE": "Category created successfully", "SUCCESS_MESSAGE": "Category created successfully",
"ERROR_MESSAGE": "Unable to create category" "ERROR_MESSAGE": "Unable to create category"
} }
},
"EDIT": {
"TITLE": "Edit a category",
"SUB_TITLE": "Editing a category will update the category in the public facing portal.",
"PORTAL": "Portal",
"LOCALE": "Locale",
"NAME": {
"LABEL": "Name",
"PLACEHOLDER": "Category name",
"HELP_TEXT": "The category name will be used in the public facing portal to categorize articles.",
"ERROR": "Name is required"
},
"SLUG": {
"LABEL": "Slug",
"PLACEHOLDER": "Category slug for urls",
"HELP_TEXT": "app.chatwoot.com/portal/my-portal/en-US/categories/my-slug",
"ERROR": "Slug is required"
},
"DESCRIPTION": {
"LABEL": "Description",
"PLACEHOLDER": "Give a short description about the category.",
"ERROR": "Description is required"
},
"BUTTONS": {
"CREATE": "Update category",
"CANCEL": "Cancel"
},
"API": {
"SUCCESS_MESSAGE": "Category updated successfully",
"ERROR_MESSAGE": "Unable to update category"
}
},
"DELETE": {
"API": {
"SUCCESS_MESSAGE": "Category deleted successfully",
"ERROR_MESSAGE": "Unable to delete category"
}
} }
} }
} }

View file

@ -37,6 +37,7 @@
/> />
<add-category <add-category
v-if="showAddCategoryModal" v-if="showAddCategoryModal"
:show.sync="showAddCategoryModal"
:portal-name="selectedPortalName" :portal-name="selectedPortalName"
:locale="selectedPortalLocale" :locale="selectedPortalLocale"
@cancel="onClickCloseAddCategoryModal" @cancel="onClickCloseAddCategoryModal"
@ -56,7 +57,7 @@ import CommandBar from 'dashboard/routes/dashboard/commands/commandbar.vue';
import WootKeyShortcutModal from 'dashboard/components/widgets/modal/WootKeyShortcutModal'; import WootKeyShortcutModal from 'dashboard/components/widgets/modal/WootKeyShortcutModal';
import NotificationPanel from 'dashboard/routes/dashboard/notifications/components/NotificationPanel'; import NotificationPanel from 'dashboard/routes/dashboard/notifications/components/NotificationPanel';
import portalMixin from '../mixins/portalMixin'; import portalMixin from '../mixins/portalMixin';
import AddCategory from '../components/AddCategory.vue'; import AddCategory from '../pages/categories/AddCategory';
export default { export default {
components: { components: {
@ -85,16 +86,25 @@ export default {
...mapGetters({ ...mapGetters({
accountId: 'getCurrentAccountId', accountId: 'getCurrentAccountId',
portals: 'portals/allPortals', portals: 'portals/allPortals',
categories: 'categories/allCategories',
meta: 'portals/getMeta', meta: 'portals/getMeta',
isFetching: 'portals/isFetchingPortals', isFetching: 'portals/isFetchingPortals',
}), }),
// return this.$store.getters['categories/allCategories'];
selectedPortal() { selectedPortal() {
const slug = this.$route.params.portalSlug || this.lastActivePortalSlug; const slug = this.$route.params.portalSlug || this.lastActivePortalSlug;
// this.$store.dispatch('categories/index', {
// portalSlug: slug,
// });
if (slug) return this.$store.getters['portals/portalBySlug'](slug); if (slug) return this.$store.getters['portals/portalBySlug'](slug);
return this.$store.getters['portals/allPortals'][0]; return this.$store.getters['portals/allPortals'][0];
}, },
// selectedPortalCategory() {
// const slug = this.$route.params.portalSlug || this.lastActivePortalSlug;
// if (slug) return this.$store.getters['categories/categoryBySlug'](slug);
// },
categories() {
return this.$store.getters['categories/allCategories'];
},
sidebarClassName() { sidebarClassName() {
if (this.isOnDesktop) { if (this.isOnDesktop) {
return ''; return '';
@ -182,6 +192,7 @@ export default {
]; ];
}, },
additionalSecondaryMenuItems() { additionalSecondaryMenuItems() {
if (!this.selectedPortal) return [];
return [ return [
{ {
icon: 'folder', icon: 'folder',

View file

@ -77,6 +77,12 @@ const portalRoutes = [
component: EditPortalCustomization, component: EditPortalCustomization,
roles: ['administrator'], roles: ['administrator'],
}, },
{
path: getPortalRoute(':portalSlug/edit/:locale/categories'),
name: 'list_all_locale_categories',
roles: ['administrator', 'agent'],
component: ListAllCategories,
},
], ],
}, },
]; ];
@ -125,7 +131,7 @@ const articleRoutes = [
const categoryRoutes = [ const categoryRoutes = [
{ {
path: getPortalRoute(':portalSlug/:locale/categories'), path: getPortalRoute(':portalSlug/:locale/categories'),
name: 'list_all_locale_categories', name: 'all_locale_categories',
roles: ['administrator', 'agent'], roles: ['administrator', 'agent'],
component: ListAllCategories, component: ListAllCategories,
}, },

View file

@ -0,0 +1,108 @@
<template>
<table>
<thead>
<tr>
<th scope="col">
{{ $t('HELP_CENTER.PORTAL.EDIT.CATEGORIES.TABLE.NAME') }}
</th>
<th scope="col">
{{ $t('HELP_CENTER.PORTAL.EDIT.CATEGORIES.TABLE.DESCRIPTION') }}
</th>
<th scope="col">
{{ $t('HELP_CENTER.PORTAL.EDIT.CATEGORIES.TABLE.LOCALE') }}
</th>
<th scope="col">
{{ $t('HELP_CENTER.PORTAL.EDIT.CATEGORIES.TABLE.ARTICLE_COUNT') }}
</th>
<th scope="col" />
</tr>
</thead>
<tr>
<td colspan="100%" class="horizontal-line" />
</tr>
<tbody>
<tr v-for="category in categories" :key="category.is">
<td>
<span>{{ category.name }}</span>
</td>
<td>
<span>{{ category.description }}</span>
</td>
<td>
<span>{{ category.locale }}</span>
</td>
<td>
<span>{{ category.meta.articles_count }}</span>
</td>
<td>
<woot-button
v-tooltip.top-end="
$t('HELP_CENTER.PORTAL.EDIT.CATEGORIES.TABLE.ACTION_BUTTON.EDIT')
"
size="tiny"
variant="smooth"
icon="edit"
color-scheme="secondary"
@click="editCategory(category)"
/>
<woot-button
v-tooltip.top-end="
$t(
'HELP_CENTER.PORTAL.EDIT.CATEGORIES.TABLE.ACTION_BUTTON.DELETE'
)
"
size="tiny"
variant="smooth"
icon="delete"
color-scheme="alert"
@click="deleteCategory(category.id)"
/>
</td>
</tr>
</tbody>
</table>
</template>
<script>
export default {
props: {
categories: {
type: Array,
default: () => [],
},
},
methods: {
editCategory(category) {
this.$emit('edit', category);
},
deleteCategory(categoryId) {
this.$emit('delete', categoryId);
},
},
};
</script>
<style lang="scss" scoped>
table {
thead tr th {
font-size: var(--font-size-small);
font-weight: var(--font-weight-medium);
text-transform: none;
color: var(--s-600);
padding-left: 0;
padding-top: 0;
}
tbody tr {
border-bottom: 0;
td {
font-size: var(--font-size-small);
padding-left: 0;
}
}
}
.horizontal-line {
border-bottom: 1px solid var(--color-border);
}
</style>

View file

@ -1,3 +1,198 @@
<template> <template>
<div>Component to edit a category</div> <woot-modal :show.sync="show" :on-close="onClose">
<woot-modal-header
:header-title="$t('HELP_CENTER.CATEGORY.EDIT.TITLE')"
:header-content="$t('HELP_CENTER.CATEGORY.EDIT.SUB_TITLE')"
/>
<form class="row" @submit.prevent="onUpdate">
<div class="medium-12 columns">
<div class="row article-info">
<div class="columns medium-6">
<label>
<span>{{ $t('HELP_CENTER.CATEGORY.EDIT.PORTAL') }}</span>
<p class="value">{{ portalName }}</p>
</label>
</div>
<div class="columns medium-6">
<label>
<span>{{ $t('HELP_CENTER.CATEGORY.EDIT.LOCALE') }}</span>
<p class="value">{{ locale }}</p>
</label>
</div>
</div>
<woot-input
v-model.trim="name"
:class="{ error: $v.name.$error }"
class="medium-12 columns"
:error="nameError"
:label="$t('HELP_CENTER.CATEGORY.EDIT.NAME.LABEL')"
:placeholder="$t('HELP_CENTER.CATEGORY.EDIT.NAME.PLACEHOLDER')"
:help-text="$t('HELP_CENTER.CATEGORY.EDIT.NAME.HELP_TEXT')"
@input="onNameChange"
/>
<woot-input
v-model.trim="slug"
:class="{ error: $v.slug.$error }"
class="medium-12 columns"
:error="slugError"
:label="$t('HELP_CENTER.CATEGORY.EDIT.SLUG.LABEL')"
:placeholder="$t('HELP_CENTER.CATEGORY.EDIT.SLUG.PLACEHOLDER')"
:help-text="$t('HELP_CENTER.CATEGORY.EDIT.SLUG.HELP_TEXT')"
@input="$v.slug.$touch"
/>
<label>
{{ $t('HELP_CENTER.CATEGORY.EDIT.DESCRIPTION.LABEL') }}
<textarea
v-model="description"
rows="3"
type="text"
:placeholder="
$t('HELP_CENTER.CATEGORY.EDIT.DESCRIPTION.PLACEHOLDER')
"
/>
</label>
<div class="medium-12 columns">
<div class="modal-footer justify-content-end w-full">
<woot-button class="button clear" @click.prevent="onClose">
{{ $t('HELP_CENTER.CATEGORY.EDIT.BUTTONS.CANCEL') }}
</woot-button>
<woot-button @click="editCategory">
{{ $t('HELP_CENTER.CATEGORY.EDIT.BUTTONS.CREATE') }}
</woot-button>
</div>
</div>
</div>
</form>
</woot-modal>
</template> </template>
<script>
import alertMixin from 'shared/mixins/alertMixin';
import { required, minLength } from 'vuelidate/lib/validators';
import { convertToCategorySlug } from 'dashboard/helper/commons.js';
export default {
mixins: [alertMixin],
props: {
show: {
type: Boolean,
default: true,
},
portalName: {
type: String,
default: '',
},
locale: {
type: String,
default: '',
},
category: {
type: Object,
default: () => {},
},
selectedPortalSlug: {
type: String,
default: '',
},
},
data() {
return {
id: this.category.id,
name: '',
slug: '',
description: '',
};
},
validations: {
name: {
required,
minLength: minLength(2),
},
slug: {
required,
},
},
computed: {
nameError() {
if (this.$v.name.$error) {
return this.$t('HELP_CENTER.CATEGORY.ADD.NAME.ERROR');
}
return '';
},
slugError() {
if (this.$v.slug.$error) {
return this.$t('HELP_CENTER.CATEGORY.ADD.SLUG.ERROR');
}
return '';
},
},
mounted() {
this.updateDataFromStore();
},
methods: {
updateDataFromStore() {
const { category } = this;
this.name = category.name;
this.slug = category.slug;
this.description = category.description;
},
onNameChange() {
this.slug = convertToCategorySlug(this.name);
},
onUpdate() {
this.$emit('update');
},
onClose() {
this.$emit('cancel');
},
async editCategory() {
const { id, name, slug, description } = this;
const data = {
id,
name,
slug,
description,
};
this.$v.$touch();
if (this.$v.$invalid) {
return;
}
try {
await this.$store.dispatch('categories/update', {
portalSlug: this.selectedPortalSlug,
categoryId: id,
categoryObj: data,
});
this.alertMessage = this.$t(
'HELP_CENTER.CATEGORY.EDIT.API.SUCCESS_MESSAGE'
);
this.onClose();
} catch (error) {
const errorMessage = error?.message;
this.alertMessage =
errorMessage ||
this.$t('HELP_CENTER.CATEGORY.EDIT.API.ERROR_MESSAGE');
} finally {
this.showAlert(this.alertMessage);
}
},
},
};
</script>
<style scoped lang="scss">
.article-info {
width: 100%;
margin: 0 0 var(--space-normal);
.value {
color: var(--s-600);
}
}
.input-container::v-deep {
margin: 0 0 var(--space-normal);
input {
margin-bottom: 0;
}
}
</style>

View file

@ -1,3 +1,201 @@
<template> <template>
<div>Component to list all categories</div> <div class="category-list--container">
<header>
<div class="header-left--wrap">
<label class="sub-block-title header-text">{{
$t('HELP_CENTER.PORTAL.EDIT.CATEGORIES.TITLE')
}}</label>
<select :value="currentLocaleCode" @change="changeCurrentCategory">
<option
v-for="allowedLocaleCode in allowedLocaleCodes"
:key="allowedLocaleCode"
:value="allowedLocaleCode"
>
{{ allowedLocaleCode }}
</option>
</select>
</div>
<div class="header-right--wrap">
<woot-button
size="small"
variant="smooth"
color-scheme="primary"
icon="add"
@click="openAddCategoryModal"
>
{{ $t('HELP_CENTER.PORTAL.EDIT.CATEGORIES.NEW_CATEGORY') }}
</woot-button>
</div>
</header>
<div class="category-list">
<category-list-item
:categories="categoryByLocaleCode"
@delete="deleteCategory"
@edit="openEditCategoryModal"
/>
</div>
<edit-category
v-if="showEditCategoryModal"
:show.sync="showEditCategoryModal"
:portal-name="currentPortalName"
:locale="selectedCategory.locale"
:category="selectedCategory"
:selected-portal-slug="currentPortalSlug"
@cancel="closeEditCategoryModal"
/>
<add-category
v-if="showAddCategoryModal"
:show.sync="showAddCategoryModal"
:portal-name="currentPortalName"
:locale="selectedCategory.locale"
@cancel="closeAddCategoryModal"
/>
</div>
</template> </template>
<script>
import { mapGetters } from 'vuex';
import alertMixin from 'shared/mixins/alertMixin';
import portalMixin from '../../mixins/portalMixin';
import CategoryListItem from './CategoryListItem';
import AddCategory from './AddCategory';
import EditCategory from './EditCategory';
export default {
components: {
CategoryListItem,
AddCategory,
EditCategory,
},
mixins: [alertMixin, portalMixin],
data() {
return {
selectedCategory: {},
selectedLocaleCode: '',
currentLocaleCode: 'en',
showEditCategoryModal: false,
showAddCategoryModal: false,
alertMessage: '',
};
},
computed: {
...mapGetters({
portals: 'portals/allPortals',
meta: 'portals/getMeta',
isFetching: 'portals/isFetchingPortals',
}),
currentPortalSlug() {
return this.$route.params.portalSlug;
},
categoryByLocaleCode() {
return this.$store.getters['categories/categoriesByLocaleCode'](
this.currentLocaleCode
);
},
currentPortal() {
const slug = this.currentPortalSlug;
if (slug) return this.$store.getters['portals/portalBySlug'](slug);
return this.$store.getters['portals/allPortals'][0];
},
currentPortalName() {
return this.currentPortal ? this.currentPortal.name : '';
},
currentPortalLocale() {
return this.currentPortal ? this.currentPortal?.meta?.default_locale : '';
},
allLocales() {
return this.currentPortal
? this.currentPortal.config.allowed_locales
: [];
},
allowedLocaleCodes() {
return this.allLocales.map(locale => locale.code);
},
},
mounted() {
// this.fetchCategories();
this.$store.getters['categories/categoriesByLocaleCode'](
this.currentLocaleCode
);
},
methods: {
fetchCategories() {
this.$store.dispatch('categories/index', {
portalSlug: this.currentPortalSlug,
});
},
openAddCategoryModal() {
this.showAddCategoryModal = true;
},
openEditCategoryModal(category) {
this.selectedCategory = category;
this.showEditCategoryModal = true;
},
closeAddCategoryModal() {
this.showAddCategoryModal = false;
},
closeEditCategoryModal() {
this.showEditCategoryModal = false;
},
async deleteCategory(categoryId) {
try {
await this.$store.dispatch('categories/delete', {
portalSlug: this.currentPortalSlug,
categoryId: categoryId,
});
this.alertMessage = this.$t(
'HELP_CENTER.CATEGORY.DELETE.API.SUCCESS_MESSAGE'
);
} catch (error) {
const errorMessage = error?.message;
this.alertMessage =
errorMessage ||
this.$t('HELP_CENTER.CATEGORY.DELETE.API.ERROR_MESSAGE');
} finally {
this.showAlert(this.alertMessage);
}
},
changeCurrentCategory(event) {
const localeCode = event.target.value;
this.currentLocaleCode = localeCode;
},
},
};
</script>
<style lang="scss" scoped>
.category-list--container {
width: 100%;
padding-left: var(--space-normal);
header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: var(--space-normal);
.header-left--wrap {
display: flex;
align-items: center;
width: 100%;
.header-text {
margin-right: var(--space-slab);
margin-bottom: 0;
}
}
.header-right--wrap {
flex: none;
align-items: center;
}
select {
height: var(--space-large);
max-width: 16rem;
margin-bottom: 0;
padding-top: var(--space-micro);
padding-bottom: var(--space-micro);
}
}
}
</style>

View file

@ -49,7 +49,8 @@ export default {
}), }),
currentPortal() { currentPortal() {
const slug = this.$route.params.portalSlug; const slug = this.$route.params.portalSlug;
return this.$store.getters['portals/portalBySlug'](slug); if (slug) return this.$store.getters['portals/portalBySlug'](slug);
return this.$store.getters['portals/allPortals'][0];
}, },
tabs() { tabs() {
const tabs = [ const tabs = [
@ -64,7 +65,7 @@ export default {
), ),
}, },
{ {
key: 'categories', key: `list_all_locale_categories`,
name: this.$t('HELP_CENTER.PORTAL.EDIT.TABS.CATEGORY_SETTINGS.TITLE'), name: this.$t('HELP_CENTER.PORTAL.EDIT.TABS.CATEGORY_SETTINGS.TITLE'),
}, },
{ {
@ -81,6 +82,9 @@ export default {
portalName() { portalName() {
return this.currentPortal ? this.currentPortal.name : ''; return this.currentPortal ? this.currentPortal.name : '';
}, },
currentPortalLocale() {
return this.currentPortal ? this.currentPortal?.meta?.default_locale : '';
},
}, },
methods: { methods: {
onTabChange(index) { onTabChange(index) {
@ -89,7 +93,7 @@ export default {
this.$router.push({ this.$router.push({
name: nextRoute, name: nextRoute,
params: { portalSlug: slug }, params: { portalSlug: slug, locale: this.currentPortalLocale },
}); });
}, },
}, },
@ -99,14 +103,7 @@ export default {
.wrapper { .wrapper {
flex: 1; flex: 1;
} }
.container { ::v-deep .tabs {
display: flex; padding-left: 0;
flex: 1;
}
.wizard-box {
border-right: 1px solid var(--s-25);
::v-deep .item {
background: var(--white);
}
} }
</style> </style>

View file

@ -39,8 +39,7 @@ export const actions = {
} }
}, },
update: async ({ commit }, portalSlug, categoryObj) => { update: async ({ commit }, { portalSlug, categoryId, categoryObj }) => {
const categoryId = categoryObj.id;
commit(types.ADD_CATEGORY_FLAG, { commit(types.ADD_CATEGORY_FLAG, {
uiFlags: { uiFlags: {
isUpdating: true, isUpdating: true,
@ -48,8 +47,14 @@ export const actions = {
categoryId, categoryId,
}); });
try { try {
const { data } = await categoriesAPI.update({ portalSlug, categoryObj }); const {
commit(types.UPDATE_CATEGORY, data); data: { payload },
} = await categoriesAPI.update({
portalSlug,
categoryId,
categoryObj,
});
commit(types.UPDATE_CATEGORY, payload);
return categoryId; return categoryId;
} catch (error) { } catch (error) {
return throwErrorMessage(error); return throwErrorMessage(error);
@ -63,7 +68,7 @@ export const actions = {
} }
}, },
delete: async ({ commit }, portalSlug, categoryId) => { delete: async ({ commit }, { portalSlug, categoryId }) => {
commit(types.ADD_CATEGORY_FLAG, { commit(types.ADD_CATEGORY_FLAG, {
uiFlags: { uiFlags: {
isDeleting: true, isDeleting: true,

View file

@ -18,6 +18,13 @@ export const getters = {
}); });
return categories; return categories;
}, },
categoriesByLocaleCode: (...getterArguments) => localeCode => {
const [state, _getters] = getterArguments;
const categories = state.categories.allIds.map(id => {
return _getters.categoryById(id);
});
return categories.filter(category => category.locale === localeCode);
},
getMeta: state => { getMeta: state => {
return state.meta; return state.meta;
}, },

View file

@ -57,21 +57,34 @@ describe('#actions', () => {
describe('#update', () => { describe('#update', () => {
it('sends correct actions if API is success', async () => { it('sends correct actions if API is success', async () => {
axios.patch.mockResolvedValue({ data: categoriesPayload.payload[0] }); axios.patch.mockResolvedValue({ data: categoriesPayload });
await actions.update( await actions.update(
{ commit }, { commit },
'web-docs', {
categoriesPayload.payload[0] portalSlug: 'room-rental',
categoryId: 1,
categoryObj: categoriesPayload.payload[0],
}
); );
expect(commit.mock.calls).toEqual([ expect(commit.mock.calls).toEqual([
[ [
types.default.ADD_CATEGORY_FLAG, types.default.ADD_CATEGORY_FLAG,
{ uiFlags: { isUpdating: true }, categoryId: 1 }, {
uiFlags: {
isUpdating: true,
},
categoryId: 1,
},
], ],
[types.default.UPDATE_CATEGORY, categoriesPayload.payload[0]], [types.default.UPDATE_CATEGORY, categoriesPayload.payload],
[ [
types.default.ADD_CATEGORY_FLAG, types.default.ADD_CATEGORY_FLAG,
{ uiFlags: { isUpdating: false }, categoryId: 1 }, {
uiFlags: {
isUpdating: false,
},
categoryId: 1,
},
], ],
]); ]);
}); });
@ -79,7 +92,14 @@ describe('#actions', () => {
it('sends correct actions if API is error', async () => { it('sends correct actions if API is error', async () => {
axios.patch.mockRejectedValue({ message: 'Incorrect header' }); axios.patch.mockRejectedValue({ message: 'Incorrect header' });
await expect( await expect(
actions.update({ commit }, 'web-docs', categoriesPayload.payload[0]) actions.update(
{ commit },
{
portalSlug: 'room-rental',
categoryId: 1,
categoryObj: categoriesPayload.payload[0],
}
)
).rejects.toThrow(Error); ).rejects.toThrow(Error);
expect(commit.mock.calls).toEqual([ expect(commit.mock.calls).toEqual([
[ [
@ -96,11 +116,13 @@ describe('#actions', () => {
describe('#delete', () => { describe('#delete', () => {
it('sends correct actions if API is success', async () => { it('sends correct actions if API is success', async () => {
axios.delete.mockResolvedValue({ data: categoriesPayload.payload[0] }); axios.delete.mockResolvedValue({ data: categoriesPayload });
await actions.delete( await actions.delete(
{ commit }, { commit },
'portal-slug', {
categoriesPayload.payload[0].id portalSlug: 'room-rental',
categoryId: categoriesPayload.payload[0].id,
}
); );
expect(commit.mock.calls).toEqual([ expect(commit.mock.calls).toEqual([
[ [
@ -120,8 +142,10 @@ describe('#actions', () => {
await expect( await expect(
actions.delete( actions.delete(
{ commit }, { commit },
'portal-slug', {
categoriesPayload.payload[0].id portalSlug: 'room-rental',
categoryId: categoriesPayload.payload[0].id,
}
) )
).rejects.toThrow(Error); ).rejects.toThrow(Error);
expect(commit.mock.calls).toEqual([ expect(commit.mock.calls).toEqual([

View file

@ -19,6 +19,10 @@ describe('#getters', () => {
); );
}); });
it('categoriesByLocaleCode', () => {
expect(getters.categoriesByLocaleCode(state, getters)('en_US')).toEqual([]);
});
it('isFetchingCategories', () => { it('isFetchingCategories', () => {
expect(getters.isFetching(state)).toEqual(true); expect(getters.isFetching(state)).toEqual(true);
}); });