mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-13 21:01:16 +08:00
Fixes https://linear.app/chatwoot/issue/CW-6950/support-bulk-actions-for-publish-archive-move-to-draft-delete-in How to test 1. Go to Help Center → Articles 2. Select articles using checkboxes → bulk bar appears 3. Click Publish/Draft/Archive → articles update, list refreshes 4. Click Delete → confirmation dialog → articles removed 5. Click Translate (requires Captain enabled) → select locale + category → translation starts 6. Try translating to a locale that already has translations → warning with links to existing articles → "Overwrite and translate" proceeds 8. Single article: click three-dot menu → Translate → same dialog opens for that article https://github.com/user-attachments/assets/7c76495e-f89e-4456-92bd-a6639a9992f4 --------- Co-authored-by: Claude Opus 4.7 (1M context) <[email protected]>
99 lines
2.3 KiB
JavaScript
99 lines
2.3 KiB
JavaScript
/* global axios */
|
|
|
|
import PortalsAPI from './portals';
|
|
import { getArticleSearchURL } from 'dashboard/helper/URLHelper.js';
|
|
|
|
class ArticlesAPI extends PortalsAPI {
|
|
constructor() {
|
|
super('articles', { accountScoped: true });
|
|
}
|
|
|
|
getArticles({
|
|
pageNumber,
|
|
portalSlug,
|
|
locale,
|
|
status,
|
|
authorId,
|
|
categorySlug,
|
|
sort,
|
|
}) {
|
|
const url = getArticleSearchURL({
|
|
pageNumber,
|
|
portalSlug,
|
|
locale,
|
|
status,
|
|
authorId,
|
|
categorySlug,
|
|
sort,
|
|
host: this.url,
|
|
});
|
|
|
|
return axios.get(url);
|
|
}
|
|
|
|
searchArticles({ portalSlug, query }) {
|
|
const url = getArticleSearchURL({
|
|
portalSlug,
|
|
query,
|
|
host: this.url,
|
|
});
|
|
return axios.get(url);
|
|
}
|
|
|
|
getArticle({ id, portalSlug }) {
|
|
return axios.get(`${this.url}/${portalSlug}/articles/${id}`);
|
|
}
|
|
|
|
updateArticle({ portalSlug, articleId, articleObj }) {
|
|
return axios.patch(
|
|
`${this.url}/${portalSlug}/articles/${articleId}`,
|
|
articleObj
|
|
);
|
|
}
|
|
|
|
createArticle({ portalSlug, articleObj }) {
|
|
const { content, title, authorId, categoryId, locale } = articleObj;
|
|
return axios.post(`${this.url}/${portalSlug}/articles`, {
|
|
content,
|
|
title,
|
|
author_id: authorId,
|
|
category_id: categoryId,
|
|
locale,
|
|
});
|
|
}
|
|
|
|
deleteArticle({ articleId, portalSlug }) {
|
|
return axios.delete(`${this.url}/${portalSlug}/articles/${articleId}`);
|
|
}
|
|
|
|
reorderArticles({ portalSlug, reorderedGroup, categorySlug }) {
|
|
return axios.post(`${this.url}/${portalSlug}/articles/reorder`, {
|
|
positions_hash: reorderedGroup,
|
|
category_slug: categorySlug,
|
|
});
|
|
}
|
|
|
|
bulkTranslate({ portalSlug, articleIds, locale, categoryId, force = false }) {
|
|
return axios.post(
|
|
`${this.url}/${portalSlug}/articles/bulk_actions/translate`,
|
|
{ ids: articleIds, locale, category_id: categoryId, force }
|
|
);
|
|
}
|
|
|
|
bulkUpdateStatus({ portalSlug, articleIds, status }) {
|
|
return axios.patch(
|
|
`${this.url}/${portalSlug}/articles/bulk_actions/update_status`,
|
|
{ ids: articleIds, status }
|
|
);
|
|
}
|
|
|
|
bulkDelete({ portalSlug, articleIds }) {
|
|
return axios.delete(
|
|
`${this.url}/${portalSlug}/articles/bulk_actions/delete_articles`,
|
|
{ data: { ids: articleIds } }
|
|
);
|
|
}
|
|
}
|
|
|
|
export default new ArticlesAPI();
|