-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug_layout.js
More file actions
139 lines (118 loc) · 4.29 KB
/
Copy pathdebug_layout.js
File metadata and controls
139 lines (118 loc) · 4.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
const { chromium } = require('playwright');
async function debugLayout() {
const browser = await chromium.launch({
headless: false,
args: ['--disable-web-security', '--disable-features=VizDisplayCompositor']
});
const page = await browser.newPage();
try {
// Navigate to the application
console.log('Navigating to http://localhost:3027...');
await page.goto('http://localhost:3027', { waitUntil: 'networkidle' });
// Wait for the page to load
await page.waitForTimeout(3000);
// Take initial screenshot
console.log('Taking screenshot...');
await page.screenshot({ path: 'layout_debug_screenshot.png', fullPage: true });
// Check if key elements exist
console.log('Checking for key elements...');
const appContainer = await page.$('.app-container');
const propertyPanel = await page.$('.property-panel');
const viewerPanel = await page.$('.viewer-panel');
console.log('Elements found:');
console.log('- .app-container:', !!appContainer);
console.log('- .property-panel:', !!propertyPanel);
console.log('- .viewer-panel:', !!viewerPanel);
// Get computed styles for layout containers
if (appContainer) {
const appStyles = await page.evaluate(() => {
const el = document.querySelector('.app-container');
if (!el) return null;
const styles = window.getComputedStyle(el);
return {
display: styles.display,
flexDirection: styles.flexDirection,
width: styles.width,
height: styles.height,
overflow: styles.overflow
};
});
console.log('App container styles:', appStyles);
}
if (propertyPanel) {
const propertyStyles = await page.evaluate(() => {
const el = document.querySelector('.property-panel');
if (!el) return null;
const styles = window.getComputedStyle(el);
return {
display: styles.display,
width: styles.width,
height: styles.height,
flex: styles.flex,
visibility: styles.visibility,
position: styles.position
};
});
console.log('Property panel styles:', propertyStyles);
}
if (viewerPanel) {
const viewerStyles = await page.evaluate(() => {
const el = document.querySelector('.viewer-panel');
if (!el) return null;
const styles = window.getComputedStyle(el);
return {
display: styles.display,
width: styles.width,
height: styles.height,
flex: styles.flex,
visibility: styles.visibility,
position: styles.position
};
});
console.log('Viewer panel styles:', viewerStyles);
}
// Check canvas element
const canvas = await page.$('canvas');
console.log('Canvas element found:', !!canvas);
if (canvas) {
const canvasStyles = await page.evaluate(() => {
const el = document.querySelector('canvas');
if (!el) return null;
const styles = window.getComputedStyle(el);
return {
display: styles.display,
width: styles.width,
height: styles.height,
visibility: styles.visibility
};
});
console.log('Canvas styles:', canvasStyles);
}
// Get DOM structure
const domStructure = await page.evaluate(() => {
const appContainer = document.querySelector('.app-container');
if (!appContainer) return 'No .app-container found';
function getElementInfo(el, depth = 0) {
const indent = ' '.repeat(depth);
const tag = el.tagName.toLowerCase();
const classes = el.className ? ` class="${el.className}"` : '';
const id = el.id ? ` id="${el.id}"` : '';
const styles = window.getComputedStyle(el);
const display = styles.display !== 'block' ? ` [${styles.display}]` : '';
let result = `${indent}<${tag}${id}${classes}${display}>\\n`;
for (let child of el.children) {
result += getElementInfo(child, depth + 1);
}
return result;
}
return getElementInfo(appContainer);
});
console.log('\\nDOM Structure:');
console.log(domStructure);
} catch (error) {
console.error('Error during debugging:', error);
} finally {
await browser.close();
}
}
debugLayout().catch(console.error);