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

fix: out of bounds error when opening extension #1599

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 2 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
9 changes: 8 additions & 1 deletion packages/app/manifest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,14 @@ export default defineManifest({
},
],
host_permissions: ['<all_urls>'],
permissions: ['storage', 'alarms', 'tabs', 'clipboardWrite', 'scripting'],
permissions: [
'storage',
'alarms',
'tabs',
'system.display',
'clipboardWrite',
'scripting',
],
content_security_policy: {
extension_pages: "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
},
Expand Down
109 changes: 97 additions & 12 deletions packages/app/src/systems/CRX/utils/position.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,106 @@
import { WALLET_WIDTH } from '~/config';
import { WALLET_HEIGHT, WALLET_WIDTH } from '~/config';

export async function getPopUpPosition() {
let left = 0;
let top = 0;

try {
const {
top: windowTop = 0,
left: windowLeft = 0,
width: windowWidth = 0,
} = await chrome.windows.getLastFocused();
top = windowTop;
left = windowLeft + (windowWidth - WALLET_WIDTH);
} catch (_) {
const { screenX, screenY, outerWidth } = window;
top = Math.max(screenY, 0);
left = Math.max(screenX + (outerWidth - WALLET_WIDTH), 0);
// Get information about all connected displays
const displays = await chrome.system.display.getInfo();

// Assume primary display is the first one marked as primary
const primaryDisplay =
displays.find((display) => display.isPrimary) || displays[0];

if (!primaryDisplay) {
throw new Error('No displays found');
}

const { bounds } = primaryDisplay;
const screenWidth = bounds.width;
const screenHeight = bounds.height;

// Attempt to position at top-right Corner
left = bounds.left + screenWidth - WALLET_WIDTH;
top = bounds.top;

// Ensure at least 50% within bounds
const isTopRightValid =
left + WALLET_WIDTH * 0.5 >= bounds.left &&
top + WALLET_HEIGHT * 0.5 >= bounds.top &&
left <= bounds.left + screenWidth - WALLET_WIDTH * 0.5 &&
top <= bounds.top + screenHeight - WALLET_HEIGHT * 0.5;

if (!isTopRightValid) {
// Fallback to centered position
left = bounds.left + (screenWidth - WALLET_WIDTH) / 2;
top = bounds.top + (screenHeight - WALLET_HEIGHT) / 2;
}

// **Final adjustment to ensure full isibility
left = Math.max(
bounds.left,
Math.min(left, bounds.left + screenWidth - WALLET_WIDTH)
);
top = Math.max(
bounds.top,
Math.min(top, bounds.top + screenHeight - WALLET_HEIGHT)
);
} catch (error) {
console.error('Failed to get display info:', error);
try {
const focusedWindow = await chrome.windows.getLastFocused();
const {
left: windowLeft = 0,
top: windowTop = 0,
width: windowWidth = 0,
} = focusedWindow;

// Attempt top-Right relative to focused window
left = windowLeft + windowWidth - WALLET_WIDTH;
top = windowTop;

// ensure at least 50% within bounds**
const { width: screenWidth, height: screenHeight } =
await getPrimaryDisplaySize();
const isTopRightValid =
left + WALLET_WIDTH * 0.5 >= 0 &&
top + WALLET_HEIGHT * 0.5 >= 0 &&
left <= screenWidth - WALLET_WIDTH * 0.5 &&
top <= screenHeight - WALLET_HEIGHT * 0.5;

if (!isTopRightValid) {
// fallback to centered position**
left = (screenWidth - WALLET_WIDTH) / 2;
top = (screenHeight - WALLET_HEIGHT) / 2;
}

// final adjustment
left = Math.max(0, Math.min(left, screenWidth - WALLET_WIDTH));
top = Math.max(0, Math.min(top, screenHeight - WALLET_HEIGHT));
} catch (fallbackError) {
console.error('Failed to get focused window:', fallbackError);
// bsolute fallback to top-left corner
left = 100;
top = 100;
}
}

return { left, top };
}

// Helper function to get primary display size
async function getPrimaryDisplaySize() {
const displays = await chrome.system.display.getInfo();
const primaryDisplay =
displays.find((display) => display.isPrimary) || displays[0];

if (!primaryDisplay) {
throw new Error('No displays found');
}

return {
width: primaryDisplay.bounds.width,
height: primaryDisplay.bounds.height,
};
}
Loading