mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-31 13:29:55 +00:00
Expand the drop zone for docking the run button to be a bit more forgiving. <img width="494" height="99" alt="image" src="https://github.com/user-attachments/assets/97eb6948-211d-4ed6-b06c-d6fb57b45f0b" /> ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6193-Expand-drop-zone-for-docking-run-button-2946d73d3650816d996fdc57022161db) by [Unito](https://www.unito.io)
51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
import type { Locator, Page } from '@playwright/test'
|
|
|
|
import type { AutoQueueMode } from '../../src/stores/queueStore'
|
|
|
|
export class ComfyActionbar {
|
|
public readonly root: Locator
|
|
public readonly queueButton: ComfyQueueButton
|
|
|
|
constructor(public readonly page: Page) {
|
|
this.root = page.locator('.actionbar')
|
|
this.queueButton = new ComfyQueueButton(this)
|
|
}
|
|
|
|
async isDocked() {
|
|
const className = await this.root.getAttribute('class')
|
|
return className?.includes('static') ?? false
|
|
}
|
|
}
|
|
|
|
class ComfyQueueButton {
|
|
public readonly root: Locator
|
|
public readonly primaryButton: Locator
|
|
public readonly dropdownButton: Locator
|
|
constructor(public readonly actionbar: ComfyActionbar) {
|
|
this.root = actionbar.root.getByTestId('queue-button')
|
|
this.primaryButton = this.root.locator('.p-splitbutton-button')
|
|
this.dropdownButton = this.root.locator('.p-splitbutton-dropdown')
|
|
}
|
|
|
|
public async toggleOptions() {
|
|
await this.dropdownButton.click()
|
|
return new ComfyQueueButtonOptions(this.actionbar.page)
|
|
}
|
|
}
|
|
|
|
class ComfyQueueButtonOptions {
|
|
constructor(public readonly page: Page) {}
|
|
|
|
public async setMode(mode: AutoQueueMode) {
|
|
await this.page.evaluate((mode) => {
|
|
window['app'].extensionManager.queueSettings.mode = mode
|
|
}, mode)
|
|
}
|
|
|
|
public async getMode() {
|
|
return await this.page.evaluate(() => {
|
|
return window['app'].extensionManager.queueSettings.mode
|
|
})
|
|
}
|
|
}
|