Co-authored-by: GuanMu <ballmanjq@gmail.com> Co-authored-by: zhujiruo <zhujiruo@foxmail.com> Co-authored-by: Matri Qi <matrixdom@126.com> Co-authored-by: croatialu <wuli.croatia@foxmail.com> Co-authored-by: HyaCinth <88471803+HyaCiovo@users.noreply.github.com> Co-authored-by: lyzno1 <92089059+lyzno1@users.noreply.github.com>
42 lines
1.4 KiB
TypeScript
42 lines
1.4 KiB
TypeScript
import type { ActionItem, PluginSearchResult } from './types'
|
|
import { renderI18nObject } from '@/i18n-config'
|
|
import Icon from '../../plugins/card/base/card-icon'
|
|
import { postMarketplace } from '@/service/base'
|
|
import type { Plugin, PluginsFromMarketplaceResponse } from '../../plugins/types'
|
|
import { getPluginIconInMarketplace } from '../../plugins/marketplace/utils'
|
|
|
|
const parser = (plugins: Plugin[], locale: string): PluginSearchResult[] => {
|
|
return plugins.map((plugin) => {
|
|
return {
|
|
id: plugin.name,
|
|
title: renderI18nObject(plugin.label, locale) || plugin.name,
|
|
description: renderI18nObject(plugin.brief, locale) || '',
|
|
type: 'plugin' as const,
|
|
icon: <Icon src={plugin.icon} />,
|
|
data: plugin,
|
|
}
|
|
})
|
|
}
|
|
|
|
export const pluginAction: ActionItem = {
|
|
key: '@plugin',
|
|
shortcut: '@plugin',
|
|
title: 'Search Plugins',
|
|
description: 'Search and navigate to your plugins',
|
|
search: async (_, searchTerm = '', locale) => {
|
|
const response = await postMarketplace<{ data: PluginsFromMarketplaceResponse }>('/plugins/search/advanced', {
|
|
body: {
|
|
page: 1,
|
|
page_size: 10,
|
|
query: searchTerm,
|
|
type: 'plugin',
|
|
},
|
|
})
|
|
const list = (response.data.plugins || []).map(plugin => ({
|
|
...plugin,
|
|
icon: getPluginIconInMarketplace(plugin),
|
|
}))
|
|
return parser(list, locale!)
|
|
},
|
|
}
|