A Pen by Jorge Bucaran on CodePen.
Created
June 17, 2022 14:27
-
-
Save justaguywhocodes/e1c576629eaa53953a257df7e1448f89 to your computer and use it in GitHub Desktop.
hyperapp tweeter box
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<main id=app></main> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { h, text, app } from "https://esm.run/hyperapp" | |
// Html | |
const textarea = (props) => h("textarea", props) | |
const main = (...children) => h("main", {}, children) | |
const section = (...children) => h("section", {}, children) | |
const button = (onclick, { text: s, ...props }) => | |
h("button", { onclick, ...props }, text(s)) | |
const title = (title) => h("h1", {}, text(title)) | |
// Main | |
const MAX_LENGTH = 140 | |
const SetText = (state, [content, length]) => ({ | |
...state, | |
content: length > MAX_LENGTH ? state.content : content, | |
count: | |
length > MAX_LENGTH | |
? 0 | |
: state.count + state.content.length - content.length, | |
}) | |
const Tweet = (state) => ({ content: "", count: MAX_LENGTH }) | |
app({ | |
init: { | |
content: "", | |
count: MAX_LENGTH, | |
}, | |
view: ({ content, count }) => | |
main( | |
title("Tweeter 🦤"), | |
textarea({ | |
placeholder: "What's on your mind?", | |
oninput: (_, { target: { value } }) => [SetText, [value, value.length]], | |
value: content, | |
rows: 4 + content.length / 100, | |
}), | |
section( | |
text(count), | |
button(Tweet, { | |
disabled: count >= MAX_LENGTH, | |
text: "Tweet", | |
}) | |
) | |
), | |
node: document.getElementById("app"), | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "https://unpkg.com/water.css@2/out/water.min.css"; | |
body { | |
display: flex; | |
font-size: 1.5em; | |
justify-content: center; | |
} | |
main { | |
width: clamp(45ch, 50%, 75ch); | |
display: flex; | |
flex-direction: column; | |
} | |
textarea { | |
transition: .2s; | |
resize: none; | |
overflow: hidden; | |
} | |
section { | |
display: flex; | |
} | |
button { | |
margin: 0 0 0 auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment