Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@mands/mns-fe-pattern-library

Package Overview
Dependencies
Maintainers
1
Versions
337
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mands/mns-fe-pattern-library

FESK Pattern Library

  • 0.7.0
  • unpublished
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

FESK Pattern Library

Welcome to the FESK Pattern Library. This npm module is designed to allow consumers to easily include M&S styles and layouts through elements, components, modules and templates in their projects.

NPM version Node version

Usage

To install the module

npm install @mands/mns-fe-pattern-library

In order for the project to use the styles, include sassPath config in your build config file. For example, if you are using webpack add the following to your webpack.config.js

    const patternLibrary = require('@mands/mns-fe-pattern-library');
    
    [{
        loader: 'sass-loader',
        options: {
            outputStyle: 'expanded',
            sourceMap: true,
            sourceMapContents: true,
            includePaths: [patternLibrary.sassPath]
        }
    }]

To implement specific parts of the pattern library visit fesk-pattern-library-dev.eu-gb.mybluemix.net for more detailed implementation information.

Style guide usage

The style guide is purely a SASS library to provide global styling for:

  • accessibility
  • colors
  • grid
  • iconography
  • normalization
  • typography
  • utilities

These are all located in lib/mns-fe-styles and as lib is set as a sass path you can @import parts of this using mns-fe-styles as the first part of the path. e.g @import 'mns-fe-styles/colors'. You can also import everything using @import 'mns-fe-styles/all'. It is important that you only import parts of the style guide styles once in your application otherwise you will get duplication in your CSS output.

Setting up

Installing NodeJS

brew update
brew install node

Check it's installed using node -v

Alternatively you can follow the official NodeJS installation guide.

Install nvm (Node Version Manager)

Only if you are using a Mac

cd ~/
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash
nvm install 8.9.0

Install Node Modules

First time installation

Within the fesk-pattern-library repository run:

npm install

The fesk-pattern-library repository is shrink-wrapped (find more on Shrinkwrapping here - https://docs.npmjs.com/cli/shrinkwrap). Hence the dependencies would be downloaded from npm-shrinkwrap.json instead of from package.json.

To download the latest version of dependencies

Delete the npm-shrinkwrap.json file and then run:

npm install

Create a new shrinkwrap file:

npm shrinkwrap --dev 

Find more here - https://github.com/DigitalInnovation/fesk-documentation/blob/master/how_tos/shrinkwrap_npm_dependencies.md

Running the app

Run locally

When this is running locally it will run Liniting checks, unit tests and will automatically reload the application when making live code changes both client and server side.

npm run dev

Run production

This is how the application is started after deployment to an environment. This requires the bundled assets.

npm start

Run bundle

If you need to create a bundle locally.

npm run bundle

Development

Lazy Loading

FESK is equipped with lazyloading of images.

  1. Import the lazyloading script into your javascript:

    import '../../lib/lazysizes.min';
    
  2. Render it with handlebars:

    res.render('productList', {
        cssBundle: getAssetsPromise.then(bundles => bundles['productList.css']),
        jsBundle: getAssetsPromise.then(bundles => bundles['productList.js']),
        commonjsBundle: getAssetsPromise.then(bundles => bundles['common.js']),
        lazysizesBundle: getAssetsPromise.then(bundles => bundles['lib/lazysizes.min.js']),
        title: 'productList',
    });
    
  3. In your view:

    <div class="product__image">
        <noscript>
            <img alt="" src="{{{fullImageUrl}}}" itemprop="image"/>
        </noscript>
        <img class="lazyload" data-srcset="{{{fullImageUrl}}}?wid=135&fmt=pjpeg 135w, {{{fullImageUrl}}}?wid=270&fmt=pjpeg&qlt=45 270w,
                     {{{fullImageUrl}}}?wid=245&fmt=pjpeg 245w, {{{fullImageUrl}}}?wid=490&fmt=pjpeg&qlt=45 490w,
                     {{{fullImageUrl}}}?wid=335&fmt=pjpeg&qlt=90 335w, {{{fullImageUrl}}}?wid=670&fmt=pjpeg&qlt=45 670w,
                     {{{fullImageUrl}}}?wid=218&fmt=pjpeg 218w, {{{fullImageUrl}}}?wid=436&fmt=pjpeg&qlt=50 436w,
                     {{{fullImageUrl}}}?wid=264&fmt=pjpeg&qlt=80 264w, {{{fullImageUrl}}}?wid=528&fmt=pjpeg&qlt=35 528w"
             sizes="auto"
             src="{{{fullImageUrl}}}&fmt=pjpeg" alt="" itemprop="image"/>       
    </div>
    

Running the tests

JS Linting

To lint all JS files in the src/ directory and webpack config files.

npm run lint:js

SASS Linting

To check linting issues in all .scss and .sass files in src directory.

npm run lint:sass

A config file named .sass-lint.yml is added at the root folder which contains the list of files included for lint test and rules. This overrides the default config file which is available with same name in node_module.

Unit testing

To run all unit test files that end in .test.js

npm run test:unit

CI and Deployment

Concourse

We have extensive Concourse documentation which can be found here!

Deployment

Concourse

Before you can deploy your pipeline you will need to update TEAM_NAME in /ci/deploy-ci-dachs.sh to your concourse team name.

In majority of the cases deployment should be done via Concourse following the steps listed below:

  1. Run ./deployment/deploy-ci.sh target hash providing two arguments:

    • target: target environments (dev or prod). Please note: multiple environments can be supplied if necessary
    • hash: hash of the last commit which should be included in the release
  2. This will create a new tag in the project repo's master branch which will be picked up by the Concourse pipeline.

  3. At this point you should be able to go to Concourse and see how the build is progressing.

Please note: this style of deployment can ONLY be done on master, it is not possible to deploy from a branch.

Emergency local deployment

Emergency local deployment is created for the cases where Concourse is unavailable but deployment needs to proceed. To run emergency deploy the following prerequisites must be met.

cf-cli installation

On Mac

  1. Tap the Cloud Foundry formula repository:

    brew tap cloudfoundry/tap
    
  2. Install the cf-cli:

    brew install cf-cli
    

On Linux

Use instructions provided in the Cloud Foundry documentation.

Autopilot installation
  1. Download correct binary from the Autopilot's latest release page.

  2. Make binary executable by running

    chmod a+x path_to_your_downloaded_binary
    
  3. Then

    cf install-plugin path_to_your_downloaded_binary
    
Running emergency deployment
  1. Checkout commit you want to deploy to your local machine.

  2. Run ./deployment/deploy-emergency.sh target hash providing two arguments:

    • target: is the environment you wish to deploy to
    • hash: is the git hash of the commit you wish to deploy

    As with deployment from Concourse, this will create a tag on your current branch as a record of deployment.

How to

How to make a new page

  1. Create a new handlebars template in the views directory.

  2. In src/server/routes create a new directory with the handlers and routes you need. Don't forget to load them in src/server/routes/index.js

  3. If you want client-side JavaScript and CSS, create a directory in src/client. Add an entry point to the JavaScript file in webpack.config.js. Require the SCSS file in the javascript file in order for it to be recognised by the build system.

    /src
        /client
            /examplePage
                examplePage.js
                examplePage.scss
        /server
            /routes
                /examplePage
                    handlers.js
                    handlers.test.js
                    routes.js
            /views
                examplePage.hbs
        index.js      <-- Edit        
    webpack.config.js  <-- Edit
    

How to add a new pattern

  1. Decide whether the new pattern is an element, component or module.

  2. Select an appropriate name for the pattern.

  3. Then:

    npm run new:pattern [location of pattern] [name of pattern]
    

    The location of the pattern assumes that the path will continue from ./lib/mns-fe-patterns/* For example, if I wanted to create an element called house:

    npm run new:pattern elements house
    
  4. If the generation is successful, you will find your pattern with the skeleton files:

    • house/
      • data.json
      • markup.hbs
      • meta.json
      • base.scss
      • house.test.js
    • house.scss
  5. NOTE: The generator is not capable of adding directories to paths therefore it is imperative to ensure that all directories listed in the path already exist. For example, if I had a folder of elements but wanted to create the house pattern in a subfolder called houses, the build would fail without the creation of the houses directory prior to the generation of the house pattern.

mns-fe-deployment changes

At current state a set of changes need to be made every time you update mns-fe-deployment.

  1. Delete pipelines/build-test-deploy-sit3 folder.

  2. Rename pipelines/publish-to-npm/publish-to-npm.optional.yml to publish-to-npm.optional.pipe.yml.

  3. Copy contents of pipelines/publish-to-npm/resources.optional.yml into dashboard.yml replacing the sit3 resource.

  4. Edit pipelines/test-pull-request/test-pull-request.sh and comment out this code

    echo "== Run acceptance tests with saucelabs =="
    
    npm run bundle
    
    npm run start:cf &
    
    npm run test:ui:sauce:ci
    

Contact

Team Pegasus

FAQs

Package last updated on 22 Dec 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc