178 lines
4.8 KiB
JavaScript
178 lines
4.8 KiB
JavaScript
import { createApi } from '@reduxjs/toolkit/query/react';
|
|
// import toast from "react-hot-toast";
|
|
import baseQuery from './base.query';
|
|
import BASE_URL, { ContentTypes } from '../config';
|
|
import { updateChannel } from '../slices/channels';
|
|
import { removeMessage } from '../slices/message';
|
|
import { removeChannelSession } from '../slices/message.channel';
|
|
import { removeReactionMessage } from '../slices/message.reaction';
|
|
import { onMessageSendStarted } from './handlers';
|
|
export const channelApi = createApi({
|
|
reducerPath: 'channelApi',
|
|
baseQuery,
|
|
refetchOnFocus: true,
|
|
endpoints: (builder) => ({
|
|
getChannels: builder.query({
|
|
query: () => ({ url: `group` })
|
|
}),
|
|
getChannel: builder.query({
|
|
query: (id) => ({ url: `group/${id}` })
|
|
}),
|
|
createChannel: builder.mutation({
|
|
query: (data) => ({
|
|
url: 'group',
|
|
method: 'POST',
|
|
body: data
|
|
})
|
|
}),
|
|
updateChannel: builder.mutation({
|
|
query: ({ id, ...data }) => ({
|
|
url: `group/${id}`,
|
|
method: 'PUT',
|
|
body: data
|
|
}),
|
|
async onQueryStarted({ id, name, description }, { dispatch, queryFulfilled }) {
|
|
// id: who send to ,from_uid: who sent
|
|
const patchResult = dispatch(updateChannel({ id, name, description }));
|
|
try {
|
|
await queryFulfilled;
|
|
} catch {
|
|
console.log('channel update failed');
|
|
patchResult.undo();
|
|
}
|
|
}
|
|
}),
|
|
getHistoryMessages: builder.query({
|
|
query: ({ gid, mid = 0, limit = 50 }) => ({
|
|
url: `/group/${gid}/history?before=${mid}&limit=${limit}`
|
|
})
|
|
// async onQueryStarted(id, { dispatch, getState, queryFulfilled }) {
|
|
// const {
|
|
// ui: { channelSetting },
|
|
// channelMessage,
|
|
// } = getState();
|
|
// try {
|
|
// await queryFulfilled;
|
|
// dispatch(removeChannel(id));
|
|
// if (id == channelSetting) {
|
|
// dispatch(toggleChannelSetting());
|
|
// }
|
|
// // 删掉该channel下的所有消息&reaction
|
|
// const mids = channelMessage[id];
|
|
// if (mids) {
|
|
// dispatch(removeChannelSession(id));
|
|
// dispatch(removeMessage(mids));
|
|
// dispatch(removeReactionMessage(mids));
|
|
// }
|
|
// } catch {
|
|
// console.log("remove channel error");
|
|
// }
|
|
// },
|
|
}),
|
|
createInviteLink: builder.query({
|
|
query: (gid) => ({
|
|
headers: {
|
|
'content-type': 'text/plain',
|
|
accept: 'text/plain'
|
|
},
|
|
url: `/group/${gid}/create_invite_link`,
|
|
responseHandler: (response) => response.text()
|
|
}),
|
|
transformResponse: (link) => {
|
|
// 替换掉域名
|
|
const invite = new URL(link);
|
|
return `${location.origin}${invite.pathname}${invite.search}${invite.hash}`;
|
|
}
|
|
}),
|
|
removeChannel: builder.query({
|
|
query: (id) => ({
|
|
url: `group/${id}`,
|
|
method: 'DELETE'
|
|
}),
|
|
async onQueryStarted(id, { dispatch, getState, queryFulfilled }) {
|
|
const { channelMessage } = getState();
|
|
try {
|
|
await queryFulfilled;
|
|
// 删掉该channel下的所有消息&reaction
|
|
const mids = channelMessage[id];
|
|
if (mids) {
|
|
dispatch(removeChannelSession(id));
|
|
dispatch(removeMessage(mids));
|
|
dispatch(removeReactionMessage(mids));
|
|
}
|
|
} catch {
|
|
console.log('remove channel error');
|
|
}
|
|
}
|
|
}),
|
|
sendChannelMsg: builder.mutation({
|
|
query: ({ id, content, type = 'text', properties = '' }) => ({
|
|
headers: {
|
|
'content-type': ContentTypes[type],
|
|
'X-Properties': properties
|
|
? btoa(unescape(encodeURIComponent(JSON.stringify(properties))))
|
|
: ''
|
|
},
|
|
url: `group/${id}/send`,
|
|
method: 'POST',
|
|
body: type == 'file' ? JSON.stringify(content) : content
|
|
}),
|
|
async onQueryStarted(param1, param2) {
|
|
await onMessageSendStarted.call(this, param1, param2, 'channel');
|
|
}
|
|
}),
|
|
addMembers: builder.mutation({
|
|
query: ({ id, members }) => ({
|
|
url: `group/${id}/members/add`,
|
|
method: 'POST',
|
|
body: members
|
|
})
|
|
}),
|
|
removeMembers: builder.mutation({
|
|
query: ({ id, members }) => ({
|
|
url: `group/${id}/members/remove`,
|
|
method: 'POST',
|
|
body: members
|
|
})
|
|
}),
|
|
updateIcon: builder.mutation({
|
|
query: ({ gid, image }) => ({
|
|
headers: {
|
|
'content-type': 'image/png'
|
|
},
|
|
url: `/group/${gid}/avatar`,
|
|
method: 'POST',
|
|
body: image
|
|
}),
|
|
async onQueryStarted({ gid }, { dispatch, queryFulfilled }) {
|
|
try {
|
|
await queryFulfilled;
|
|
dispatch(
|
|
updateChannel({
|
|
id: gid,
|
|
icon: `${BASE_URL}/resource/group_avatar?gid=${gid}&t=${new Date().getTime()}`
|
|
})
|
|
);
|
|
} catch (error) {
|
|
console.log('err', error);
|
|
}
|
|
}
|
|
})
|
|
})
|
|
});
|
|
|
|
export const {
|
|
useLazyCreateInviteLinkQuery,
|
|
useCreateInviteLinkQuery,
|
|
useLazyGetHistoryMessagesQuery,
|
|
useGetChannelQuery,
|
|
useUpdateChannelMutation,
|
|
useLazyRemoveChannelQuery,
|
|
useGetChannelsQuery,
|
|
useCreateChannelMutation,
|
|
useSendChannelMsgMutation,
|
|
useAddMembersMutation,
|
|
useRemoveMembersMutation,
|
|
useUpdateIconMutation
|
|
} = channelApi;
|