aboutsummaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
authorCynthia Foxwell <gamers@riseup.net>2022-10-21 16:17:18 -0600
committerGitHub <noreply@github.com>2022-10-22 00:17:18 +0200
commite2b622c76bd3f25f674c4c3ff899bef756cdf6ca (patch)
treeeccb4c0dcb7cf54f3f66504e308a45b217f5aecf /src/api
parent4b1e96b76ee4eea16fcb3b5cae74e173541b3c74 (diff)
downloadVencord-e2b622c76bd3f25f674c4c3ff899bef756cdf6ca.tar.gz
Vencord-e2b622c76bd3f25f674c4c3ff899bef756cdf6ca.tar.bz2
Vencord-e2b622c76bd3f25f674c4c3ff899bef756cdf6ca.zip
feat(api): Message Accessories API (#131)
Diffstat (limited to 'src/api')
-rw-r--r--src/api/MessageAccessories.ts41
-rw-r--r--src/api/index.ts14
2 files changed, 48 insertions, 7 deletions
diff --git a/src/api/MessageAccessories.ts b/src/api/MessageAccessories.ts
new file mode 100644
index 0000000..3a46828
--- /dev/null
+++ b/src/api/MessageAccessories.ts
@@ -0,0 +1,41 @@
+export type AccessoryCallback = (props: Record<string, any>) => JSX.Element;
+export type Accessory = {
+ callback: AccessoryCallback;
+ position?: number;
+};
+
+export const accessories = new Map<String, Accessory>();
+
+export function addAccessory(
+ identifier: string,
+ callback: AccessoryCallback,
+ position?: number
+) {
+ accessories.set(identifier, {
+ callback,
+ position,
+ });
+}
+
+export function removeAccessory(identifier: string) {
+ accessories.delete(identifier);
+}
+
+export function _modifyAccessories(
+ elements: JSX.Element[],
+ props: Record<string, any>
+) {
+ for (const accessory of accessories.values()) {
+ elements.splice(
+ accessory.position != null
+ ? accessory.position < 0
+ ? elements.length + accessory.position
+ : accessory.position
+ : elements.length,
+ 0,
+ accessory.callback(props)
+ );
+ }
+
+ return elements;
+}
diff --git a/src/api/index.ts b/src/api/index.ts
index 2ee5883..a80ea3f 100644
--- a/src/api/index.ts
+++ b/src/api/index.ts
@@ -6,6 +6,7 @@ import * as $MessageEventsAPI from "./MessageEvents";
import * as $Notices from "./Notices";
import * as $Commands from "./Commands";
import * as $DataStore from "./DataStore";
+import * as $MessageAccessories from "./MessageAccessories";
/**
* An API allowing you to listen to Message Clicks or run your own logic
@@ -36,12 +37,11 @@ const Commands = $Commands;
*
* This is actually just idb-keyval, so if you're familiar with that, you're golden!
* @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm#supported_types}
-*/
+ */
const DataStore = $DataStore;
+/**
+ * An API allowing you to add custom components as message accessories
+ */
+const MessageAccessories = $MessageAccessories;
-export {
- DataStore,
- MessageEvents,
- Notices,
- Commands
-};
+export { DataStore, MessageAccessories, MessageEvents, Notices, Commands };