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

@evo/layout-constructor

v1.6.3

Published

Visual tool for constructing custom banner pages layout

Downloads

161

Readme

layout-constructor

Visual tool for constructing custom banner pages layout

Installation

The package can be installed via NPM:

npm install layout-constructor --save

Dependencies

You’ll need to install some dependencies separately since they aren’t included in the package:

  • react
  • react-dom
  • prop-types
  • classnames
  • autobind-decorator
  • rx
  • tanok

Example

Here's simple usage example:

import LayoutConstructor from 'layout-constructor';
import 'layout-constructor/dist/index.min.css';

const node = document.getElementById('app');
const presetTemplates = [
    {
        id: '4_columns',
        children: [
            { column: 1, row: 1 },
            { column: 2, row: 1 },
            { column: 3, row: 1 },
            { column: 4, row: 1 },
        ]
    },
    {
        id: '3_columns_2_left_big',
        children: [
            { column: [1, 2], row: 1 },
            { column: 3, row: 1 },
            { column: 4, row: 1 },
        ]
    },
    {
        id: '3_columns_2_middle_big',
        children: [
            { column: 1, row: 1 },
            { column: [2, 3], row: 1 },
            { column: 4, row: 1 },
        ]
    },
    {
        id: '3_columns_2_right_big',
        children: [
            { column: 1, row: 1 },
            { column: 2, row: 1 },
            { column: [3, 4], row: 1 },
        ]
    },
    {
        id: '2_columns',
        children: [
            { column: [1, 2], row: 1 },
            { column: [3, 4], row: 1 },
        ]
    },
    {
        id: '1_column',
        children: [
            { column: [1, 2, 3, 4], row: 1 }
        ]
    },
];
const importJSON = null; // or an exported JSON you want to load
const onExportJSON = null; // or a callback which will receive data in JSON format
const onUploadImage = (file) => {
    console.log('onUploadImage was called with ', file);
    return Promise.resolve({
        id:  1,
        src: 'https://static-cache.ua.uaprom.net/image/portal/UA/logo.png'
    });
};

LayoutConstructor(node, { presetTemplates, importJSON, onExportJSON, onUploadImage });

Note that you need to require css file from this package. This example will work if your build system supports requiring css files (webpack is one that does).

presetTemplates is an array of block structures that will be available for building your layout. In this example your presets will look like this:

Demo

You can try it out on the Demo page

Development

You must be part of @evo organization on NPM

npm publish --access public

Testing

Only smoke tests implemented using mocha, chai and istanbul. Feel free to extend.

vagga test

or if you want coverage

vagga cover-test