I'm writing my first Yeoman generator, which prompts the user for various inputs and conditionally creates files based on their responses. I need to be able to call a subroutine (could be a Yeoman sub-generator) based on user input, and pass arguments to it.
The reason I want to use named functions (which are not automatically run) is that sometimes the user's response should invoke a number of functions combined, and sometimes the function should be run alone.
What I have tried:
I figured sub-generators were the way to go, since I'm creating sets of files only if the user requests them. But I'm having trouble calling them conditionally and passing them the user-supplied input. I've tried using hookFor
, but I get the assertion error: hookFor must be used within the constructor only
. (Because I don't want it to be run by default, I'm calling the sub-generator from my this.prompt(prompts, function (props)
).
The question:
How do I call a routine only if the user requests it (via a prompt), and pass that routine some user-supplied information?
If you're kind enough to answer, please don't assume that I've tried something obvious ;-).
You can cover all possible execution scenarios, condition checking, prompting when composing generators together if you decouple generators and use a 'main-generator' the run context loop will help you. Use the
options
of.composeWith('my-genertor', { 'options' : options })
for passing configurations to composed generators.When using
.composeWith
a priority group function (e.g.:prompting
,writing
...) will be executed for all the generators, then the next priority group. If you call.composeWith
to generatorB from inside a generatorA, then execution will be, e.g.:If you want to control execution between different generators, I advise you to create a "main" generator which composes them together, like written on http://yeoman.io/authoring/composability.html#order:
2015-04 update: The yeoman api now includes
this.composeWith
as the preferred method for linking generators.docs: http://yeoman.io/authoring/composability.html
Let's consider you have a generator
generator-blog
(BlogGenerator) with two sub generators (blog-server and blog-client):So when you run
yo blog
you what to ask the user for some options and run (optionally) sub generators, right?To run a subgenerator you need to call
this.invoke("generator_namespace", {options: {}})
. The second argument we passed can haveoptions
field - it's options object which will be passed to the generator.In app\index.js:
In client\index.js:
UPDATE 2015-12-21:
Using
invoke
is deprecated now and should be replaced withcomposeWith
. But it's not as easy as it could be. The main difference betweeninvoke
andcomposeWith
is that now you have no ability to control subgenerators. You could only declare using them.Here's how
main
method from above should look like:Also I removed replaced
yeoman.generators.Base
withyeoman.Base
.