33 lines
No EOL
823 B
TypeScript
33 lines
No EOL
823 B
TypeScript
import { Entities } from 'soapbox/entity-store/entities';
|
|
import { useCreateEntity } from 'soapbox/entity-store/hooks';
|
|
import { useApi } from 'soapbox/hooks/useApi';
|
|
import { groupSchema } from 'soapbox/schemas';
|
|
|
|
interface UpdateGroupParams {
|
|
display_name?: string
|
|
note?: string
|
|
avatar?: File
|
|
header?: File
|
|
group_visibility?: string
|
|
discoverable?: boolean
|
|
tags?: string[]
|
|
}
|
|
|
|
function useUpdateGroup(groupId: string) {
|
|
const api = useApi();
|
|
|
|
const { createEntity, ...rest } = useCreateEntity([Entities.GROUPS], (params: UpdateGroupParams) => {
|
|
return api.put(`/api/v1/groups/${groupId}`, params, {
|
|
headers: {
|
|
'Content-Type': 'multipart/form-data',
|
|
},
|
|
});
|
|
}, { schema: groupSchema });
|
|
|
|
return {
|
|
updateGroup: createEntity,
|
|
...rest,
|
|
};
|
|
}
|
|
|
|
export { useUpdateGroup }; |