コンテンツ・レイアウト・コンパイラ

指定されたコンテンツ・タイプのコンテンツ・アイテムが公開されたときに、コンテンツ・レイアウト・コンパイラによりコンテンツ・レイアウトのHTMLが出力されます。

コンパイル時に、cec compile-contentコマンドは、コンポーネントのrender.jsファイルと同じ場所でcompile.jsファイルを検索します。

  • src
    • components
      • <yourComponent>
        • assets
          • render.js
          • compile.js

このファイルが存在しない場合、レイアウトはコンパイルされず、実行時にレンダリングされます。

ファイルが存在する場合、約束を返すcompile()インタフェースを実装する必要があります。次にコンテンツ・レイアウト・コンパイラ、続いて結果のlayout.html出力の例を示します:

var fs = require('fs'),
        path = require('path'),
        mustache = require('mustache');

var ContentLayout = function (params) {
        this.contentClient = params.contentClient;
        this.contentItemData = params.contentItemData || {};
        this.scsData = params.scsData;
};

ContentLayout.prototype = {
        contentVersion: '>=1.0.0 <2.0.0',

        compile: function () {
                var compiledContent = '',
                        content = JSON.parse(JSON.stringify(this.contentItemData)),
                        contentClient = this.contentClient;

                // Store the id
                content.fields.author_id = content.id;

                if (this.scsData) {
                        content.scsData = this.scsData;
                }

                try {
                        // add in style - possibly add to head but inline for simplicity
                        var templateStyle = fs.readFileSync(path.join(__dirname, 'design.css'), 'utf8');
                        content.style = '<style>' + templateStyle + '</style>';

                        var templateHtml = fs.readFileSync(path.join(__dirname, 'layout.html'), 'utf8');
                        compiledContent = mustache.render(templateHtml, content);
                } catch (e) {
                        console.error(e.stack);
                }

                return Promise.resolve({
                        content: compiledContent,
                        hydrate: true
                });
        }
};

module.exports = ContentLayout;

結果のlayout.htmlはWebアプリケーション内、またはコンテンツ・レイアウトの静的HTML出力が必要などの場所にも挿入できます。layout.htmlは、compile.jsファイルと同じディレクトリに出力されます。

{{{style}}}
{{#fields}}
<div class="author-container">
    <span class="author-name" onclick='{{scsData.contentTriggerFunction}}("starter-blog-post_author eq \"{{author_id}}\"")'>{{starter-blog-author_name}}</span>
{{/fields}}