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

parkhub-component-library

v0.1.5

Published

A collection of React components that embody the Parkhub design system

Downloads

2

Readme

Steve, The Component Library

PH Badge Docz Badge Slack Badge

Steve's here to give you to defined, stable and tested React components to build consistent views and interactions within your applications. Comprised of Atoms, Molecules and Organisms.

Table of Contents

  • Introduction
    • Why we built Steve
    • Getting started
    • Basic usage
  • Components
    • Activity Feed
    • Card
    • Loader
    • NavTabs
    • NotificationBar
    • SearchBox
  • Test coverage
  • Contributing
    • Design process
    • Validating with customers
    • Writing tests
    • Publishing to NPM

Introduction

Why we built Steve

Consistency. It's all about consistency in code and design. Steve is a core member of our Design System. There are some pretty clutch key benefits when using a component library also:

  • Full test coverage for visual and data
  • Write way less HTML / CSS to focus on core logic of applications
  • Better UX defined by interaction patterns in the design system

Getting started

Install from npm

npm i parkhub-component-library --save

Or yarn

yarn add parkhub-component-library

Basic Usage

To use the components, just import them and add them to your layout.

import { Component } from 'react';
import { Card } from 'parkhub-component-library';

class App extends Component {
    render() {
        return <div><h1>Look, ma! Components!</h1><Card></div>;
    }
}

To use the packaged styles (seriously, do this), then simply add them to your html files. If you're using webpack (do this, too), then you need to reference it at the root of your app. Parkhub's styles are packaged minified but un-compressed. This can help produce smaller css bundles by merging with your custom CSS before compression. But, it's important to actually do that. There are numerous utilities and tutorials on that topic for whatever toolchain you're using.

// This would work for webpack
import React from 'react';
import ReactDOM from 'react-dom';
import App from './app';
require('parkhub-component-library/lib/styles.css');

ReactDOM.render(
  <App/>,
  document.getElementById('app')
);

Donezo.


Components

Components can range from being Atoms, Molecules, and Organisms (Atomic Design Principles). They will be defined and grow over time like living organisms should. TODO: Functional components + component classes.


Activity Feed Allowing users to quickly get a heartbeat on the current subject they are looking at

<ActivityFeed />

Card Used for displaying title, meta information, time, and navigating to inner content

<Card />

Loader To Do

<Loader />

NavTabs To Do

<NavTabs />

NotificationBar To Do

<NotificationBar />

SearchBox To Do

<SearchBox />

Test Coverage

Contributing