npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

kacielriff-theme-switcher

v1.0.2

Published

Componente de alteração de tema claro e escuro

Downloads

4

Readme

Componente de Alteração de Tema - ThemeSwitcher

Descrição

O componente ThemeSwitcher é um switch de tema em React, criado para alternar entre o modo light (claro) e dark (escuro). Ele utiliza um checkbox simples para permitir que o usuário alterne entre os temas, manipulando a troca de tema diretamente no cliente e armazenando a preferência no localStorage.

Este componente utiliza um hook personalizado chamado useThemeSwitcher para realizar a troca de temas, garantindo que a funcionalidade seja otimizada para desempenho e usabilidade.

Requisitos

  • React 18.0+
  • Next.js 14.2.14

Instalação

  1. Instale o pacote:
npm install kacielriff-theme-switcher
  1. Importe o componente e o hook no seu projeto:
import { ThemeSwitcher } from 'kacielriff-theme-switcher';
import { useThemeSwitcher } from 'kacielriff-theme-switcher';

Exemplo de Uso

"use client"; // Caso esteja utilizando Next.js

import React from 'react';
import { ThemeSwitcher } from 'kacielriff-theme-switcher';

export default App() {
  return (
    <div>
      <h1>Alternador de Tema</h1>
      <ThemeSwitcher />
      {/* Passando as cores light e dark como parâmetros */}
      <ThemeSwitcher lightBgColor="#f00" darkBgColor="#00f" />
    </div>
  );
};
body {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in;
}

.dark {
    background-color: #171717;
}

Propriedades do Componente ThemeSwitcher

| Propriedade | Tipo | Padrão | Descrição | Obrigatório | | :-------------- | :------- | :---------- | :--------------------------------------------------- | :---------- | | lightBgColor | string | #d5d5d5 | Cor de fundo usada quando o tema está no modo light | false | | darkBgColor | string | #323334 | Cor de fundo usada quando o tema está no modo dark | false |

O ThemeSwitcher pode receber cores customizadas para os temas claro e escuro via propriedades lightBgColor e darkBgColor.

Comportamento

O componente ThemeSwitcher alterna automaticamente entre os temas light e dark, adicionando/removendo classes no document.body e persistindo a preferência no localStorage para uso futuro.

  • Tema Light: O tema padrão é o light, e o checkbox estará desmarcado.
  • Tema Dark: O tema é alterado para dark ao marcar o checkbox, aplicando a classe CSS configurada para o tema escuro.

Hook Personalizado: useThemeSwitcher

O hook useThemeSwitcher é utilizado para gerenciar a lógica de troca de temas e manipulação do localStorage. Ele retorna o tema atual e uma função para alternar o tema.

| Propriedade | Tipo | Descrição | | :----------- | :---- | :--------- | | theme | 'light' ou 'dark' | O tema atual selecionado, que pode ser 'light' ou 'dark'. | | toggleTheme | () => void | Função para alternar entre os temas light e dark. |

Funcionalidades Avançadas

  • Persistência de Tema: O tema selecionado pelo usuário é salvo no localStorage e recuperado quando o site é carregado novamente.
  • Suporte para SSR: O componente foi otimizado para funcionar corretamente em ambientes SSR, como Next.js. O localStorage é verificado apenas no cliente.

Conclusão

O ThemeSwitcher é um componente simples e eficiente para alternar entre temas claros e escuros, oferecendo flexibilidade na personalização e fácil integração em projetos React. Ele utiliza um hook personalizado para gerenciar o estado de tema e a persistência, garantindo que a experiência do usuário seja consistente.