feat(arRPC): update for server 2.0 (#224)
This commit is contained in:
parent
e85d763f22
commit
9240865f65
1 changed files with 18 additions and 2 deletions
|
@ -16,12 +16,24 @@
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { popNotice,showNotice } from "../api/Notices";
|
import { popNotice, showNotice } from "../api/Notices";
|
||||||
import { Link } from "../components/Link";
|
import { Link } from "../components/Link";
|
||||||
import { Devs } from "../utils/constants";
|
import { Devs } from "../utils/constants";
|
||||||
import definePlugin from "../utils/types";
|
import definePlugin from "../utils/types";
|
||||||
|
import { Webpack } from "../Vencord";
|
||||||
import { FluxDispatcher, Forms, Toasts } from "../webpack/common";
|
import { FluxDispatcher, Forms, Toasts } from "../webpack/common";
|
||||||
|
|
||||||
|
const assetManager = Webpack.mapMangledModuleLazy(
|
||||||
|
"getAssetImage: size must === [number, number] for Twitch",
|
||||||
|
{
|
||||||
|
getAsset: Webpack.filters.byCode("apply("),
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
async function lookupAsset(applicationId: string, key: string): Promise<string> {
|
||||||
|
return (await assetManager.getAsset(applicationId, [key, undefined]))[0];
|
||||||
|
}
|
||||||
|
|
||||||
let ws: WebSocket;
|
let ws: WebSocket;
|
||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "WebRichPresence (arRPC)",
|
name: "WebRichPresence (arRPC)",
|
||||||
|
@ -42,8 +54,12 @@ export default definePlugin({
|
||||||
if (ws) ws.close();
|
if (ws) ws.close();
|
||||||
ws = new WebSocket("ws://127.0.0.1:1337"); // try to open WebSocket
|
ws = new WebSocket("ws://127.0.0.1:1337"); // try to open WebSocket
|
||||||
|
|
||||||
ws.onmessage = e => { // on message, set status to data
|
ws.onmessage = async e => { // on message, set status to data
|
||||||
const data = JSON.parse(e.data);
|
const data = JSON.parse(e.data);
|
||||||
|
|
||||||
|
if (data.activity?.assets?.large_image) data.activity.assets.large_image = await lookupAsset(data.activity.application_id, data.activity.assets.large_image);
|
||||||
|
if (data.activity?.assets?.small_image) data.activity.assets.small_image = await lookupAsset(data.activity.application_id, data.activity.assets.small_image);
|
||||||
|
|
||||||
FluxDispatcher.dispatch({ type: "LOCAL_ACTIVITY_UPDATE", ...data });
|
FluxDispatcher.dispatch({ type: "LOCAL_ACTIVITY_UPDATE", ...data });
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue