Compare commits

..
Author SHA1 Message Date
Typosaurus 131f988bea ticket #44 attempt 2 2026-07-19 20:05:41 +00:00
Typosaurus 1c31c1d6a5 ticket #44 attempt 1 2026-07-19 19:47:01 +00:00
7 changed files with 10 additions and 10 deletions
File diff suppressed because one or more lines are too long
-1
View File
@@ -115,7 +115,6 @@ devii-terminal.devii-state-fullscreen .devii-window {
}
devii-terminal.devii-state-normal .devii-window {
resize: both;
}
devii-terminal.devii-state-normal .devii-titlebar {
cursor: move;
+1
View File
@@ -86,6 +86,7 @@ export class DeviiTerminal {
}
_canOpenOnGesture() {
if (this.element && this.element.state !== "closed") return false;
if (document.querySelector(".modal-overlay.visible")) return false;
if (document.querySelector(".dialog-overlay.visible")) return false;
if (document.querySelector(".context-menu.visible")) return false;
+1 -1
View File
@@ -16,7 +16,7 @@ export class MessagesLayout {
}
this.thread = document.querySelector(".messages-thread");
this.form = document.querySelector(".messages-input-area");
this.input = this.form ? this.form.querySelector('textarea[name="content"]') : null;
this.input = this.form ? this.form.querySelector('input[name="content"]') : null;
this.upload = this.form ? this.form.querySelector("dp-upload") : null;
this.sendBtn = this.form ? this.form.querySelector(".messages-send-btn") : null;
this._uploading = false;
@@ -297,8 +297,8 @@ export default class FloatingWindow extends Component {
if (!this.geometry) return;
const g = this.geometry;
const safeHeight = this._safeViewport.height;
g.width = Math.min(g.width, window.innerWidth - 16);
g.height = Math.min(g.height, safeHeight - 16);
g.width = Math.max(320, Math.min(g.width, window.innerWidth - 16));
g.height = Math.max(220, Math.min(g.height, safeHeight - 16));
g.left = Math.max(8, Math.min(g.left, window.innerWidth - g.width - 8));
g.top = Math.max(8, Math.min(g.top, safeHeight - g.height - 8));
}
@@ -409,8 +409,8 @@ export default class FloatingWindow extends Component {
this._ro = new ResizeObserver(() => {
if (this.state === "normal" && this.geometry && !this._drag) {
const rect = this.win.getBoundingClientRect();
this.geometry.width = Math.round(rect.width);
this.geometry.height = Math.round(rect.height);
this.geometry.width = Math.max(320, Math.round(rect.width));
this.geometry.height = Math.max(220, Math.round(rect.height));
this._persistGeometry();
}
this._syncControls();
+1 -1
View File
@@ -176,7 +176,7 @@ def test_send_message_appears_in_thread(alice):
f"{BASE_URL}/messages?with_uid={bob['uid']}", wait_until="domcontentloaded"
)
msg = f"Hello bob {int(time.time() * 1000)}"
page.fill("textarea[name='content']", msg)
page.fill("input[name='content']", msg)
page.locator(".messages-send-btn").click()
page.wait_for_url("**/messages**", wait_until="domcontentloaded")
page.locator(f".message-bubble:has-text('{msg}')").first.wait_for(state="visible")
+2 -2
View File
@@ -440,7 +440,7 @@ def test_message_notification(app_server, browser, seeded_db):
pb.goto(f"{BASE_URL}/messages?search=alice_test", wait_until="domcontentloaded")
pb.wait_for_timeout(2000)
msg_input = pb.locator("textarea[name='content']").first
msg_input = pb.locator("input[name='content']").first
msg_input.wait_for(state="visible", timeout=10000)
msg_input.fill("Hello from bob_test!")
pb.locator("button[type='submit']").last.click()
@@ -753,7 +753,7 @@ def test_message_notification_click_opens_conversation(app_server, browser, seed
pb.goto(f"{BASE_URL}/messages?search=alice_test", wait_until="domcontentloaded")
pb.wait_for_timeout(2000)
msg_input = pb.locator("textarea[name='content']").first
msg_input = pb.locator("input[name='content']").first
msg_input.wait_for(state="visible", timeout=10000)
msg_input.fill("Click-through message from bob")
pb.locator("button[type='submit']").last.click()