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

@tilemoon/react-theme-manager

v0.4.0

Published

A simple and clean theme manager for react based on react context api. --- [![npm version](https://badge.fury.io/js/@tilemoon%2Freact-theme-manager.svg)](https://badge.fury.io/js/@tilemoon%2Freact-theme-manager)

Downloads

10

Readme

react-theme-manager

A simple and clean theme manager for react based on react context api.

npm version

Screen Recording

Screen Recording

Features

  • :rainbow: Auto transition css
  • :cyclone: Auto css variable injection
  • :kaaba: Auto saved for last theme
  • :rocket: High performance

Install

Using npm:

$ npm install @tilemoon/react-theme-manager

Using yarn:

$ yarn add @tilemoon/react-theme-manager

Usage

first create your own ThemeConfig

import { ThemeConfig } from '@tilemoon/react-theme-manager'

interface ThemeColors {
  fontColor: string,
  backgroundColor: string,
}

export interface MyThemeConfig extends ThemeConfig<ThemeColors> {
  name: string
}

// colors will auto inject into css like `--font-color: black;`
const ThemeLight: MyThemeConfig = {
  name: 'light',
  colors: {
    fontColor: 'black',
    backgroundColor: 'white',
  },
}
export const themes = {
  light: ThemeLight,
} as const

then wrap your App by ThemeManagerProvider like this

import { ThemeManagerProvider } from '@tilemoon/react-theme-manager'

ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
  <React.StrictMode>
    <ThemeManagerProvider onThemeInit={localTheme => {
      return themes[localTheme] ?? themes.light
    }}>
      <App />
    </ThemeManagerProvider>
  </React.StrictMode>
)

use useTheme to access current Theme, you need to pass your own ThemeConfig for strict type derivation.

function App() {
  const { theme, setTheme } = useTheme<MyThemeConfig>()

  return (
    <div className="App">
      <button
        onClick={() => setTheme((theme) => theme.name == 'light' ? themes.dark : themes.light)}>
        theme is {theme.name}
      </button>
    </div>
  )
}

use color in css

html {
  /* all variables is generated by the colors writed in ThemeConfig */
  color: var(--font-color);
  background-color: var(--background-color)
}

use function v to translate color in to css variable

import { v } from '@tilemoon/react-theme-manager'

  <button
    style={{
      color: v(theme.colors.fontColor),
      backgroundColor: v(theme.colors.backgroundColor),
    }}
    onClick={() => setTheme((theme) => theme.name == 'light' ? themes.dark : themes.light)}>
    theme is {theme.name}
  </button>

API

ThemeManagerProvider Props

<ThemeManagerProvider
  onThemeInit={localTheme => {
    // localTheme is theme string name last saved to localStorage
    return YOUR_THEME_CONFIG ?? DEFAULT_THEME
  }}
>
</ThemeManagerProvider>

useTheme

const Component = () => {
  const { theme, setTheme } = useTheme<YOUR_OWN_THEME_CONFIG>()

  // use current theme data
}

Dev

install

yarn && yarn --cwd ./example-site

link package

first run yarn link in root dir and you will get response like this:

success Registered "@tilemoon/react-theme-manager".
info You can now run `yarn link "@tilemoon/react-theme-manager"` in the projects where you want to use this package and it will be used instead

then run yarn link @tilemoon/react-theme-manager in subdir example-site

run dev

finally just run yarn dev in root dir, now every changes in root dir or in example site will hot reload both.

LICENSE