theme-toggle component for example

This commit is contained in:
Geoff Doty 2025-03-22 17:31:00 -04:00
parent 198f6dce6d
commit 0d5c95230e
2 changed files with 40 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en" data-theme="">
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
@ -7,6 +7,7 @@
<title>Stylelite</title>
<link rel="stylesheet" href="../src/main.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/feather-icons-css@1.2.0/css/feather.min.css">
<script src="../src/components/theme-toggle.js"></script>
<style>
.fill {height: 100%; width: 100%}
.grid-center {align-self: center; justify-self: center;}
@ -30,6 +31,7 @@
<li><a href="#components">Components</a></li>
<li><a href="#utilities">Utilities</a></li>
<li><a href="#customize">Customize</a></li>
<li><theme-toggle /></li>
</ul>
</nav>
<p>
@ -110,7 +112,7 @@
<div>
<code>IMG</code>
</div>
<img src='http://via.placeholder.com/340x280' alt='Example image'>
<img src='https://placehold.co/340x280' alt='Example image'>
</div>
</section>
<section>
@ -158,7 +160,7 @@
<div class="group">
<input type='email' name='email' id='email' placeholder='email@example.com' autocomplete="off">
<label class="addon">
<i class="ft-mail" style="color: #000"></i>
<i class="ft-mail"></i>
</label>
</div>
</div>

View File

@ -0,0 +1,35 @@
class ThemeToggle extends HTMLElement {
constructor() {
super();
// this.attachShadow({ mode: 'open' });
this.isLight = true;
}
connectedCallback() {
this.render();
this.addEventListener('click', this.toggleTheme.bind(this));
}
toggleTheme() {
this.isLight = !this.isLight;
document.documentElement.setAttribute('data-theme', this.isLight ? 'light' : 'dark');
this.render();
}
render() {
this.innerHTML = `
<style>
:host {
cursor: pointer;
display: inline-block;
}
</style>
${this.isLight
? '<i class="ft-sun"></i>'
: '<i class="ft-moon"></i>'
}
`;
}
}
customElements.define('theme-toggle', ThemeToggle);