-
-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add
postComposerActionMessage
helper
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
export type ComposerActionMessage = { | ||
type: 'createCast' | ||
data: { | ||
cast: { | ||
parent?: string | undefined | ||
text: string | ||
embeds: string[] | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* Posts Composer Action Message to `window.parent`. | ||
*/ | ||
export function postComposerActionMessage(message: ComposerActionMessage) { | ||
if (typeof window === 'undefined') | ||
throw new Error( | ||
'`postComposerActionMessage` must be called in the Client Component.', | ||
) | ||
|
||
window.parent.postMessage(message, '*') | ||
} | ||
|
||
/** | ||
* Posts Composer Create Cast Action Message to `window.parent`. | ||
* | ||
* This is a convinience method and it calls `postComposerActionMessage` under the hood. | ||
*/ | ||
export function postComposerCreateCastActionMessage( | ||
message: ComposerActionMessage['data']['cast'], | ||
) { | ||
return postComposerActionMessage({ | ||
type: 'createCast', | ||
data: { | ||
cast: message, | ||
}, | ||
}) | ||
} |