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

@hungry/sassy-react-component

v0.1.3

Published

`sassy-react-component` ===

Downloads

4

Readme

sassy-react-component

Allow to define BEM like attributes on your react components. There is no need to used className attribute or concatenate styles at all - all magic happen inside.

Real world example @hungry/bulma-element.

Docs

Why

  • one way to define any sass component for react with type-checking
  • improve soundness and correctness of defined components with easy ability to detect changes between sass and typescript (to catch bug easily)
  • creating styled-component from scratch is ok when you starting green field project but for me it is not necessary effort since there is a lot of sass frameworks out there ready for modification, so sass framework provide a base component and styled-components some context related overriding with correct isolation.

Implementation details

This is high order component to wrap typings and css modules and provide them as BEM-ish component. There are two variants, one based on styled-components second one, on simple html primitives.

Examples

Usage

    <Button 
      isActive        // button property 
      isDanger        // button property 
      hasTextWarning  // modifiers property
      as="section"    // styled-component property
    />

    <Button 
      p={10}          // styled-system property
      m={1}           // styled-system property
      isWarning       // button property 
      isLoading       // button property 
    />

Implementation

Button - single component

// styled-components are used to define primitives
import styled from 'styled-components'

// apply styled-system features - handling padding, margins
import {
  styledWithVariants,
  toStyledGenericFromStringOrJSX,
  toStyledGenericFromStyledFunction
} from '@hungry/sassy-react-component'

// bulma modifiers helpers to make modifiers reachable from button perspective
import { WithModifiers, combineCSSWithModifiers } from './modifiers'

// css-modules
import CSS, { BEM } from './Button.sass'

// make styles lookup for bulma-modifiers and button - "Cascading"SS augmentation
const withEmbeddedVariants =
  styledWithVariants<WithModifiers<BEM>>(
    combineCSSWithModifiers(CSS))

// define BEM blocks factory with lookup attached
export const makeButton = withEmbeddedVariants('button')

// provide specific implementation by wrapping styled-component primitive
export const Button = makeButton(
  toStyledGenericFromStringOrJSX('button'))

export const SubmitButton = makeButton(
  toStyledGenericFromStyledFunction(
    styled
      .button
      .attrs({ type: 'submit' })))

Notification - compound component

import {
  styledWithVariants,
  toStyledGenericFromStringOrJSX,
  div
} from '@hungry/sassy-react-component'

import { combineCSSWithModifiers, WithModifiers } from './modifiers'

import CSS, { BEM } from './Notification.sass'

const asBulmaVariant =
  styledWithVariants<WithModifiers<BEM >>(
    combineCSSWithModifiers(CSS))

const Block =
  asBulmaVariant('notification')
    (div)

const DeleteButton =
  asBulmaVariant('button', 'isDelete', 'delete')
    (toStyledGenericFromStringOrJSX('button'))

const Title =
  asBulmaVariant('title')
    (div)

const Subtitle =
  asBulmaVariant('subtitle')
    (div)

const Content =
  asBulmaVariant('content')
    (div)

export const Notification = {
  Block,
  DeleteButton,
  Title,
  Subtitle,
  Content
}

styled-system support

To provide some basic css alteration, like changing padding or margin, you can leverage styled-system integration. sassy-react-component comes with basic support from styled-system and enables following properties space, fontSize, fontWeight, lineHeight, border, borderRadius, width, minHeight, minWidth.

If you encounter some performance issues

It happen to me when I was rendering bulma-calendar even with withMemo enabled, so if there is no need to make any runtime modification you can make fully static component, to do so, instead of using styledWithVariants go with staticWithVariants function instead.