mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-15 11:46:56 +01:00
37cff405ed
* enhance(frontend): Shareページでの投稿完了時にpostMessageを発火 * Update Changelog * fix * 名前の混同をさける * 名前をわかりやすくする * watchを使わずパフォーマンス改善
25 lines
559 B
TypeScript
25 lines
559 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export const postMessageEventTypes = [
|
|
'misskey:shareForm:shareCompleted',
|
|
] as const;
|
|
|
|
export type PostMessageEventType = typeof postMessageEventTypes[number];
|
|
|
|
export type MiPostMessageEvent = {
|
|
type: PostMessageEventType;
|
|
payload?: any;
|
|
};
|
|
|
|
/**
|
|
* 親フレームにイベントを送信
|
|
*/
|
|
export function postMessageToParentWindow(type: PostMessageEventType, payload?: any): void {
|
|
window.postMessage({
|
|
type,
|
|
payload,
|
|
}, '*');
|
|
}
|