View keeping-track.ts
This file contains 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
class MySelectElement extends HTMLElement { | |
constructor() { | |
super(); | |
const observer = new MutationObserver((records) => { | |
for (let record of records) { | |
this.addItem(record.addedNodes); | |
this.removeItem(record.removedNodes); | |
} | |
}); |
View shadow-element.ts
This file contains 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 { shadow, ShadowTemplate, html, css } from './shadow.js'; | |
const template: ShadowTemplate = { | |
css: css` | |
:host { | |
display: contents; | |
} | |
`. | |
html: html` | |
<slot></slot> |
View windowed.ts
This file contains 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
function* windowed<T>(arr: T[], size: number) { | |
for (let i = 0; i < arr.length; i++) { | |
yield arr.slice(i, size + i); | |
} | |
} | |
let thing = windowed([0, 1, 2, 3], 2); | |
for (let [a, b] of thing) { | |
console.log(a, b); |
View scroll-helpers.ts
This file contains 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
// Freezes document scrolling without remove scrollbar. | |
// This gets rid of the annoying jump that happens when you set the body overflow to hidden | |
// Maintains scroll position on the page | |
export function freezeScroll() { | |
document.body.style.top = -document.documentElement.scrollTop + 'px'; | |
document.body.style.position = 'fixed'; | |
document.body.style.left = '0'; | |
document.body.style.right = '0'; | |
document.body.style.overflowY = 'scroll'; | |
} |
View focus-trap.ts
This file contains 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
export function getFocusableEls(element: HTMLElement) { | |
return element.querySelectorAll<HTMLElement>( | |
'a[href]:not([disabled]), button:not([disabled]), textarea:not([disabled]), input[type="text"]:not([disabled]), input[type="radio"]:not([disabled]), input[type="checkbox"]:not([disabled]), select:not([disabled])' | |
); | |
} | |
export class FocusTrap { | |
private focusableEls!: NodeListOf<HTMLElement>; | |
private firstFocusableEl?: HTMLElement; | |
private lastFocusableEl?: HTMLElement; |
View joist-handlers-on-complete.ts
This file contains 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 { component, State, handle, JoistElement, get, HandlerCtx } from '@joist/component'; | |
import { template, html } from '@joist/component/lit-html'; | |
@component({ | |
tagName: 'my-counter', | |
state: 0, | |
render: template(({ state, run }) => { | |
return html` | |
<button @click=${run('dec_btn_clicked', -1)}>-</button> | |
<span>${state}</span> |
View joist-handlers-3.ts
This file contains 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 { component, State, handle, JoistElement, get } from '@joist/component'; | |
import { template, html } from '@joist/component/lit-html'; | |
@component({ | |
tagName: 'my-counter', | |
state: 0, | |
render: template(({ state, run }) => { | |
return html` | |
<button @click=${run('dec_btn_clicked', -1)}>-</button> | |
<span>${state}</span> |
View joist-handlers-2.ts
This file contains 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 { component, State, handle, JoistElement, get } from '@joist/component'; | |
import { template, html } from '@joist/component/lit-html'; | |
@component({ | |
tagName: 'my-counter', | |
state: 0, | |
render: template(({ state, run }) => { | |
return html` | |
<button @click=${run('dec_btn_clicked', -1)}>-</button> | |
<span>${state}</span> |
View joist-handlers-1.ts
This file contains 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 { component, State, handle, JoistElement, get } from '@joist/component'; | |
import { template, html } from '@joist/component/lit-html'; | |
@component({ | |
tagName: 'my-counter', | |
state: 0, | |
render: template(({ state, run }) => { | |
return html` | |
<button @click=${run('decrement')}>-</button> | |
<span>${state}</span> |
View property-validators.ts
This file contains 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 { component, property, JoistElement } from '@joist/component'; | |
function isString(val: unknown) { | |
if (typeof val === 'string') { | |
return null; | |
} | |
return { message: 'error' }; | |
} |
NewerOlder