Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Beta trpc link #165

Open
wants to merge 5 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
branches:
- develop
- main
- beta-braavos-mobile
- beta-trpc-link
- hotfix\/v[0-9]+.[0-9]+.[0-9]+

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"prerelease": true
},
{
"name": "beta-braavos-mobile",
"name": "beta-trpc-link",
"prerelease": true
}
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "starknetkit",
"version": "2.6.2",
"version": "2.6.3-beta-trpc-link.1",
"repository": "github:argentlabs/starknetkit",
"private": false,
"browser": {
Expand Down
78 changes: 57 additions & 21 deletions src/connectors/webwallet/helpers/trpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,36 @@ export const setPopupOptions = ({
popupParams = `width=${width},height=${height},top=${y},left=${x},toolbar=no,menubar=no,scrollbars=no,location=no,status=no,popup=1`
}

const PopupManager = {
currentPopup: null as Window | null,

createPopup(url: string, name: string, params: string): Window {
// Close any existing popup
if (this.currentPopup && !this.currentPopup.closed) {
this.currentPopup.close()
}

// Create popup immediately
const popup = window.open(url, name, params)

if (!popup) {
throw new Error("Popup blocked by browser")
}

this.currentPopup = popup

// Monitor popup state
const checkClosed = setInterval(() => {
if (popup.closed) {
clearInterval(checkClosed)
this.currentPopup = null
}
}, 500)

return popup
},
}

// TODO: abstract AppRouter in order to have one single source of truth
// At the moment, this is needed
const appRouter = t.router({
Expand Down Expand Up @@ -195,29 +225,35 @@ export const trpcProxyClient = ({
false: popupLink({
listenWindow: window,
createPopup: () => {
let popup: Window | null = null
const webwalletBtn = document.createElement("button")
webwalletBtn.style.display = "none"
webwalletBtn.addEventListener("click", () => {
popup = window.open(
`${popupOrigin}${popupLocation}`,
"popup",
popupParams,
)
})
webwalletBtn.click()

// make sure popup is defined
;(async () => {
while (!popup) {
await new Promise((resolve) => setTimeout(resolve, 100))
}
})()
try {
let popup: Window | null = null
const button = document.createElement("button")
button.style.position = "fixed"
button.style.top = "-999px"
button.style.left = "-999px"
button.style.opacity = "0"
button.style.pointerEvents = "none" // prevent click event

if (!popup) {
throw new Error("Could not open popup")
button.addEventListener("click", () => {
popup = PopupManager.createPopup(
`${popupOrigin}${popupLocation}`,
"popup",
popupParams,
)
})

document.body.appendChild(button)
button.click()
button.remove()

if (!popup) {
throw new Error("Could not open popup")
}
return popup
} catch (error) {
console.error("Failed to create popup:", error)
throw error
}
return popup
},
postOrigin: "*",
}),
Expand Down