diff --git a/src/components/common/messaging/Message.tsx b/src/components/common/messaging/Message.tsx
index 095db5da..c2f5df74 100644
--- a/src/components/common/messaging/Message.tsx
+++ b/src/components/common/messaging/Message.tsx
@@ -24,6 +24,15 @@ import MessageBase, {
import Attachment from "./attachments/Attachment";
import { MessageReply } from "./attachments/MessageReply";
import Embed from "./embed/Embed";
+import EmbedInvite from "./embed/EmbedInvite";
+
+const INVITE_PATHS = [
+ location.hostname + "/invite",
+ "app.revolt.chat/invite",
+ "nightly.revolt.chat/invite",
+ "local.revolt.chat/invite",
+ "rvlt.gg"
+]
interface Props {
attachContext?: boolean;
@@ -142,6 +151,28 @@ const Message = observer(
)}
{replacement ?? }
+ {(() => {
+ let isInvite = false;
+ INVITE_PATHS.forEach(path => {
+ if (content.includes(path)) {
+ isInvite = true;
+ }
+ })
+ if (isInvite) {
+ const inviteRegex = new RegExp("(?:" + INVITE_PATHS.map((path, index) => path.split(".").join("\\.") + (index !== INVITE_PATHS.length - 1 ? "|" : "")).join("") + ")/([A-Za-z0-9]*)", "g");
+ if (inviteRegex.test(content)) {
+ let results: string[] = [];
+ let match: RegExpExecArray | null;
+ inviteRegex.lastIndex = 0;
+ while ((match = inviteRegex.exec(content)) !== null) {
+ if (!results.includes(match[match.length - 1])) {
+ results.push(match[match.length - 1]);
+ }
+ }
+ return results.map(code => );
+ }
+ }
+ })()}
{queued?.error && (
)}
diff --git a/src/components/common/messaging/embed/EmbedInvite.tsx b/src/components/common/messaging/embed/EmbedInvite.tsx
new file mode 100644
index 00000000..8a1ee19c
--- /dev/null
+++ b/src/components/common/messaging/embed/EmbedInvite.tsx
@@ -0,0 +1,161 @@
+import styled from "styled-components";
+
+import { autorun } from "mobx";
+import { useHistory } from "react-router-dom";
+import { RetrievedInvite } from "revolt-api/types/Invites";
+
+import { useContext, useEffect, useState } from "preact/hooks";
+
+import { defer } from "../../../../lib/defer";
+
+import { dispatch } from "../../../../redux";
+
+import { useClient } from "../../../../context/revoltjs/RevoltClient";
+
+import {
+ AppContext,
+ ClientStatus,
+ StatusContext,
+} from "../../../../context/revoltjs/RevoltClient";
+import { takeError } from "../../../../context/revoltjs/util";
+
+import ServerIcon from "../../../../components/common/ServerIcon";
+import Button from "../../../../components/ui/Button";
+import Overline from "../../../ui/Overline";
+import Preloader from "../../../ui/Preloader";
+
+
+const EmbedInviteBase = styled.div`
+ width: 400px;
+ height: 80px;
+ background-color: var(--secondary-background);
+ border-radius: var(--border-radius);
+ display: flex;
+ align-items: center;
+ padding: 0 12px;
+ margin-top: 2px;
+`;
+const EmbedInviteDetails = styled.div`
+ flex-grow: 1;
+ padding-left: 12px;
+`;
+const EmbedInviteName = styled.div`
+ font-weight: bold;
+`;
+const EmbedInviteMemberCount = styled.div`
+ font-size: 0.8em;
+`;
+
+type Props = {
+ code: string
+}
+
+export default function EmbedInvite(props: Props) {
+ const history = useHistory();
+ const client = useContext(AppContext);
+ const status = useContext(StatusContext);
+ const code = props.code;
+ const [processing, setProcessing] = useState(false);
+ const [error, setError] = useState(undefined);
+ const [invite, setInvite] = useState(
+ undefined,
+ );
+
+ useEffect(() => {
+ if (
+ typeof invite === "undefined" &&
+ (status === ClientStatus.ONLINE || status === ClientStatus.READY)
+ ) {
+ client
+ .fetchInvite(code)
+ .then((data) => setInvite(data))
+ .catch((err) => setError(takeError(err)));
+ }
+ }, [client, code, invite, status]);
+
+ if (typeof invite === "undefined") {
+ return error ? (
+
+
+
+
+ Invalid invite!
+
+
+
+ ) : (
+
+
+
+ )
+ }
+
+ return
+
+
+
+ {invite.server_name}
+
+
+ {invite.member_count} members
+
+
+ {processing ? (
+
+ ) : (
+
+ )}
+
+}