mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
103 lines
2.8 KiB
TypeScript
103 lines
2.8 KiB
TypeScript
import { createContext, useState, useContext, useMemo, useEffect } from 'react';
|
|
import { IConstituenta, IRSForm } from '../models';
|
|
import { useRSFormDetails } from '../hooks/useRSFormDetails';
|
|
import { ErrorInfo } from '../components/BackendError';
|
|
import { useAuth } from './AuthContext';
|
|
import { BackendCallback, deleteRSForm, patchRSForm, postClaimRSForm } from '../backendAPI';
|
|
|
|
interface IRSFormContext {
|
|
schema?: IRSForm
|
|
active?: IConstituenta
|
|
error: ErrorInfo
|
|
loading: boolean
|
|
processing: boolean
|
|
isEditable: boolean
|
|
isClaimable: boolean
|
|
|
|
setActive: (cst: IConstituenta) => void
|
|
reload: () => void
|
|
upload: (data: any, callback?: BackendCallback) => void
|
|
destroy: (callback: BackendCallback) => void
|
|
claim: (callback: BackendCallback) => void
|
|
}
|
|
|
|
export const RSFormContext = createContext<IRSFormContext>({
|
|
schema: undefined,
|
|
active: undefined,
|
|
error: undefined,
|
|
loading: false,
|
|
processing: false,
|
|
isEditable: false,
|
|
isClaimable: false,
|
|
|
|
setActive: () => {},
|
|
reload: () => {},
|
|
upload: () => {},
|
|
destroy: () => {},
|
|
claim: () => {},
|
|
})
|
|
|
|
interface RSFormStateProps {
|
|
id: string
|
|
children: React.ReactNode
|
|
}
|
|
|
|
export const RSFormState = ({ id, children }: RSFormStateProps) => {
|
|
const { user } = useAuth();
|
|
const { schema, reload, error, setError, loading } = useRSFormDetails({target: id});
|
|
const [processing, setProcessing] = useState(false)
|
|
const [active, setActive] = useState<IConstituenta | undefined>(undefined);
|
|
|
|
const isEditable = useMemo(() => (user?.id === schema?.owner || user?.is_staff || false), [user, schema]);
|
|
const isClaimable = useMemo(() => (user?.id !== schema?.owner || false), [user, schema]);
|
|
|
|
useEffect(() => {
|
|
if (schema?.items && schema?.items.length > 0) {
|
|
setActive(schema?.items[0]);
|
|
}
|
|
}, [schema])
|
|
|
|
async function upload(data: any, callback?: BackendCallback) {
|
|
setError(undefined);
|
|
patchRSForm(id, {
|
|
data: data,
|
|
showError: true,
|
|
setLoading: setProcessing,
|
|
onError: error => setError(error),
|
|
onSucccess: callback
|
|
});
|
|
}
|
|
|
|
async function destroy(callback: BackendCallback) {
|
|
setError(undefined);
|
|
deleteRSForm(id, {
|
|
showError: true,
|
|
setLoading: setProcessing,
|
|
onError: error => setError(error),
|
|
onSucccess: callback
|
|
});
|
|
}
|
|
|
|
async function claim(callback: BackendCallback) {
|
|
setError(undefined);
|
|
postClaimRSForm(id, {
|
|
showError: true,
|
|
setLoading: setProcessing,
|
|
onError: error => setError(error),
|
|
onSucccess: callback
|
|
});
|
|
}
|
|
|
|
return (
|
|
<RSFormContext.Provider value={{
|
|
schema, error, loading, processing,
|
|
active, setActive,
|
|
isEditable, isClaimable,
|
|
reload, upload, destroy, claim
|
|
}}>
|
|
{ children }
|
|
</RSFormContext.Provider>
|
|
);
|
|
}
|
|
|
|
export const useRSForm = () => useContext(RSFormContext); |