summaryrefslogtreecommitdiffstats
path: root/lib/api/decodePage.js
blob: c85dd1be96df2b308fe075a17b9a285a20f8760c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
var deprecate = require('./deprecate');

/**
    Decode changes from a JS API to a page object.
    Only the content can be edited by plugin's hooks.

    @param {Output} output
    @param {Page} page: page instance to edit
    @param {Object} result: result from API
    @return {Page}
*/
function decodePage(output, page, result) {
    var originalContent = page.getContent();

    // No returned value
    // Existing content will be used
    if (!result) {
        return page;
    }

    deprecate.disable('page.sections');

    // GitBook 3
    // Use returned page.content if different from original content
    if (result.content != originalContent) {
        page = page.set('content', result.content);
    }

    // GitBook 2 compatibility
    // Finally, use page.sections
    else if (result.sections) {
        page = page.set('content',
            result.sections.map(function(section) {
                return section.content;
            }).join('\n')
        );
    }

    deprecate.enable('page.sections');

    return page;
}

module.exports = decodePage;