JavaScript in BEMJSON

21 January 2014

We usually start developing a web site prototyping the interface and then implementing HTML/CSS and bacis JavaScript. In case of using the full BEM stack a tranformation from prototype to a functioning web site goes smoothly. You can clone the project from project-stub and create a static web page as it was described earlier.

Thanks to BEMHTML templates, you do not need write all the HTML manually. Describing page sructure in BEMJSON rather than writing all the tags manually saves time. But sometimes this is still a lot of work to do, especially for large pages.

Luckily BEMJSON can include JavaScript pieces to produce some blocks dymamically. I created an example of such usage:

({
    block: 'page',
    ...
    content:[
        ...
        {
            block: 'content',
            content: (function() {
                var res = [];
                for(var i = 0; i < 10; i++) {
                    res.push({
                        block: 'button',
                        content: 'Button ' + (i + 1)
                    });
                }
                return res;
            })()
        },
        ...
    ]
})

full code

This JavaScript creates 10 button blocks when the page is being built with bem-tools. Check the result page to see them.

Another example is a menu block. Such interface pieces usually consist of a lot of items with minor differences which cases a lot of copy-paste on a page. With JavaScript in BEMJSON this can be easily reduced.

({
    block: 'page',
    ...
    content:[
        ...
        {
            block: 'menu',
            content: [
                {
                    title: 'Index',
                    isSelected: false,
                },
                {
                    title: 'Products',
                    isSelected: true
                },
                {
                    title: 'Contact',
                    isSelected: false
                }
            ].map(function(item){
                var block = {
                    block: 'menu',
                    elem: 'item',
                    content: item.title,
                    mods: {
                        selected: item.isSelected
                    }
                };
                return block;
            })
        },
        ...
    ]
})

full code

This gives a page with a menu of 3 items. The bigger is the array of items, the more you save. Especially when the structure of every item changes while developing.

Indeed, this feature is not needed when BEMJSON is a result of 1st layer templates (like BEMTREE, priv.js) you can produce as much BEMJSON as is necessary. But with initial development of a static web page, the JavaScript tricks help to avoid copy-paste.

You can hire me and the whole Bridge-the-Gap team to set up, manage, develop, and champion your design system. I can align the design and development processes in your organisation for a larger business impact.

© Varya Stepanova 2024