Full Featured Counter - Preact Typing CST Test
Loading…
Full Featured Counter — Preact Code
Combines step increment, max limit, auto-reset, history, auto-increment, and theme toggle.
import { h } from 'preact';
import { useState, useEffect } from 'preact/hooks';
function FullCounter() {
const [count, setCount] = useState(0);
const [history, setHistory] = useState([]);
const [isDark, setIsDark] = useState(false);
const step = 2, max = 10;
useEffect(() => { const interval = setInterval(() => { setCount(c => { let n = c + step; if(n > max) n = 0; setHistory(h => [...h,'Auto Increment']); return n; }); },1000); return () => clearInterval(interval); }, []);
const increment = () => { setCount(c => c + step); setHistory(h => [...h,'Increment']); };
const decrement = () => { setCount(c => c - step); setHistory(h => [...h,'Decrement']); };
const reset = () => { setCount(0); setHistory(h => [...h,'Reset']); };
return (
<div className={isDark ? 'dark-theme' : 'light-theme'}>
<h2>Counter: {count}</h2>
<div>History: {history.join(', ')}</div>
<button onClick={increment}>+</button>
<button onClick={decrement}>-</button>
<button onClick={reset}>Reset</button>
<button onClick={() => setIsDark(!isDark)}>Toggle Theme</button>
</div>
);
}
export default FullCounter;Preact Language Guide
Preact is a fast, lightweight JavaScript library for building user interfaces with a React-like API. It emphasizes small bundle size, performance, and compatibility with modern web standards while providing an easy transition for React developers.
Primary Use Cases
- ▸Small to medium web applications
- ▸Mobile-first web apps
- ▸Interactive widgets and components
- ▸Progressive web apps (PWAs)
- ▸High-performance client-side rendering
Notable Features
- ▸Small bundle size (~3KB gzipped)
- ▸React-compatible API
- ▸Fast virtual DOM rendering
- ▸Component-based architecture
- ▸Optional ecosystem add-ons (preact/compat)
Origin & Creator
Created by Jason Miller and first released in 2015, Preact was designed as a lightweight alternative to React for high-performance web applications.
Industrial Note
Preact excels in projects where bundle size, speed, and React compatibility are crucial, such as mobile-first web apps, embedded widgets, and highly interactive UIs.