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

wupjs-glyph-button

v0.2.0

Published

Generic button using React

Downloads

5

Readme

wupjs-glyph-button

Generic button using React

Content

Usage

A glyph button is a purely representational React component. It has as text a single symbol character. By default, we use Bootstrap 4 and Font Awesome classes to theme the component. But these settings can be overridden.

import React from 'react';
import {render} from 'react-dom';
import {GlyphButton} from 'wupjs-glyph-button';

render(<div>
  <h5>GlyphButton</h5>
  <GlyphButton
    glyph="save"
    onClick={() => {
      console.log('click save');
    }}
  />
</div>, document.getElementById('app'));

Required properties

glyph

By default, glyph is the name of a character as defined by Font Awesome. You could use it in combination with property glyphBaseClass to use a totally different character set, but that may be a lot of work. See Overriding GlyphButton defaults.

onClick

onClick property must be a function which will be called whenever the button is clicked. As the component is purely representational, the function knows nothing of its state or props. Therefore it must be bound upstream by the parent of the component.

Theming GlyphButton

There are two props provided to help theme the component: buttonAddClass and glyphAddClass. The first one helps with the placement, sizing, etc. of the underlying button HTML tag. The second one helps theme the symbol within the button. But they come on top of the Bootstrap and Font Awesome defaults. See below to override them.

Overriding GlyphButton defaults

To override Bootstrap classes, use property buttonBaseClass.

To change the fonts, you have to use glyphBaseClass. By default, the classes used to theme them are formed by concatenating the string "fa fa-" with the value of the glyph prop. This works well with the CSS of Font Awesome. Now you can use your own CSS and own naming scheme.

.my-question-mark::before {
  content: '?';
}
.my-ellipsis::before {
  content: '...';
}
import React from 'react';
import {render} from 'react-dom';
import {GlyphButton} from 'wupjs-glyph-button';

render(<div>
  <h5>Themed GlyphButtons</h5>
  <GlyphButton
    glyph="question-mark"
    onClick={() => {
      console.log('click ?');
    }}
    glyphBaseClass='my'
  />
  <GlyphButton
    glyph="ellipsis"
    onClick={() => {
      console.log('click ...');
    }}
    glyphBaseClass='my'
  />
</div>, document.getElementById('app'));

GlyphButtonGroup

This React component helps deal with several buttons in association, that is they should be displayed together and share a common theme.

import React from 'react';
import {render} from 'react-dom';
import GlyphButtonGroup from './glyph-button-group';

render(<div>
  <h5>GlyphButtonGroup</h5>
  <GlyphButtonGroup
    glyphs={['pencil', 'trash-o', 'save']}
    onClicks={{
      'pencil': () => {
        console.log('pencil button clicked');
      },
      'trash-o': () => {
        console.log('trash-o button clicked');
      },
      'save': () =>{
        console.log('save button clicked');
      },
    }}
  />
</div>, document.getElementById('app'));

GlyphButtonGroup has the same properties as GlyphButton, but with the plural mark (s appended, yielding glyphs, onClicks, buttonBaseClasses, buttonAddClasses, glyphBaseClasses, glyphAddClasses).

glyphs is an array of strings, the five others are objects mapping to the strings in glyphs.

Moreover two props are provided to theme the group itself: buttonGroupBaseClass and buttonGroupAddClass.

License

wupjs-glyph-button is MIT licensed.

© 2017 Jason Lenoble