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

@springernature/monetise-shared-components

v1.2.3

Published

FE Components to be shared

Downloads

692

Readme

Librarian Components

There are small components that can be shared between projects to maintain a common design and style.

The components consist in a Handlebar Partial that can be integrated in a project and a styling for the respective component.

All the code is shared as a NPM package

The project also contains the SCSS for the Librarian project, which can be imported into the project.

For integration with a current project

Install the NPM repository on any project using:


npm install @springernature/monetise-shared-components

or to update the package


npm install @springernature/monetise-shared-components@VERSION-NUMBER

Import the Handlebar partials folder as follows (or similar):

partialsDir: [
path.join(__dirname, 'node_modules/@springernature/monetise-shared-components/frontend-partials'),
]

For integration of the Style with a current project

  • Import the core theme into your core styles
@import "@springernature/monetise-shared-components/frontend-style/snapcss-core";
  • Import the advanced theme into your advanced styles
@import "@springernature/monetise-shared-components/frontend-style/snapcss-advanced";

NOTE:

Specific components such as header, navigation or footer don't need separate imports. These are already included in the main imports. We recommend that you implement CSS cleansing to avoid having unused code.

To develop new components.

  • The main partials are located on the frontend-partials folder.
  • Within this folder, a folder named after the component is created with the following information
    • README.md for the respective component.
    • data folder containing example.json and schema.json of the data the component needs to work.
    • scss folder with the style for the respective folder.
    • COMPONENT.test.js file with some basic testing for the component.
    • index.scss referencing the scss folder.
  • The components need to pass all possible data from the projects. It's responsability of the projectst that use it to provide this information to the component.

To publish the project you need a .npmrc file with the correct token for the @springernature registry.

To publish the project just run from the frontend-shared:

npm publish

The package should be published each time a change is made to the components, or when the styling affecting those components is changed. In order to update the package, a new version must be added to the package.json file, and an explanation must be added to the HISTORY.md file.

To add an external page to the Librarian Project

As an example to understand the concept, you have the E-Book Shop, which is implemented as a separate project, but integrated in such a way that it looks like part of the Librarian Portal. There are several elements to achieve this:

  • The new project needs to have the look and feel of the Librarian Portal. To achieve this, the [Monetize Shared Components] (https://www.npmjs.com/package/@springernature/monetise-shared-components) shares a stylesheet code, plus the header, footer and navigation elements as components.
  • The new project needs to pass some data to the different components to make the site work as intended. The most important of these is the Active BpId or BpId currently in use. More information about this can be found in each component used.
  • A link to the new project needs to be added to the navigation component by the ICE team.