Grabbed dndbeyond's source code

```
~/go/bin/sourcemapper -output ddb -jsurl https://media.dndbeyond.com/character-app/static/js/main.90aa78c5.js
```
This commit is contained in:
2025-05-28 11:50:03 -07:00
commit 8df9031d27
3592 changed files with 319051 additions and 0 deletions
@@ -0,0 +1,13 @@
import * as messageTypes from "./messageTypes";
import { ShowCharacterSheetMessage } from "./typings";
export function createShowCharacterSheetMessage(
characterId: number
): ShowCharacterSheetMessage {
return {
type: messageTypes.SHOW_CHARACTER_SHEET,
payload: {
characterId,
},
};
}
@@ -0,0 +1 @@
export const SHOW_CHARACTER_SHEET = "show-character-sheet";
@@ -0,0 +1,19 @@
import { MobileMessage } from "./typings";
/**
*
* @param message
*/
export function sendMessage(message: MobileMessage): void {
if ((window as any)?.webkit?.messageHandlers?.mobileApp?.postMessage) {
// This should not be stringify'd because iOS is fine with objects
// https://github.com/DnDBeyond/ddb-character-tools-client/pull/306
(window as any).webkit.messageHandlers.mobileApp.postMessage(message);
return;
}
if ((window as any)?.mobileApp?.postMessage) {
(window as any).mobileApp.postMessage(JSON.stringify(message));
return;
}
}