aboutsummaryrefslogtreecommitdiff
path: root/xP
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2022-09-19 03:16:34 +0200
committerPřemysl Eric Janouch <p@janouch.name>2022-09-19 03:18:31 +0200
commit00184811ea6ba7f3bb53730ef026d653a5121e50 (patch)
treef6150c4cab881664589b137ec74aed6a51f19329 /xP
parentec20fdef7badebc12621e20c0d66de94243fdb1a (diff)
downloadxK-00184811ea6ba7f3bb53730ef026d653a5121e50.tar.gz
xK-00184811ea6ba7f3bb53730ef026d653a5121e50.tar.xz
xK-00184811ea6ba7f3bb53730ef026d653a5121e50.zip
xP: make the prompt look more xC-like
Diffstat (limited to 'xP')
-rw-r--r--xP/public/xP.css24
-rw-r--r--xP/public/xP.js28
2 files changed, 36 insertions, 16 deletions
diff --git a/xP/public/xP.css b/xP/public/xP.css
index 96d6525..041eb63 100644
--- a/xP/public/xP.css
+++ b/xP/public/xP.css
@@ -186,16 +186,30 @@ button {
column-gap: .6em;
overflow-x: auto;
}
-
+.input {
+ flex-shrink: 0;
+ border: 2px inset #eee;
+ overflow: hidden;
+ resize: vertical;
+ display: flex;
+}
+.input:focus-within {
+ border-color: #ff5f00;
+}
+.prompt {
+ padding: .05em .3em;
+ border-right: 1px solid #ccc;
+ background: #f8f8f8;
+ font-weight: bold;
+}
textarea {
font: inherit;
padding: .05em .3em;
margin: 0;
- border: 2px inset #eee;
- flex-shrink: 0;
- resize: vertical;
+ border: 0;
+ flex-grow: 1;
+ resize: none;
}
textarea:focus {
outline: none;
- border-color: #ff5f00;
}
diff --git a/xP/public/xP.js b/xP/public/xP.js
index dbba7e2..93fe642 100644
--- a/xP/public/xP.js
+++ b/xP/public/xP.js
@@ -687,18 +687,24 @@ let Status = {
let status = `${bufferCurrent}`
if (b.hideUnimportant)
status += `<H>`
+ return m('.status', {}, status)
+ },
+}
+let Prompt = {
+ view: vnode => {
// This should be handled differently, so don't mind the lookup.
- if (b.server !== undefined) {
- let state = b.server.state
- for (const s in Relay.ServerState)
- if (Relay.ServerState[s] == b.server.state) {
- state = s
- break
- }
- status += ` (${state})`
- }
- return m('.status', {}, status)
+ let b = buffers.get(bufferCurrent)
+ if (b === undefined || b.server === undefined)
+ return
+
+ let state = b.server.state
+ for (const s in Relay.ServerState)
+ if (Relay.ServerState[s] == b.server.state) {
+ state = s
+ break
+ }
+ return m('.prompt', {}, `(${state})`)
},
}
@@ -934,7 +940,7 @@ let Main = {
m('.title', {}, [`xP`, m(Toolbar)]),
m('.middle', {}, [m(BufferList), m(BufferContainer)]),
m(Status),
- m(Input),
+ m('.input', {}, [m(Prompt), m(Input)]),
])
},
}