mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-07-01 21:03:46 +08:00
Adds the ability to translate help center articles to other languages using Captain's LLM infrastructure. Translated articles are created as drafts linked to the source article. Fixes https://linear.app/chatwoot/issue/CW-6901/translate-article-to-another-language **How to test** 1. Navigate to Help Center → Articles for a portal with multiple locales 2. Click the three-dot menu on any article → "Translate" 3. Select a target language and category → click Translate 4. Switch to the target locale — the translated article appears as a draft 5. Try translating the same article again — a warning shows the existing translation with a link to open it in a new tab 6. Click "Overwrite and translate" to replace the existing translation https://github.com/user-attachments/assets/1d2e991b-f0ac-403a-bcc1-2181b5731ea4
85 lines
1.9 KiB
JavaScript
85 lines
1.9 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 }
|
|
);
|
|
}
|
|
}
|
|
|
|
export default new ArticlesAPI();
|