add action system and move message sending to it
This commit is contained in:
parent
2655e12d90
commit
d14b0c4282
3 changed files with 51 additions and 38 deletions
|
@ -13,7 +13,7 @@
|
|||
|
||||
replyString += `@${message.author_username}: `;
|
||||
|
||||
setMessageInputEvent.update(replyString);
|
||||
setMessageInputEvent.emit(replyString);
|
||||
};
|
||||
</script>
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
import { onDestroy, onMount } from "svelte";
|
||||
import request from "../request";
|
||||
import { apiRoute, getItem } from "../storage";
|
||||
import { messagesStoreProvider, overlayStore, selectedChannel, setMessageInputEvent, smallViewport, typingStore, userInfoStore } from "../stores";
|
||||
import { messagesStoreProvider, overlayStore, selectedChannel, sendMessageAction, setMessageInputEvent, smallViewport, typingStore, userInfoStore } from "../stores";
|
||||
|
||||
export let channel;
|
||||
let messageInput = "";
|
||||
|
@ -41,37 +41,11 @@
|
|||
|
||||
const sendMessage = async () => {
|
||||
messageTextarea.focus();
|
||||
|
||||
if (messageInput.trim() === "" || !$userInfoStore)
|
||||
return;
|
||||
|
||||
// optimistically add message to store
|
||||
const optimisticMessageId = Math.floor(Math.random() * 999999);
|
||||
const optimisticMessage = {
|
||||
id: optimisticMessageId,
|
||||
content: messageInput,
|
||||
channel_id: channel.id,
|
||||
author_id: $userInfoStore.id,
|
||||
author_username: $userInfoStore.username,
|
||||
created_at: Date.now().toString(),
|
||||
_isPending: true
|
||||
};
|
||||
messages.addMessage(optimisticMessage);
|
||||
sendMessageAction.emit({
|
||||
channelId: channel.id,
|
||||
content: messageInput
|
||||
});
|
||||
messageInput = "";
|
||||
|
||||
const res = await request("POST", apiRoute(`channels/${channel.id}/messages`), true, {
|
||||
content: optimisticMessage.content,
|
||||
optimistic_id: optimisticMessageId
|
||||
});
|
||||
|
||||
if (res.success && res.ok) {
|
||||
messages.setMessage(optimisticMessageId, res.json);
|
||||
} else {
|
||||
messages.deleteMessage({
|
||||
id: optimisticMessageId
|
||||
});
|
||||
overlayStore.toast("Couldn't send message");
|
||||
}
|
||||
};
|
||||
|
||||
const onKeydown = async (e) => {
|
||||
|
@ -100,10 +74,10 @@
|
|||
}
|
||||
};
|
||||
onMount(focusTextarea);
|
||||
unsubscribers.push(selectedChannel.watch(focusTextarea));
|
||||
unsubscribers.push(selectedChannel.on(focusTextarea));
|
||||
|
||||
// Handle the setMessageInput event
|
||||
unsubscribers.push(setMessageInputEvent.watch((value) => {
|
||||
unsubscribers.push(setMessageInputEvent.on((value) => {
|
||||
messageInput = value;
|
||||
if (messageTextarea) {
|
||||
messageTextarea.focus();
|
||||
|
|
|
@ -20,7 +20,7 @@ class Store {
|
|||
}
|
||||
|
||||
// like subscribe, but without initially calling the handler
|
||||
watch(handler) {
|
||||
on(handler) {
|
||||
storeLog(`[Watch] (${this.name})`, "handler:", handler);
|
||||
|
||||
this._handlers.add(handler);
|
||||
|
@ -51,7 +51,7 @@ class Store {
|
|||
}
|
||||
|
||||
// like set(), but without checking if the value is the same
|
||||
update(value) {
|
||||
emit(value) {
|
||||
this.value = value;
|
||||
this.updated();
|
||||
}
|
||||
|
@ -100,10 +100,16 @@ class Store {
|
|||
}
|
||||
}
|
||||
|
||||
function createAction(name, handler) {
|
||||
const store = new Store(null, name);
|
||||
store.on(handler);
|
||||
return store;
|
||||
}
|
||||
|
||||
class StorageItemStore extends Store {
|
||||
constructor(key) {
|
||||
super(getItem(key), `StorageItemStore[key=${key}]`);
|
||||
this.watch(e => setItem(key, e));
|
||||
this.on(e => setItem(key, e));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -637,7 +643,40 @@ export const typingStore = new TypingStore();
|
|||
export const presenceStore = new PresenceStore();
|
||||
export const unreadStore = new UnreadStore();
|
||||
export const pluginStore = new PluginStore();
|
||||
|
||||
export const setMessageInputEvent = new Store(null, "event:setMessageInput");
|
||||
export const sendMessageAction = createAction("sendMessageAction", async ({channelId, content}) => {
|
||||
if (content.trim() === "" || !userInfoStore.value)
|
||||
return;
|
||||
|
||||
// optimistically add message to store
|
||||
const optimisticMessageId = Math.floor(Math.random() * 999999);
|
||||
const optimisticMessage = {
|
||||
id: optimisticMessageId,
|
||||
content: content,
|
||||
channel_id: channelId,
|
||||
author_id: userInfoStore.value.id,
|
||||
author_username: userInfoStore.value.username,
|
||||
created_at: Date.now().toString(),
|
||||
_isPending: true
|
||||
};
|
||||
const messagesStoreForChannel = messagesStoreProvider.getStore(channelId);
|
||||
messagesStoreForChannel.addMessage(optimisticMessage);
|
||||
|
||||
const res = await request("POST", apiRoute(`channels/${channelId}/messages`), true, {
|
||||
content: optimisticMessage.content,
|
||||
optimistic_id: optimisticMessageId
|
||||
});
|
||||
|
||||
if (res.success && res.ok) {
|
||||
messagesStoreForChannel.setMessage(optimisticMessageId, res.json);
|
||||
} else {
|
||||
messagesStoreForChannel.deleteMessage({
|
||||
id: optimisticMessageId
|
||||
});
|
||||
overlayStore.toast("Couldn't send message");
|
||||
}
|
||||
});
|
||||
|
||||
export const allStores = {
|
||||
selectedChannel,
|
||||
|
@ -658,7 +697,7 @@ export const allStores = {
|
|||
setMessageInputEvent,
|
||||
};
|
||||
|
||||
selectedChannel.watch((newSelectedChannel) => {
|
||||
selectedChannel.on((newSelectedChannel) => {
|
||||
if (getItem("ui:stateful:presistSelectedChannel")) {
|
||||
setItem("state:openChannelId", newSelectedChannel.id);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue