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

@cityelectricalfactors/cef_compare

v2.0.8

Published

This is our compare component used to compare products passed in from product compare click

Downloads

36

Readme

Compare Component

This is our compare component used to compare products passed in from product compare click

Installation

First create a file within app/javascript/packs called compare.js. Once you've created this file, add the content below to the file:

import React from "react";
import { render } from "react-dom";
import Compare from "@cityelectricalfactors/cef_compare";

document.addEventListener("DOMContentLoaded", () => {
  if (document.querySelector(".compare-container")) {
    const node = document.querySelector(".compare-container");
    const config = {
      siteName: "YOUR_SITE_NAME"
    };
    render(
      <Compare config={config} />,
      node
    );
  }
});

You will then need to render the component out on your site. To do this add the following where you want the component to show.

.compare-container
  = javascript_pack_tag("compare")

You will then also need the following CSS on your site:

.comparison-bar {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  position: fixed;
  width: 100vw;
  z-index: 1001;
  &.show {
    height: 100%;
    overflow-y: scroll;
    background: #fff;
  }

  .show-comparison__btn {
    align-items: center;
    border: 0;
    border-radius: 0;
    display: flex;
    height: 45px;
    justify-content: space-between;
    margin: 0;
    padding: 0 1rem;
    width: 300px;
    &.hide {
      display: none;
    }
    > svg {
      height: 15px;
    }

    .show-comparison__value {
      border: 2px solid #fff;
      border-radius: 50%;
      height: 25px;
      margin-left: 0.5rem;
      padding: 0.15rem 0.5rem;
      width: 25px;
    }
  }

  .comparison {
    display: flex;
    flex-wrap: wrap;
    padding-top: 1rem;
    padding-bottom: 1rem;
    z-index: 10;
    position: fixed;
    background: #fff;
    width: 100%;

    .comparison-header {
      align-items: center;
      display: flex;
      justify-content: space-between;
      margin-right: 1rem;
      margin-bottom: 1rem;
      flex-basis: 100%;

      svg {
        height: 14px;
        width: 14px;
        cursor: pointer;
        @media screen and (min-width: 768px) {
          height: 24px;
          width: 24px;
        }
      }
      h4 {
        color: #a55a95;
        margin: 0 0 10px 0;
        font-weight: $font-normal;
      }

      p {
        font-size: 1.125rem;
        margin:0;
        @media screen and (min-width: 768px) {
          font-size: 1.625rem;
        }
      }

      .btn {
        min-width: 100px;
      }
    }

    .comparison-products {
      display: flex;

      .comparison-product {
        background-color: #fff;
        border: 1px solid #dfdfdf;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-basis: 33%;
        padding: 12px;
        position: relative;
        
        > .brand-image {
          display: none;
          @media screen and (min-width: 1025px) {
            display: block;
            margin: 0;
          }
        }
        > img {
          height: 60px;
          width: 60px;
          margin: 0 auto;
        }

        > svg {
          position: absolute;
          right: 5px;
          top: 5px;
          width: 15px;
          z-index: 20;
          display: block;
          cursor: pointer;
          @media screen and (min-width: 768px) and (max-width: 1024px) {
            display: none;
          }

          &:hover {
            cursor: pointer;
          }
        }
      }

      .comparison-product__desc {
        max-width: 150px;
        font-size: 0.875rem;
        margin: 12px 0;
        color: #656565;
        &:hover {
          text-decoration: underline;
        }
      }
      .comparison-product__price {
        font-size: 0.875rem;
        font-weight: 500;
        color: #a55a95;
        @media screen and (min-width: 1025px) {
          font-size: 1rem;
        }
      }
      .comparison-product__remove {
        display: none;
        text-decoration: underline;
        color: #a55a95;
        font-weight: 500;
        font-size: 0.875rem;
        margin: 12px 0;
        @media screen and (min-width: 768px) and (max-width: 1024px) {
          display: block;
        }
      }
      .comparison-product__add-to-basket {
        min-width: 0;
        width: 100%;
        margin-top: 12px;
        span {
          display: none;
          @media screen and (min-width: 768px) {
            display: inline;
          }
        }
      }
    }
  }
  .comparison-specifications {
    > div:first-of-type {
      margin-top: 350px;
      @media screen and (min-width: 321px) {
        margin-top: 330px;
      }
      @media screen and (min-width: 768px) and (max-width: 1024px){
        margin-top: 350px;
      }
    }
    .comparison-spec-header {
      margin: 0;
      padding: 10px;
      background: #dfdfdf;
      color: #656565;
      font-size: 0.875rem;
      font-weight: 700;
    }
    .comparison-spec-list {
      display: flex;
      &--item {
        color: #656565;
        font-size: 0.875rem;
        flex-basis: 33%;
        padding: 10px;
      }
    }
  }
}
html,
body {
  &.modal-open {
    overflow: hidden;
    position: relative;
    height: 100%;
  }
}

Publishing / Updating

Once you're finished building / updateing the component and your pull request has been merged you're going to want to publish it to the NPM registry so we can use it across projects. The first thing you need to do is remove the symlink you created earlier.

From inside your project folder run:

yarn unlink COMPONENTNAME

Then from within the component folder run:

yarn unlink

If you now exit and re-run your webpack server on the project, it should throw an error message that the component is not found.

You then need to run the following to prepare your ./dist folder ready for publishing. This will completely remove the old ./dist folder and build a new one.

yarn prepare

Next you need to publish the component, you can do this by running the following (please ensure you include the --access flag):

yarn publish --access public

It will first ask you to bump the version number (if you didn't do it manually earlier), please make sure you follow SemVer conventions and any changes are added in to the CHANGELOG.

If this is the first time you've published to NPM it will ask for your password. Just follow the on-screen prompts.

Finally, you're going to want to add this to your project, to do so you need to run:

yarn add COMPONENTNAME

Once again exit and re-run your webpack server and you should now be using your newly published component direct from the NPM registry.

Built With

Versioning

We use SemVer for versioning.

License

This project is licensed under the MIT License.