erp-platform/ui/src/services/UiEvalService.tsx
2026-01-16 17:52:52 +03:00

90 lines
2.3 KiB
TypeScript

import { Notification, toast } from '@/components/ui'
import { generateBackgroundWorkers } from '@/services/background-worker.service'
import { getLocalization } from '@/services/localization.service'
import { store } from '@/store'
import { clearRedisCache } from './languageText.service'
export abstract class UiEvalService {
static Init = () => {
//console.log('init')
}
static ApiGenerateBackgroundWorkers = () => {
// Get store state directly instead of using hook
const state = store.getState()
const { texts, config } = state.abpConfig
// Create translate function similar to useLocalization hook
const translate = (
localizationKey: string,
params?: Record<string, string | number>,
defaultResourceName?: string,
): string => {
if (!texts) {
return localizationKey
}
return getLocalization(
texts,
defaultResourceName ?? config?.localization?.defaultResourceName,
localizationKey,
params,
)
}
const asyncCall = async () => {
await generateBackgroundWorkers()
}
asyncCall()
toast.push(
<Notification type="success" duration={2000}>
{translate('::App.BackgroundWorkers.Message')}
</Notification>,
{
placement: 'top-end',
},
)
}
static ApiClearRedisCache = () => {
// Get store state directly instead of using hook
const state = store.getState()
const { texts, config } = state.abpConfig
// Create translate function similar to useLocalization hook
const translate = (
localizationKey: string,
params?: Record<string, string | number>,
defaultResourceName?: string,
): string => {
if (!texts) {
return localizationKey
}
return getLocalization(
texts,
defaultResourceName ?? config?.localization?.defaultResourceName,
localizationKey,
params,
)
}
const asyncCall = async () => {
await clearRedisCache()
}
asyncCall()
toast.push(
<Notification type="success" duration={2000}>
{translate('::App.ClearRedisCache.Message')}
</Notification>,
{
placement: 'top-end',
},
)
}
}
const _global = (window || global) as any
_global.UiEvalService = UiEvalService