mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -05:00
Merge pull request #131 from ryanalexander/new-voice-interface
This commit is contained in:
commit
6e1545412b
4 changed files with 80 additions and 13 deletions
|
@ -12,8 +12,9 @@ import { AppContext, useClient } from "../../../context/revoltjs/RevoltClient";
|
||||||
|
|
||||||
import IconBase, { IconBaseProps } from "../IconBase";
|
import IconBase, { IconBaseProps } from "../IconBase";
|
||||||
import fallback from "../assets/user.png";
|
import fallback from "../assets/user.png";
|
||||||
|
import {VolumeMute} from "@styled-icons/boxicons-solid";
|
||||||
|
|
||||||
type VoiceStatus = "muted";
|
type VoiceStatus = "muted" | "deaf";
|
||||||
interface Props extends IconBaseProps<User> {
|
interface Props extends IconBaseProps<User> {
|
||||||
mask?: string;
|
mask?: string;
|
||||||
status?: boolean;
|
status?: boolean;
|
||||||
|
@ -47,7 +48,7 @@ const VoiceIndicator = styled.div<{ status: VoiceStatus }>`
|
||||||
}
|
}
|
||||||
|
|
||||||
${(props) =>
|
${(props) =>
|
||||||
props.status === "muted" &&
|
(props.status === "muted" || props.status === "deaf") &&
|
||||||
css`
|
css`
|
||||||
background: var(--error);
|
background: var(--error);
|
||||||
`}
|
`}
|
||||||
|
@ -125,7 +126,9 @@ export default observer(
|
||||||
{props.voice && (
|
{props.voice && (
|
||||||
<foreignObject x="22" y="22" width="10" height="10">
|
<foreignObject x="22" y="22" width="10" height="10">
|
||||||
<VoiceIndicator status={props.voice}>
|
<VoiceIndicator status={props.voice}>
|
||||||
{props.voice === "muted" && (
|
{props.voice === "deaf" && (
|
||||||
|
<VolumeMute size={6} />
|
||||||
|
) ||props.voice === "muted" && (
|
||||||
<MicrophoneOff size={6} />
|
<MicrophoneOff size={6} />
|
||||||
)}
|
)}
|
||||||
</VoiceIndicator>
|
</VoiceIndicator>
|
||||||
|
|
|
@ -40,6 +40,8 @@ export default class VoiceClient extends EventEmitter<VoiceEvents> {
|
||||||
sendTransport?: Transport;
|
sendTransport?: Transport;
|
||||||
recvTransport?: Transport;
|
recvTransport?: Transport;
|
||||||
|
|
||||||
|
isDeaf?: boolean;
|
||||||
|
|
||||||
userId?: string;
|
userId?: string;
|
||||||
roomId?: string;
|
roomId?: string;
|
||||||
participants: Map<string, VoiceUser>;
|
participants: Map<string, VoiceUser>;
|
||||||
|
@ -54,6 +56,8 @@ export default class VoiceClient extends EventEmitter<VoiceEvents> {
|
||||||
this.participants = new Map();
|
this.participants = new Map();
|
||||||
this.consumers = new Map();
|
this.consumers = new Map();
|
||||||
|
|
||||||
|
this.isDeaf = false;
|
||||||
|
|
||||||
this.signaling.on(
|
this.signaling.on(
|
||||||
"data",
|
"data",
|
||||||
(json) => {
|
(json) => {
|
||||||
|
|
|
@ -143,6 +143,33 @@ class VoiceStateReference {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
isDeaf() {
|
||||||
|
if(!this.client)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
return this.client.isDeaf;
|
||||||
|
}
|
||||||
|
|
||||||
|
async startDeafen() {
|
||||||
|
if(!this.client)
|
||||||
|
return console.log("No client object"); // ! TODO: let the user know
|
||||||
|
|
||||||
|
this.client.isDeaf = true;
|
||||||
|
|
||||||
|
this.client?.consumers.forEach(consumer => {
|
||||||
|
consumer.audio?.pause();
|
||||||
|
})
|
||||||
|
}
|
||||||
|
async stopDeafen() {
|
||||||
|
if(!this.client)
|
||||||
|
return console.log("No client object"); // ! TODO: let the user know
|
||||||
|
|
||||||
|
this.client.isDeaf = false;
|
||||||
|
this.client?.consumers.forEach(consumer => {
|
||||||
|
consumer.audio?.resume();
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
async startProducing(type: ProduceType) {
|
async startProducing(type: ProduceType) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case "audio": {
|
case "audio": {
|
||||||
|
|
|
@ -11,6 +11,18 @@ import { useClient } from "../../../context/revoltjs/RevoltClient";
|
||||||
|
|
||||||
import UserIcon from "../../../components/common/user/UserIcon";
|
import UserIcon from "../../../components/common/user/UserIcon";
|
||||||
import Button from "../../../components/ui/Button";
|
import Button from "../../../components/ui/Button";
|
||||||
|
import {
|
||||||
|
Megaphone,
|
||||||
|
Microphone,
|
||||||
|
MicrophoneOff,
|
||||||
|
PhoneOff,
|
||||||
|
Speaker,
|
||||||
|
VolumeFull,
|
||||||
|
VolumeMute
|
||||||
|
} from "@styled-icons/boxicons-solid";
|
||||||
|
import Tooltip from "../../../components/common/Tooltip";
|
||||||
|
import {Hashnode, Speakerdeck, Teamspeak} from "@styled-icons/simple-icons";
|
||||||
|
import VoiceClient from "../../../lib/vortex/VoiceClient";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
id: string;
|
id: string;
|
||||||
|
@ -89,7 +101,8 @@ export default observer(({ id }: Props) => {
|
||||||
target={user}
|
target={user}
|
||||||
status={false}
|
status={false}
|
||||||
voice={
|
voice={
|
||||||
voiceState.participants!.get(id)
|
client.user?._id === id && voiceState.isDeaf()?"deaf"
|
||||||
|
: voiceState.participants!.get(id)
|
||||||
?.audio
|
?.audio
|
||||||
? undefined
|
? undefined
|
||||||
: "muted"
|
: "muted"
|
||||||
|
@ -115,18 +128,38 @@ export default observer(({ id }: Props) => {
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div className="actions">
|
<div className="actions">
|
||||||
|
<Tooltip content={"Leave call"} placement={"bottom"}>
|
||||||
<Button error onClick={voiceState.disconnect}>
|
<Button error onClick={voiceState.disconnect}>
|
||||||
<Text id="app.main.channel.voice.leave" />
|
<PhoneOff width={25} />
|
||||||
</Button>
|
</Button>
|
||||||
|
</Tooltip>
|
||||||
{voiceState.isProducing("audio") ? (
|
{voiceState.isProducing("audio") ? (
|
||||||
|
<Tooltip content={"Mute microphone"} placement={"bottom"}>
|
||||||
<Button onClick={() => voiceState.stopProducing("audio")}>
|
<Button onClick={() => voiceState.stopProducing("audio")}>
|
||||||
<Text id="app.main.channel.voice.mute" />
|
<Microphone width={25} />
|
||||||
</Button>
|
</Button>
|
||||||
|
</Tooltip>
|
||||||
) : (
|
) : (
|
||||||
|
<Tooltip content={"Unmute microphone"} placement={"bottom"}>
|
||||||
<Button onClick={() => voiceState.startProducing("audio")}>
|
<Button onClick={() => voiceState.startProducing("audio")}>
|
||||||
<Text id="app.main.channel.voice.unmute" />
|
<MicrophoneOff width={25} />
|
||||||
</Button>
|
</Button>
|
||||||
|
</Tooltip>
|
||||||
)}
|
)}
|
||||||
|
{voiceState.isDeaf() ? (
|
||||||
|
<Tooltip content={"Deafen"} placement={"bottom"}>
|
||||||
|
<Button onClick={() => voiceState.stopDeafen()}>
|
||||||
|
<VolumeMute width={25} />
|
||||||
|
</Button>
|
||||||
|
</Tooltip>
|
||||||
|
): (
|
||||||
|
<Tooltip content={"Deafen"} placement={"bottom"}>
|
||||||
|
<Button onClick={() => voiceState.startDeafen()}>
|
||||||
|
<VolumeFull width={25} />
|
||||||
|
</Button>
|
||||||
|
</Tooltip>
|
||||||
|
)
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
</VoiceBase>
|
</VoiceBase>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue