mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-27 13:30:36 +03:00
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
![]() |
import { useCallback, useState } from 'react'
|
||
|
|
||
|
import { ErrorInfo } from '../components/BackendError';
|
||
|
import { ILexemeData, ITextRequest, ITextResult, IWordFormPlain } from '../models/language';
|
||
|
import { DataCallback, postGenerateLexeme, postInflectText, postParseText } from '../utils/backendAPI';
|
||
|
|
||
|
function useConceptText() {
|
||
|
const [loading, setLoading] = useState(false);
|
||
|
const [error, setError] = useState<ErrorInfo>(undefined);
|
||
|
|
||
|
const inflect = useCallback(
|
||
|
(data: IWordFormPlain, onSuccess: DataCallback<ITextResult>) => {
|
||
|
setError(undefined);
|
||
|
postInflectText({
|
||
|
data: data,
|
||
|
showError: true,
|
||
|
setLoading,
|
||
|
onError: error => setError(error),
|
||
|
onSuccess: data => {
|
||
|
if (onSuccess) onSuccess(data);
|
||
|
}
|
||
|
});
|
||
|
}, []);
|
||
|
|
||
|
const parse = useCallback(
|
||
|
(data: ITextRequest, onSuccess: DataCallback<ITextResult>) => {
|
||
|
setError(undefined);
|
||
|
postParseText({
|
||
|
data: data,
|
||
|
showError: true,
|
||
|
setLoading,
|
||
|
onError: error => setError(error),
|
||
|
onSuccess: data => {
|
||
|
if (onSuccess) onSuccess(data);
|
||
|
}
|
||
|
});
|
||
|
}, []);
|
||
|
|
||
|
const generateLexeme = useCallback(
|
||
|
(data: ITextRequest, onSuccess: DataCallback<ILexemeData>) => {
|
||
|
setError(undefined);
|
||
|
postGenerateLexeme({
|
||
|
data: data,
|
||
|
showError: true,
|
||
|
setLoading,
|
||
|
onError: error => setError(error),
|
||
|
onSuccess: data => {
|
||
|
if (onSuccess) onSuccess(data);
|
||
|
}
|
||
|
});
|
||
|
}, []);
|
||
|
|
||
|
return { inflect, parse, generateLexeme, error, setError, loading };
|
||
|
}
|
||
|
|
||
|
export default useConceptText;
|