Last active
October 23, 2024 21:47
-
-
Save mbrock/64d3256eae8678859146a73705caf2fa to your computer and use it in GitHub Desktop.
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
// MIT license (c) Mikael Brockman | |
class TypeWriter extends HTMLElement { | |
limit = 0 | |
blind = new Range() | |
timer?: number | |
scout = new MutationObserver(() => { | |
this.update() | |
if (!this.timer) this.proceed() | |
}) | |
connectedCallback() { | |
const css = new CSSStyleSheet() | |
css.replaceSync(`::highlight(transparent) { color: transparent }`) | |
document.adoptedStyleSheets.push(css) | |
this.blind.selectNodeContents(this) | |
CSS.highlights.set( | |
"transparent", | |
(CSS.highlights.get("transparent") ?? new Highlight()).add(this.blind), | |
) | |
this.scout.observe(this, { | |
childList: true, | |
subtree: true, | |
characterData: true, | |
}) | |
this.proceed() | |
} | |
disconnectedCallback() { | |
this.scout.disconnect() | |
CSS.highlights.get("transparent")?.delete(this.blind) | |
clearTimeout(this.timer) | |
} | |
update() { | |
const walk = document.createTreeWalker(this, NodeFilter.SHOW_TEXT) | |
let node: Text | null = null | |
let limit = this.limit | |
while (walk.nextNode()) { | |
node = walk.currentNode as Text | |
const { length } = node.data.slice(0, limit) | |
limit -= length | |
if (limit <= 0) { | |
this.blind.setStart(node, length) | |
break | |
} | |
} | |
if (limit > 0) this.blind.setStart(this, 0) | |
this.blind.setEndAfter(this) | |
} | |
proceed() { | |
if (this.blind.toString().trim() === "") { | |
this.timer = undefined | |
return | |
} | |
this.limit = Math.min(this.limit + 1, this.innerText.length) | |
this.update() | |
const delay = adjustSpeed(this.innerText.length, this.blind.toString()) | |
this.timer = setTimeout(() => this.proceed(), 1000 / delay) | |
} | |
} | |
function adjustSpeed(length: number, suffix: string) { | |
const maxSpeed = 80 | |
const minSpeed = 30 | |
const speedRange = maxSpeed - minSpeed | |
const speedFactor = 1 - suffix.length / length | |
const base = Math.round(minSpeed + speedRange * speedFactor ** 2) | |
return delayForGrapheme(suffix[0], base) | |
function delayForGrapheme(grapheme: string, baseDelay: number) { | |
const factors: Record<string, number> = { | |
// TODO: justify these arbitrary numbers with pseudoscience | |
" ": 3, | |
"–": 7, | |
",": 8, | |
";": 8, | |
":": 9, | |
".": 10, | |
"—": 12, | |
"!": 15, | |
"?": 15, | |
"\n": 20, | |
} | |
return baseDelay * (factors[grapheme] ?? 1) * 0.8 | |
} | |
} | |
customElements.define("type-writer", TypeWriter) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment