Update InstantScreenshare

This commit is contained in:
thororen1234 2025-04-07 09:38:24 -04:00
parent c0b928f166
commit 2893466ba9
No known key found for this signature in database
5 changed files with 60 additions and 22 deletions

View file

@ -4,13 +4,34 @@
* SPDX-License-Identifier: GPL-3.0-or-later * SPDX-License-Identifier: GPL-3.0-or-later
*/ */
import { definePluginSettings } from "@api/Settings";
import { Devs, EquicordDevs } from "@utils/constants"; import { Devs, EquicordDevs } from "@utils/constants";
import definePlugin from "@utils/types"; import definePlugin, { OptionType } from "@utils/types";
import { findByCode, findByProps } from "@webpack"; import { findByCode, findByProps } from "@webpack";
import { ChannelStore, SelectedChannelStore, UserStore } from "@webpack/common"; import { ChannelStore, SelectedChannelStore, UserStore } from "@webpack/common";
import { VoiceState } from "@webpack/types"; import { VoiceState } from "@webpack/types";
let hasStreamed = false; const settings = definePluginSettings({
streamType: {
description: "Stream screen or window",
type: OptionType.SELECT,
options: [
{ label: "Screen", value: "screen" },
{ label: "Window", value: "window" }
],
default: "screen"
},
streamWindowKeyword: {
description: "Keyword to search for in window title",
type: OptionType.STRING,
default: "",
placeholder: "Enter keyword"
}
});
let hasStreamed;
let sources;
let source;
async function startStream() { async function startStream() {
const startStream = findByCode('type:"STREAM_START"'); const startStream = findByCode('type:"STREAM_START"');
@ -19,9 +40,18 @@ async function startStream() {
const selected = SelectedChannelStore.getVoiceChannelId(); const selected = SelectedChannelStore.getVoiceChannelId();
if (!selected) return; if (!selected) return;
const channel = ChannelStore.getChannel(selected); const channel = ChannelStore.getChannel(selected);
const sources = await getDesktopSources(mediaEngine, ["screen"], null);
if (!sources || sources.length === 0) return; if (settings.store.streamType === "screen") {
const source = sources[0]; sources = await getDesktopSources(mediaEngine, ["screen"], null);
source = sources[0];
} else if (settings.store.streamType === "window") {
const keyword = settings.store.streamWindowKeyword?.toLowerCase();
sources = await getDesktopSources(mediaEngine, ["window", "application"], null);
source = sources.find(s => s.name?.toLowerCase().includes(keyword));
}
if (!source) return;
startStream(channel.guild_id, selected, { startStream(channel.guild_id, selected, {
"pid": null, "pid": null,
"sourceId": source.id, "sourceId": source.id,
@ -34,8 +64,9 @@ async function startStream() {
export default definePlugin({ export default definePlugin({
name: "InstantScreenshare", name: "InstantScreenshare",
description: "Instantly screenshare your first screen when joining a voice channel", description: "Instantly screenshare when joining a voice channel",
authors: [Devs.HAHALOSAH, EquicordDevs.thororen], authors: [Devs.HAHALOSAH, EquicordDevs.thororen],
settings,
flux: { flux: {
async VOICE_STATE_UPDATES({ voiceStates }: { voiceStates: VoiceState[]; }) { async VOICE_STATE_UPDATES({ voiceStates }: { voiceStates: VoiceState[]; }) {
const myId = UserStore.getCurrentUser().id; const myId = UserStore.getCurrentUser().id;

View file

@ -191,6 +191,7 @@ function SeekBar() {
{msToHuman(position)} {msToHuman(position)}
</Forms.FormText> </Forms.FormText>
<Menu.MenuSliderControl <Menu.MenuSliderControl
key={position}
minValue={0} minValue={0}
maxValue={duration} maxValue={duration}
value={position} value={position}

View file

@ -99,7 +99,7 @@ export default definePlugin({
<ErrorBoundary <ErrorBoundary
fallback={() => ( fallback={() => (
<div className="vc-spotify-fallback"> <div className="vc-spotify-fallback">
<p>Failed to render Spotify Modal</p> <p>Failed to render Spotify Modal :(</p>
<p >Check the console for errors</p> <p >Check the console for errors</p>
</div> </div>
)} )}

View file

@ -1,9 +1,10 @@
#vc-spotify-player { #vc-spotify-player {
padding: 0.375rem 0.5rem; padding: 0.375rem 0.5rem;
border-bottom: 1px solid var(--background-modifier-accent); border-bottom: 1px solid var(--background-modifier-accent);
--vc-spotify-green: var(--spotify, #1db954); /* so custom themes can easily change it */ --vc-spotify-green: var(--spotify, #1db954);
/* so custom themes can easily change it */
--vc-spotify-green-90: color-mix(in hsl, var(--vc-spotify-green), transparent 90%); --vc-spotify-green-90: color-mix(in hsl, var(--vc-spotify-green), transparent 90%);
--vc-spotify-green-80: color-mix(in hsl, var(--vc-spotify-green), transparent 80%); --vc-spotify-green-80: color-mix(in hsl, var(--vc-spotify-green), transparent 80%);
} }

View file

@ -12,7 +12,8 @@
display: none; display: none;
} }
.vc-spotify-artist, .vc-spotify-album { .vc-spotify-artist,
.vc-spotify-album {
color: var(--header-primary); color: var(--header-primary);
} }
@ -67,11 +68,15 @@
border-radius: var(--radius-sm); border-radius: var(--radius-sm);
} }
.vc-spotify-repeat-context, .vc-spotify-repeat-track, .vc-spotify-shuffle-on { .vc-spotify-repeat-context,
.vc-spotify-repeat-track,
.vc-spotify-shuffle-on {
background-color: var(--vc-spotify-green-90); background-color: var(--vc-spotify-green-90);
} }
.vc-spotify-repeat-context:hover, .vc-spotify-repeat-track:hover, .vc-spotify-shuffle-on:hover { .vc-spotify-repeat-context:hover,
.vc-spotify-repeat-track:hover,
.vc-spotify-shuffle-on:hover {
background-color: var(--vc-spotify-green-80); background-color: var(--vc-spotify-green-80);
} }
} }