@ce1pers/window-helpers
v1.1.8
Published
Window Web APIs helpers powered by vanilla javascript.
Downloads
4
Maintainers
Readme
@ce1pers/window-helpers
Simple web application window screen hook.
Installation
npm
npm i @ce1pers/window-helpers
yarn
yarn add @ce1pers/window-helpers
Usage
Use Popup
// Import hook.
import { useWindow } from "@ce1pers/window-helpers";
// Declare use popup hook.
type SendMessageType = "connection" | "submit";
const { open, sendMessage } = useWindow({
onMessageCallback,
});
const TARGET_URL = "http://localhost:5555";
// Open new window as popup.
open({
targetOrigin: TARGET_URL,
windowTarget: "_blank",
callback: openPopupCallback,
width: 400,
height: 400,
});
setInterval(() => {
sendMessage<SendMessageType>({
to: "targetOrigin",
type: "connection",
});
}, 1000);
function onMessageCallback(event: MessageEvent) {
if (event.origin !== TARGET_URL) return;
// Write process what execute when received message from other window.
}
function openPopupCallback() {
// Write process what you want when opened a new window.
}