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

@petegi/pi-color-scheme-switcher

v0.1.1

Published

CustomElement which can be used for switching color scheme on your site

Downloads

3

Readme

PiColorSchemeSwitcher

Simple color scheme switcher for your site. When connected to the DOM, checks if LocalStorage has the value with current scheme (by given key, look at the available attributes). If no value is found in the LocalStorage, checks the media prefers-color-scheme.

Default styling is just button with specified min-width and height. To style the button on your own, look at the Parts and slots section to see how the element is structured. By default, if you place the code in your HTML, the start of your document will look like:

<html color-scheme="dark"></html>`

Requirements

Node v16+ if you'd like to build the component.

CustomElement doesn't have any dependencies other than vite used to build things up (devDep only).

Instalation

npm install @petegi/pi-color-scheme-switcher

Usage

// Include the script
import "path-to-@petegi/pi-color-scheme-switcher"
// or
<script src="path-to-@petegi/pi-color-scheme-switcher"></script>

// Use in your HTML
<pi-color-scheme-switcher></pi-color-scheme-switcher>

Elements

| Name | Description | | ------------------------ | --------------------- | | pi-color-scheme-switcher | Main and only element |

Attributes

| Name | Type | Default | Description | | ------------ | ------ | -------------- | --------------------------------------------------------------------------------------------- | | element | string | 'head' | Selector for element that should get attribute with value of current color scheme | | attrname | string | 'color-scheme' | Name of te attribute that will be given to the elemenet with the value of color scheme | | storagekey | string | 'color-scheme' | Name of the field to be used in LocalStorage | | requesturl* | string | '' | URL to make request with currently selected theme (sends { [attrname]: "light" or "dark" }) |

*CustomElement will not send anything if requesturl is not specified

Special attributes

CustomElements spec doesn't give the ability to specify custom pseudoclasses, so these attributes show what current scheme is.

They should not be used in any other way than in CSS to style the element.

| Name | Description | | ----- | ----------------------------- | | light | Current color scheme is light | | dark | Current color scheme is dark |

Properties

| Name | Type | Default | Description | | ----------------- | ------ | ------- | ----------------------------------------------- | | additionalHeaders | Object | {} | Additional headers to be sent with each request |

To use these properties, grab the element (e.g. using querySelector) and do it like:

const switcher = document.querySelector('.color-switcher');
switcher.additionalHeaders = { /* your custom headers */ }

Parts and slots

Custom Element parts are useful for styling the components's inner elements. Slots on the other hand, are used to place your content inside them.

PiColorSchemeSwitcher allows you to style all of the elements on your own. Below you can see how the component is built, with all of it's parts and slots.

pi-select

<button part="button" type="button">
  <span part="marker">
    <slot></slot>
  </span>
</button>

Licence

MIT