Vorpal命令上下文

时间:2018-04-02 08:06:13

标签: javascript node.js vorpal.js

我正在开发一个基于Vorpal(http://vorpal.js.org/)并因此使用NodeJs的命令行应用程序。

我想知道是否有办法根据上下文允许(并在帮助中列出)命令。

例如,我可能希望有可能在上下文1上执行命令A和B,在上下文2中执行命令C和D.然后我将有一个命令来切换应始终有效的上下文。

1 个答案:

答案 0 :(得分:3)

您需要合并函数show并重新定义上下文的exit函数。简化的实现示例:

var Vorpal = require('vorpal')
var mainDelimiter = 'main'
var main = new Vorpal().delimiter(mainDelimiter + '>')

var contexts = [
    {
        name: 'context1', help: 'context1 help',
        init: function (instance) {
            instance
                .command('A', 'A help')
                .action(function (args, cb) {
                    this.log('A...')
                    cb()
                })
            instance
                .command('B', 'B help')
                .action(function (args, cb) {
                    this.log('B...')
                    cb()
                })
        }
    },
    {
        name: 'context2', help: 'context2 help',
        init: function (instance) {
            instance
                .command('C', 'C help')
                .action(function (args, cb) {
                    this.log('C...')
                    cb()
                })
            instance
                .command('D', 'D help')
                .action(function (args, cb) {
                    this.log('D...')
                    cb()
                })
        }
    }

]

contexts.forEach(function (ctx, i) {
    var instance = new Vorpal().delimiter(mainDelimiter + '/' + ctx.name + '>')
    ctx.init(instance)

    // Override the function "exit" for the context
    instance.find('exit').remove()
    instance
        .command('exit', 'Exit context')
        .action(function (args, cb) {
            // Switch to the main context
            main.show()
            cb()
        })
    main
        .command(ctx.name, ctx.help)
        .action(function (args, cb) {
            // Switch to the selected context
            instance.show()
            cb()
        })
})

main.show()