import type { SlashCommandHandler } from './types' import React from 'react' import { RiBookOpenLine } from '@remixicon/react' import i18n from '@/i18n-config/i18next-config' import { registerCommands, unregisterCommands } from './command-bus' import { defaultDocBaseUrl } from '@/context/i18n' // Documentation command dependency types - no external dependencies needed type DocDeps = Record /** * Documentation command - Opens help documentation */ export const docCommand: SlashCommandHandler = { name: 'doc', description: 'Open documentation', async search(args: string, locale: string = 'en') { return [{ id: 'doc', title: i18n.t('common.userProfile.helpCenter', { lng: locale }), description: i18n.t('app.gotoAnything.actions.docDesc', { lng: locale }) || 'Open help documentation', type: 'command' as const, icon: (
), data: { command: 'navigation.doc', args: {} }, }] }, register(_deps: DocDeps) { registerCommands({ 'navigation.doc': async (_args) => { const url = `${defaultDocBaseUrl}` window.open(url, '_blank', 'noopener,noreferrer') }, }) }, unregister() { unregisterCommands(['navigation.doc']) }, }