mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -05:00
Add queued messages back.
Fix various code issues. i18n invite menu.
This commit is contained in:
parent
305243ab43
commit
719e5b4dd8
17 changed files with 83 additions and 74 deletions
2
external/lang
vendored
2
external/lang
vendored
|
@ -1 +1 @@
|
||||||
Subproject commit eb880a90254df406b25caf6b969ed3aee3142f6c
|
Subproject commit 0f98b07eb411ec5a9207536f6adc5aa8055e755e
|
|
@ -97,7 +97,7 @@
|
||||||
"react-router-dom": "^5.2.0",
|
"react-router-dom": "^5.2.0",
|
||||||
"react-scroll": "^1.8.2",
|
"react-scroll": "^1.8.2",
|
||||||
"redux": "^4.1.0",
|
"redux": "^4.1.0",
|
||||||
"revolt.js": "5.0.0-alpha.11",
|
"revolt.js": "5.0.0-alpha.12",
|
||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
"sass": "^1.35.1",
|
"sass": "^1.35.1",
|
||||||
"shade-blend-color": "^1.0.0",
|
"shade-blend-color": "^1.0.0",
|
||||||
|
|
|
@ -105,7 +105,7 @@ export function useAutoComplete(
|
||||||
const regex = new RegExp(search, "i");
|
const regex = new RegExp(search, "i");
|
||||||
|
|
||||||
if (type === "emoji") {
|
if (type === "emoji") {
|
||||||
// ! FIXME: we should convert it to a Binary Search Tree and use that
|
// ! TODO: we should convert it to a Binary Search Tree and use that
|
||||||
const matches = Object.keys(emojiDictionary)
|
const matches = Object.keys(emojiDictionary)
|
||||||
.filter((emoji: string) => emoji.match(regex))
|
.filter((emoji: string) => emoji.match(regex))
|
||||||
.splice(0, 5);
|
.splice(0, 5);
|
||||||
|
|
|
@ -50,7 +50,7 @@ export default observer(
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
// ! fixme: replace fallback with <picture /> + <source />
|
// ! TODO: replace fallback with <picture /> + <source />
|
||||||
<ImageIconBase
|
<ImageIconBase
|
||||||
{...imgProps}
|
{...imgProps}
|
||||||
width={size}
|
width={size}
|
||||||
|
|
|
@ -54,19 +54,19 @@ const Message = observer(
|
||||||
const head =
|
const head =
|
||||||
preferHead || (message.reply_ids && message.reply_ids.length > 0);
|
preferHead || (message.reply_ids && message.reply_ids.length > 0);
|
||||||
|
|
||||||
// ! FIXME: tell fatal to make this type generic
|
// ! TODO: tell fatal to make this type generic
|
||||||
// bree: Fatal please...
|
// bree: Fatal please...
|
||||||
const userContext = attachContext
|
const userContext = attachContext
|
||||||
? (attachContextMenu("Menu", {
|
? (attachContextMenu("Menu", {
|
||||||
user: message.author,
|
user: message.author_id,
|
||||||
contextualChannel: message.channel,
|
contextualChannel: message.channel_id,
|
||||||
}) as any)
|
}) as any)
|
||||||
: undefined;
|
: undefined;
|
||||||
|
|
||||||
const openProfile = () =>
|
const openProfile = () =>
|
||||||
openScreen({ id: "profile", user_id: message.author_id });
|
openScreen({ id: "profile", user_id: message.author_id });
|
||||||
|
|
||||||
// ! FIXME: animate on hover
|
// ! FIXME(?): animate on hover
|
||||||
const [animate, setAnimate] = useState(false);
|
const [animate, setAnimate] = useState(false);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -96,7 +96,7 @@ const Message = observer(
|
||||||
attachContext
|
attachContext
|
||||||
? attachContextMenu("Menu", {
|
? attachContextMenu("Menu", {
|
||||||
message,
|
message,
|
||||||
contextualChannel: message.channel,
|
contextualChannel: message.channel_id,
|
||||||
queued,
|
queued,
|
||||||
})
|
})
|
||||||
: undefined
|
: undefined
|
||||||
|
|
|
@ -191,8 +191,7 @@ export default function MessageBox({ channel }: Props) {
|
||||||
playSound("outbound");
|
playSound("outbound");
|
||||||
|
|
||||||
const nonce = ulid();
|
const nonce = ulid();
|
||||||
// ! FIXME: queued
|
dispatch({
|
||||||
/*dispatch({
|
|
||||||
type: "QUEUE_ADD",
|
type: "QUEUE_ADD",
|
||||||
nonce,
|
nonce,
|
||||||
channel: channel._id,
|
channel: channel._id,
|
||||||
|
@ -204,7 +203,7 @@ export default function MessageBox({ channel }: Props) {
|
||||||
content,
|
content,
|
||||||
replies,
|
replies,
|
||||||
},
|
},
|
||||||
});*/
|
});
|
||||||
|
|
||||||
defer(() =>
|
defer(() =>
|
||||||
SingletonMessageRenderer.jumpToBottom(
|
SingletonMessageRenderer.jumpToBottom(
|
||||||
|
|
|
@ -136,7 +136,7 @@ export const ChannelButton = observer((props: ChannelProps) => {
|
||||||
{...divProps}
|
{...divProps}
|
||||||
data-active={active}
|
data-active={active}
|
||||||
data-alert={typeof alert === "string"}
|
data-alert={typeof alert === "string"}
|
||||||
aria-label={{}} /*FIXME: ADD ARIA LABEL*/
|
aria-label={channel.name}
|
||||||
className={classNames(styles.item, { [styles.compact]: compact })}
|
className={classNames(styles.item, { [styles.compact]: compact })}
|
||||||
onContextMenu={attachContextMenu("Menu", {
|
onContextMenu={attachContextMenu("Menu", {
|
||||||
channel: channel._id,
|
channel: channel._id,
|
||||||
|
|
|
@ -190,7 +190,7 @@ export default function Modal(props: Props) {
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!confirmationAction) return;
|
if (!confirmationAction) return;
|
||||||
|
|
||||||
// ! FIXME: this may be done better if we
|
// ! TODO: this may be done better if we
|
||||||
// ! can focus the button although that
|
// ! can focus the button although that
|
||||||
// ! doesn't seem to work...
|
// ! doesn't seem to work...
|
||||||
function keyDown(e: KeyboardEvent) {
|
function keyDown(e: KeyboardEvent) {
|
||||||
|
|
|
@ -95,7 +95,7 @@ export default function Voice({ children }: Props) {
|
||||||
return channel;
|
return channel;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ! FIXME: use configuration to check if voso is enabled
|
// ! TODO: use configuration to check if voso is enabled
|
||||||
// await client.connect("wss://voso.revolt.chat/ws");
|
// await client.connect("wss://voso.revolt.chat/ws");
|
||||||
await client.connect(
|
await client.connect(
|
||||||
"wss://voso.revolt.chat/ws",
|
"wss://voso.revolt.chat/ws",
|
||||||
|
@ -138,9 +138,9 @@ export default function Voice({ children }: Props) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case "audio": {
|
case "audio": {
|
||||||
if (client?.audioProducer !== undefined)
|
if (client?.audioProducer !== undefined)
|
||||||
return console.log("No audio producer."); // ! FIXME: let the user know
|
return console.log("No audio producer."); // ! TODO: let the user know
|
||||||
if (navigator.mediaDevices === undefined)
|
if (navigator.mediaDevices === undefined)
|
||||||
return console.log("No media devices."); // ! FIXME: let the user know
|
return console.log("No media devices."); // ! TODO: let the user know
|
||||||
const mediaStream =
|
const mediaStream =
|
||||||
await navigator.mediaDevices.getUserMedia({
|
await navigator.mediaDevices.getUserMedia({
|
||||||
audio: true,
|
audio: true,
|
||||||
|
@ -165,7 +165,7 @@ export default function Voice({ children }: Props) {
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!client?.supported()) return;
|
if (!client?.supported()) return;
|
||||||
|
|
||||||
// ! FIXME: message for fatal:
|
// ! TODO: message for fatal:
|
||||||
// ! get rid of these force updates
|
// ! get rid of these force updates
|
||||||
// ! handle it through state or smth
|
// ! handle it through state or smth
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
max-height: 360px;
|
max-height: 360px;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
|
|
||||||
// ! FIXME: very temporary code
|
|
||||||
> label {
|
> label {
|
||||||
> span {
|
> span {
|
||||||
align-items: flex-start !important;
|
align-items: flex-start !important;
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
import { autorun } from "mobx";
|
import { autorun, reaction } from "mobx";
|
||||||
import { Route, Switch, useHistory, useParams } from "react-router-dom";
|
import { Route, Switch, useHistory, useParams } from "react-router-dom";
|
||||||
import { Presence, RelationshipStatus } from "revolt-api/types/Users";
|
import { Presence, RelationshipStatus } from "revolt-api/types/Users";
|
||||||
import { SYSTEM_USER_ID } from "revolt.js";
|
import { SYSTEM_USER_ID } from "revolt.js";
|
||||||
import { Message } from "revolt.js/dist/maps/Messages";
|
import { Message } from "revolt.js/dist/maps/Messages";
|
||||||
|
import { User } from "revolt.js/dist/maps/Users";
|
||||||
import { decodeTime } from "ulid";
|
import { decodeTime } from "ulid";
|
||||||
|
|
||||||
import { useContext, useEffect } from "preact/hooks";
|
import { useContext, useEffect } from "preact/hooks";
|
||||||
|
@ -206,19 +207,18 @@ function Notifier({ options, notifs }: Props) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*async function relationship(user: User, property: string) {
|
async function relationship(user: User) {
|
||||||
if (client.user?.status?.presence === Users.Presence.Busy) return;
|
if (client.user?.status?.presence === Presence.Busy) return;
|
||||||
if (property !== "relationship") return;
|
|
||||||
if (!showNotification) return;
|
if (!showNotification) return;
|
||||||
|
|
||||||
let event;
|
let event;
|
||||||
switch (user.relationship) {
|
switch (user.relationship) {
|
||||||
case Users.Relationship.Incoming:
|
case RelationshipStatus.Incoming:
|
||||||
event = translate("notifications.sent_request", {
|
event = translate("notifications.sent_request", {
|
||||||
person: user.username,
|
person: user.username,
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
case Users.Relationship.Friend:
|
case RelationshipStatus.Friend:
|
||||||
event = translate("notifications.now_friends", {
|
event = translate("notifications.now_friends", {
|
||||||
person: user.username,
|
person: user.username,
|
||||||
});
|
});
|
||||||
|
@ -236,17 +236,15 @@ function Notifier({ options, notifs }: Props) {
|
||||||
notif?.addEventListener("click", () => {
|
notif?.addEventListener("click", () => {
|
||||||
history.push(`/friends`);
|
history.push(`/friends`);
|
||||||
});
|
});
|
||||||
}*/
|
}
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
// ! FIXME: need event from client about relationship
|
|
||||||
|
|
||||||
client.addListener("message", message);
|
client.addListener("message", message);
|
||||||
// client.users.addListener("mutation", relationship);
|
client.addListener("user/relationship", relationship);
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
client.removeListener("message", message);
|
client.removeListener("message", message);
|
||||||
// client.users.removeListener("mutation", relationship);
|
client.removeListener("user/relationship", relationship);
|
||||||
};
|
};
|
||||||
}, [client, playSound, guild_id, channel_id, showNotification, notifs]);
|
}, [client, playSound, guild_id, channel_id, showNotification, notifs]);
|
||||||
|
|
||||||
|
|
|
@ -782,11 +782,15 @@ function ContextMenus(props: Props) {
|
||||||
break;
|
break;
|
||||||
case "TextChannel":
|
case "TextChannel":
|
||||||
case "VoiceChannel":
|
case "VoiceChannel":
|
||||||
// ! FIXME: add permission for invites
|
if (
|
||||||
|
channelPermissions &
|
||||||
|
ChannelPermission.InviteOthers
|
||||||
|
) {
|
||||||
generateAction({
|
generateAction({
|
||||||
action: "create_invite",
|
action: "create_invite",
|
||||||
target: channel,
|
target: channel,
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
serverPermissions &
|
serverPermissions &
|
||||||
|
|
|
@ -2,6 +2,7 @@ import { X } from "@styled-icons/boxicons-regular";
|
||||||
import { RelationshipStatus } from "revolt-api/types/Users";
|
import { RelationshipStatus } from "revolt-api/types/Users";
|
||||||
import { SYSTEM_USER_ID } from "revolt.js";
|
import { SYSTEM_USER_ID } from "revolt.js";
|
||||||
import { Message as MessageObject } from "revolt.js/dist/maps/Messages";
|
import { Message as MessageObject } from "revolt.js/dist/maps/Messages";
|
||||||
|
import { Message as MessageI } from "revolt.js/dist/maps/Messages";
|
||||||
import styled from "styled-components";
|
import styled from "styled-components";
|
||||||
import { decodeTime } from "ulid";
|
import { decodeTime } from "ulid";
|
||||||
|
|
||||||
|
@ -16,7 +17,7 @@ import { connectState } from "../../../redux/connector";
|
||||||
import { QueuedMessage } from "../../../redux/reducers/queue";
|
import { QueuedMessage } from "../../../redux/reducers/queue";
|
||||||
|
|
||||||
import RequiresOnline from "../../../context/revoltjs/RequiresOnline";
|
import RequiresOnline from "../../../context/revoltjs/RequiresOnline";
|
||||||
import { AppContext } from "../../../context/revoltjs/RevoltClient";
|
import { AppContext, useClient } from "../../../context/revoltjs/RevoltClient";
|
||||||
|
|
||||||
import Message from "../../../components/common/messaging/Message";
|
import Message from "../../../components/common/messaging/Message";
|
||||||
import { SystemMessage } from "../../../components/common/messaging/SystemMessage";
|
import { SystemMessage } from "../../../components/common/messaging/SystemMessage";
|
||||||
|
@ -48,7 +49,7 @@ const BlockedMessage = styled.div`
|
||||||
function MessageRenderer({ id, state, queue, highlight }: Props) {
|
function MessageRenderer({ id, state, queue, highlight }: Props) {
|
||||||
if (state.type !== "RENDER") return null;
|
if (state.type !== "RENDER") return null;
|
||||||
|
|
||||||
const client = useContext(AppContext);
|
const client = useClient();
|
||||||
const userId = client.user!._id;
|
const userId = client.user!._id;
|
||||||
|
|
||||||
const [editing, setEditing] = useState<string | undefined>(undefined);
|
const [editing, setEditing] = useState<string | undefined>(undefined);
|
||||||
|
@ -148,7 +149,6 @@ function MessageRenderer({ id, state, queue, highlight }: Props) {
|
||||||
/>,
|
/>,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
// ! FIXME: temp solution
|
|
||||||
if (message.author?.relationship === RelationshipStatus.Blocked) {
|
if (message.author?.relationship === RelationshipStatus.Blocked) {
|
||||||
blocked++;
|
blocked++;
|
||||||
} else {
|
} else {
|
||||||
|
@ -190,23 +190,24 @@ function MessageRenderer({ id, state, queue, highlight }: Props) {
|
||||||
|
|
||||||
previous = {
|
previous = {
|
||||||
_id: msg.id,
|
_id: msg.id,
|
||||||
data: { author: userId! },
|
author_id: userId!,
|
||||||
} as any;
|
} as any;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ! FIXME: add queued messages back
|
render.push(
|
||||||
/* render.push(
|
|
||||||
<Message
|
<Message
|
||||||
message={{
|
message={
|
||||||
|
new MessageI(client, {
|
||||||
...msg.data,
|
...msg.data,
|
||||||
replies: msg.data.replies.map((x) => x.id),
|
replies: msg.data.replies.map((x) => x.id),
|
||||||
}}
|
})
|
||||||
|
}
|
||||||
key={msg.id}
|
key={msg.id}
|
||||||
queued={msg}
|
queued={msg}
|
||||||
head={head}
|
head={head}
|
||||||
attachContext
|
attachContext
|
||||||
/>,
|
/>,
|
||||||
); */
|
);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
render.push(
|
render.push(
|
||||||
|
|
|
@ -4,9 +4,11 @@ import { useHistory, useParams } from "react-router-dom";
|
||||||
import { RetrievedInvite } from "revolt-api/types/Invites";
|
import { RetrievedInvite } from "revolt-api/types/Invites";
|
||||||
|
|
||||||
import styles from "./Invite.module.scss";
|
import styles from "./Invite.module.scss";
|
||||||
|
import { Text } from "preact-i18n";
|
||||||
import { useContext, useEffect, useState } from "preact/hooks";
|
import { useContext, useEffect, useState } from "preact/hooks";
|
||||||
|
|
||||||
import { defer } from "../../lib/defer";
|
import { defer } from "../../lib/defer";
|
||||||
|
import { TextReact } from "../../lib/i18n";
|
||||||
|
|
||||||
import RequiresOnline from "../../context/revoltjs/RequiresOnline";
|
import RequiresOnline from "../../context/revoltjs/RequiresOnline";
|
||||||
import {
|
import {
|
||||||
|
@ -90,12 +92,20 @@ export default function Invite() {
|
||||||
<h1>{invite.server_name}</h1>
|
<h1>{invite.server_name}</h1>
|
||||||
<h2>#{invite.channel_name}</h2>
|
<h2>#{invite.channel_name}</h2>
|
||||||
<h3>
|
<h3>
|
||||||
Invited by{" "}
|
<TextReact
|
||||||
|
id="app.special.invite.invited_by"
|
||||||
|
fields={{
|
||||||
|
user: (
|
||||||
|
<>
|
||||||
<UserIcon
|
<UserIcon
|
||||||
size={24}
|
size={24}
|
||||||
attachment={invite.user_avatar}
|
attachment={invite.user_avatar}
|
||||||
/>{" "}
|
/>{" "}
|
||||||
{invite.user_name}
|
{invite.user_name}
|
||||||
|
</>
|
||||||
|
),
|
||||||
|
}}
|
||||||
|
/>
|
||||||
</h3>
|
</h3>
|
||||||
<Overline type="error" error={error} />
|
<Overline type="error" error={error} />
|
||||||
<Button
|
<Button
|
||||||
|
@ -140,9 +150,11 @@ export default function Invite() {
|
||||||
setProcessing(false);
|
setProcessing(false);
|
||||||
}
|
}
|
||||||
}}>
|
}}>
|
||||||
{status === ClientStatus.READY
|
{status === ClientStatus.READY ? (
|
||||||
? "Login to Revolt"
|
<Text id="app.special.invite.login" />
|
||||||
: "Accept Invite"}
|
) : (
|
||||||
|
<Text id="app.special.invite.accept" />
|
||||||
|
)}
|
||||||
</Button>
|
</Button>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -1,25 +1,18 @@
|
||||||
import { observer } from "mobx-react-lite";
|
import { observer } from "mobx-react-lite";
|
||||||
import { ChannelPermission } from "revolt.js/dist/api/permissions";
|
import {
|
||||||
|
ChannelPermission,
|
||||||
|
DEFAULT_PERMISSION_DM,
|
||||||
|
} from "revolt.js/dist/api/permissions";
|
||||||
import { Channel } from "revolt.js/dist/maps/Channels";
|
import { Channel } from "revolt.js/dist/maps/Channels";
|
||||||
|
|
||||||
import { useContext, useEffect, useState } from "preact/hooks";
|
import { useEffect, useState } from "preact/hooks";
|
||||||
|
|
||||||
import { AppContext, useClient } from "../../../context/revoltjs/RevoltClient";
|
import { useClient } from "../../../context/revoltjs/RevoltClient";
|
||||||
|
|
||||||
import Button from "../../../components/ui/Button";
|
import Button from "../../../components/ui/Button";
|
||||||
import Checkbox from "../../../components/ui/Checkbox";
|
import Checkbox from "../../../components/ui/Checkbox";
|
||||||
import Tip from "../../../components/ui/Tip";
|
import Tip from "../../../components/ui/Tip";
|
||||||
|
|
||||||
// ! FIXME: export from revolt.js
|
|
||||||
const DEFAULT_PERMISSION_DM =
|
|
||||||
ChannelPermission.View +
|
|
||||||
ChannelPermission.SendMessage +
|
|
||||||
ChannelPermission.ManageChannel +
|
|
||||||
ChannelPermission.VoiceCall +
|
|
||||||
ChannelPermission.InviteOthers +
|
|
||||||
ChannelPermission.EmbedLinks +
|
|
||||||
ChannelPermission.UploadFiles;
|
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
channel: Channel;
|
channel: Channel;
|
||||||
}
|
}
|
||||||
|
@ -27,7 +20,6 @@ interface Props {
|
||||||
// ! FIXME: bad code :)
|
// ! FIXME: bad code :)
|
||||||
export default observer(({ channel }: Props) => {
|
export default observer(({ channel }: Props) => {
|
||||||
const [selected, setSelected] = useState("default");
|
const [selected, setSelected] = useState("default");
|
||||||
const client = useClient();
|
|
||||||
|
|
||||||
type R = { name: string; permissions: number };
|
type R = { name: string; permissions: number };
|
||||||
const roles: { [key: string]: R } = {};
|
const roles: { [key: string]: R } = {};
|
||||||
|
|
|
@ -9,6 +9,10 @@ export interface Reply {
|
||||||
}
|
}
|
||||||
|
|
||||||
export type QueuedMessageData = {
|
export type QueuedMessageData = {
|
||||||
|
_id: string;
|
||||||
|
author: string;
|
||||||
|
channel: string;
|
||||||
|
|
||||||
content: string;
|
content: string;
|
||||||
replies: Reply[];
|
replies: Reply[];
|
||||||
};
|
};
|
||||||
|
|
|
@ -3570,10 +3570,10 @@ revolt-api@0.5.1-alpha.10-patch.0:
|
||||||
resolved "https://registry.yarnpkg.com/revolt-api/-/revolt-api-0.5.1-alpha.10-patch.0.tgz#97d31bec7dfa4573567097443acb059c4feaac20"
|
resolved "https://registry.yarnpkg.com/revolt-api/-/revolt-api-0.5.1-alpha.10-patch.0.tgz#97d31bec7dfa4573567097443acb059c4feaac20"
|
||||||
integrity sha512-UyM890HkGlYNQOxpHuEpUsJHLt8Ujnjg9/zPEDGpbvS4iy0jmHX23Hh8tOCfb/ewxbNrtT3G1HpSWKOneW/vYg==
|
integrity sha512-UyM890HkGlYNQOxpHuEpUsJHLt8Ujnjg9/zPEDGpbvS4iy0jmHX23Hh8tOCfb/ewxbNrtT3G1HpSWKOneW/vYg==
|
||||||
|
|
||||||
revolt.js@5.0.0-alpha.11:
|
revolt.js@5.0.0-alpha.12:
|
||||||
version "5.0.0-alpha.11"
|
version "5.0.0-alpha.12"
|
||||||
resolved "https://registry.yarnpkg.com/revolt.js/-/revolt.js-5.0.0-alpha.11.tgz#af131150ce37a39b979501c730ec2bee5a4e38a1"
|
resolved "https://registry.yarnpkg.com/revolt.js/-/revolt.js-5.0.0-alpha.12.tgz#06777f74f6a79161b18e02938a8d60d465395066"
|
||||||
integrity sha512-aOD8IV2DM9Ebq15FVQ2GJDGBaICppk+jP06dW0KlrDeVoE3Hra5CRLHSIRtp2mJN/vh1cH+9eA78jssAlAgwAw==
|
integrity sha512-QqgawsSjrFTKhMA5JBKii6MgOJ4VO2u1GBmjTiKzPR2krnoWHdPSbD7VvD2scMGMPXIaIxU3zA++tyN8mfzIFg==
|
||||||
dependencies:
|
dependencies:
|
||||||
axios "^0.19.2"
|
axios "^0.19.2"
|
||||||
eventemitter3 "^4.0.7"
|
eventemitter3 "^4.0.7"
|
||||||
|
|
Loading…
Reference in a new issue