1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
|
// @ts-nocheck
import { createSignal, onMount } from "solid-js"
import { createResizeObserver } from "@solid-primitives/resize-observer"
import { createStore } from "solid-js/store"
import { useSpring } from "./motion-spring"
import { TextStrikethrough } from "./text-strikethrough"
const TEXT_SHORT = "Remove inline measure nodes"
const TEXT_MED = "Remove inline measure nodes and keep width morph behavior intact"
const TEXT_LONG =
"Refactor ToolStatusTitle DOM measurement to offscreen global measurer (unconstrained by timeline layout)"
const btn = (active?: boolean) =>
({
padding: "8px 18px",
"border-radius": "6px",
border: "1px solid var(--color-divider, #444)",
background: active ? "var(--color-accent, #58f)" : "var(--color-fill-element, #222)",
color: "var(--color-text, #eee)",
cursor: "pointer",
"font-size": "14px",
"font-weight": "500",
}) as const
const heading = {
"font-size": "11px",
"font-weight": "600",
"text-transform": "uppercase" as const,
"letter-spacing": "0.05em",
color: "var(--text-weak, #888)",
"margin-bottom": "4px",
}
const card = {
padding: "16px 20px",
"border-radius": "10px",
border: "1px solid var(--border-weak-base, #333)",
background: "var(--surface-base, #1a1a1a)",
}
/* ─── Variant A: scaleX pseudo-line at 50% ─── */
function VariantA(props: { active: boolean; text: string }) {
const progress = useSpring(
() => (props.active ? 1 : 0),
() => ({ visualDuration: 0.35, bounce: 0 }),
)
return (
<span
style={{
position: "relative",
display: "block",
color: props.active ? "var(--text-weak, #888)" : "var(--text-strong, #eee)",
transition: "color 220ms ease",
}}
>
{props.text}
<span
style={{
position: "absolute",
left: "0",
right: "0",
top: "50%",
height: "1.5px",
background: "currentColor",
"transform-origin": "left center",
transform: `scaleX(${progress()})`,
"pointer-events": "none",
}}
/>
</span>
)
}
/* ─── Variant D: background-image line ─── */
function VariantD(props: { active: boolean; text: string }) {
const progress = useSpring(
() => (props.active ? 1 : 0),
() => ({ visualDuration: 0.35, bounce: 0 }),
)
return (
<span
style={{
display: "block",
color: props.active ? "var(--text-weak, #888)" : "var(--text-strong, #eee)",
transition: "color 220ms ease",
"background-image": "linear-gradient(currentColor, currentColor)",
"background-repeat": "no-repeat",
"background-size": `${progress() * 100}% 1.5px`,
"background-position": "left center",
}}
>
{props.text}
</span>
)
}
/* ─── Variant E: grid stacking + clip-path (container %) ─── */
function VariantE(props: { active: boolean; text: string }) {
const progress = useSpring(
() => (props.active ? 1 : 0),
() => ({ visualDuration: 0.35, bounce: 0 }),
)
return (
<span
style={{
display: "grid",
color: props.active ? "var(--text-weak, #888)" : "var(--text-strong, #eee)",
transition: "color 220ms ease",
}}
>
<span style={{ "grid-area": "1 / 1" }}>{props.text}</span>
<span
aria-hidden="true"
style={{
"grid-area": "1 / 1",
"text-decoration": "line-through",
"pointer-events": "none",
"clip-path": `inset(0 ${(1 - progress()) * 100}% 0 0)`,
}}
>
{props.text}
</span>
</span>
)
}
/* ─── Variant F: grid stacking + clip-path mapped to text width ─── */
function VariantF(props: { active: boolean; text: string }) {
const progress = useSpring(
() => (props.active ? 1 : 0),
() => ({ visualDuration: 0.35, bounce: 0 }),
)
let baseRef: HTMLSpanElement | undefined
let containerRef: HTMLSpanElement | undefined
const [state, setState] = createStore({
textWidth: 0,
containerWidth: 0,
})
const textWidth = () => state.textWidth
const containerWidth = () => state.containerWidth
const measure = () => {
if (baseRef) setState("textWidth", baseRef.scrollWidth)
if (containerRef) setState("containerWidth", containerRef.offsetWidth)
}
onMount(measure)
createResizeObserver(() => containerRef, measure)
const clipRight = () => {
const cw = containerWidth()
const tw = textWidth()
if (cw <= 0 || tw <= 0) return `${(1 - progress()) * 100}%`
const revealed = progress() * tw
const remaining = Math.max(0, cw - revealed)
return `${remaining}px`
}
return (
<span
ref={containerRef}
style={{
display: "grid",
color: props.active ? "var(--text-weak, #888)" : "var(--text-strong, #eee)",
transition: "color 220ms ease",
}}
>
<span ref={baseRef} style={{ "grid-area": "1 / 1" }}>
{props.text}
</span>
<span
aria-hidden="true"
style={{
"grid-area": "1 / 1",
"text-decoration": "line-through",
"pointer-events": "none",
"clip-path": `inset(0 ${clipRight()} 0 0)`,
}}
>
{props.text}
</span>
</span>
)
}
export default {
title: "UI/Text Strikethrough",
id: "components-text-strikethrough",
tags: ["autodocs"],
parameters: {
docs: {
description: {
component: `### Animated Strikethrough Variants
- **A** — scaleX line at 50% (single line only)
- **D** — background-image line (single line only)
- **E** — grid stacking + clip-path (container %)
- **F** — grid stacking + clip-path mapped to text width (the real component)`,
},
},
},
}
export const Playground = {
render: () => {
const [active, setActive] = createSignal(false)
const toggle = () => setActive((v) => !v)
return (
<div style={{ display: "grid", gap: "24px", padding: "24px", "max-width": "700px" }}>
<button onClick={toggle} style={btn(active())}>
{active() ? "Undo strikethrough" : "Strike through all"}
</button>
<div style={card}>
<div style={heading}>F — grid stacking + clip mapped to text width (THE COMPONENT)</div>
<TextStrikethrough
active={active()}
text={TEXT_SHORT}
style={{
color: active() ? "var(--text-weak, #888)" : "var(--text-strong, #eee)",
transition: "color 220ms ease",
}}
/>
<div style={{ "margin-top": "12px" }} />
<TextStrikethrough
active={active()}
text={TEXT_MED}
style={{
color: active() ? "var(--text-weak, #888)" : "var(--text-strong, #eee)",
transition: "color 220ms ease",
}}
/>
<div style={{ "margin-top": "12px" }} />
<TextStrikethrough
active={active()}
text={TEXT_LONG}
style={{
color: active() ? "var(--text-weak, #888)" : "var(--text-strong, #eee)",
transition: "color 220ms ease",
}}
/>
</div>
<div style={card}>
<div style={heading}>F (inline) — same but just inline variants</div>
<VariantF active={active()} text={TEXT_SHORT} />
<div style={{ "margin-top": "12px" }} />
<VariantF active={active()} text={TEXT_MED} />
<div style={{ "margin-top": "12px" }} />
<VariantF active={active()} text={TEXT_LONG} />
</div>
<div style={card}>
<div style={heading}>E — grid stacking + clip-path (container %)</div>
<VariantE active={active()} text={TEXT_SHORT} />
<div style={{ "margin-top": "12px" }} />
<VariantE active={active()} text={TEXT_MED} />
<div style={{ "margin-top": "12px" }} />
<VariantE active={active()} text={TEXT_LONG} />
</div>
<div style={card}>
<div style={heading}>A — scaleX line at 50%</div>
<VariantA active={active()} text={TEXT_SHORT} />
<div style={{ "margin-top": "12px" }} />
<VariantA active={active()} text={TEXT_LONG} />
</div>
<div style={card}>
<div style={heading}>D — background-image line</div>
<VariantD active={active()} text={TEXT_SHORT} />
<div style={{ "margin-top": "12px" }} />
<VariantD active={active()} text={TEXT_LONG} />
</div>
</div>
)
},
}
|