Skip to content

Support for third-party generator blueprints #2618

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
mischkl opened this issue Oct 10, 2016 · 19 comments
Closed

Support for third-party generator blueprints #2618

mischkl opened this issue Oct 10, 2016 · 19 comments
Assignees
Labels
feature Issue that requests a new feature P5 The team acknowledges the request but does not plan to address it, it remains open for discussion type: faq

Comments

@mischkl
Copy link

mischkl commented Oct 10, 2016

I actually have no experience with this feature on Ember, but I see that ember-cli has it and I think would be a great boon to angular-cli: the ability for the user to generate code from their own blueprints, or to use third party ones installed via npm. I guess this could be part of the "add-ons" functionality I've heard rumors about. ;)

Example use cases would be generating routes for UI-Router, generating stores for ngrx or Redux, generating GraphQL endpoints for use with angular2-apollo, generating style guides or other kinds of documentation, and on and on - the imagination of the GitHub community would be the limit. :)

Note: I realize Yeoman can already accommodate some use cases, but it's not really designed to deal with existing projects, it can't use/extend the angular-cli API, and in all likelihood anyone using angular-cli won't give it a second look.

@filipesilva
Copy link
Contributor

This is on our radar for the addon system actually.

@filipesilva filipesilva added feature Issue that requests a new feature P5 The team acknowledges the request but does not plan to address it, it remains open for discussion labels Oct 10, 2016
@mischkl
Copy link
Author

mischkl commented Oct 10, 2016

@filipesilva awesome, glad to hear it. :)

@christopherthielen
Copy link

I'd like to add support for routing with ui-router-ng2. What are the current ideas for how third party support might be implemented?

@filipesilva
Copy link
Contributor

Heya @christopherthielen! There isn't a public plan available for third party blueprints yet. It's mostly a post 1.0 concern at the moment.

I think the best you can do currently is provide some instructions on how to modify a newly generated project to use ui-router-ng2. Let me know if you have any trouble doing it.

@CesarD
Copy link

CesarD commented Aug 10, 2017

Any news on this matter?
Is it being actively worked on or still in the drawer?

@filipesilva
Copy link
Contributor

Support for custom blueprints was added in #7090, available in 1.4.0-beta.1 and up. It's based on @angular-devkit/schematics: https://github.com/angular/devkit/tree/master/packages/schematics/angular.

We don't yet have documentation and examples of how you can make your own but @Brocco is working on it.

@CesarD
Copy link

CesarD commented Aug 21, 2017

Any schedule you might be working on for the release of a stable 1.4.0 version? Perhaps within the next 30 days? Just curious.
Thanks! 😃

@filipesilva
Copy link
Contributor

@CesarD yeah most likely. It's in rc.2 right now so it shouldn't take long at all.

@kerihobo
Copy link

Hi is there any further news on this? I would love to be able to automate my new components being added to my router and also to set some defaults to my generated constructors, I would also like every component to be able to utilize my main stylesheet.

@bmayen
Copy link

bmayen commented Mar 23, 2018

Support for custom blueprints was added in #7090 , available in 1.4.0-beta.1 and up. It's based on @angular-devkit/schematics : https://github.com/angular/devkit/tree/master/packages/schematics/angular .

@CesarD
Copy link

CesarD commented Mar 25, 2018

Documentation on how to use it? Anywhere?????

@kerihobo
Copy link

Yeah plz.

@k-vekos
Copy link

k-vekos commented Jan 23, 2019

Documentation on how to use it? Anywhere?????

This would be nice!

@CesarD
Copy link

CesarD commented Jan 23, 2019

@k-vekos
Copy link

k-vekos commented Jan 28, 2019

I want to create a custom schematic for my Angular SPA application. Right now I only really want to modify the existing schematic for "component", and only to alter the HTML and TypeScript template and I only need it to be available inside the scope of this one SPA project, so I don't need a library necessarily.

@CesarD your articles go over making a custom schematic collection but both seem to imply creating this schematic collection as a separate library. I'd rather not have to build another library in addition to my SPA. If possible I'd rather have the custom schematic be part of my SPA project/code. As it stands I would need to create a schematic collection somewhere in my project repository, check in the source, then when a developer wants to develop with the app they need to build the schematic project, then npm link it. This doesn't sound like an ideal workflow.

@CesarD
Copy link

CesarD commented Jan 28, 2019

@k-vekos well, it actually is a library to add. Think about it as a library for the angular-cli. You need to have it installed to later use it on any angular project you want.
Also, any schematic needs to live inside a collection, so that's why you need to start with the collection.

AFAIK, schematics cannot be made to run within an app. And I don't think it would make sense otherwise, as they are not necessarily part of an app, but as something aside of it to just generate some of its components.

@k-vekos
Copy link

k-vekos commented Jan 28, 2019

@CesarD it makes perfect sense to me that they would be beneficial if it were possible to scope them to a single application. Simply being able to add boilerplate code when adding a new service or component to an existing application would be a use case for schematics.

Actually, the author of one of the articles you linked would seem to agree with me:

Schematics can also be used to easily introduce and enforce project wide conventions. This can in turn greatly reduce ramp up time for new developers joining ongoing projects.

@CesarD
Copy link

CesarD commented Jan 29, 2019

Yes, that is exactly their purpose, and that's why I also wanted them.
That said, they still operate outside of the scope of the app, at a CLI level.
When I wanted to make schematics, I was looking forward to be able to make schematics that I could use in several apps to keep coherence among my projects (services made the same way, CRUD modules made the same way, security implementation with OIDC, etc), so I could use and reuse the same patterns. I think that's the main purpose of schematics.
Anyway, it's just my point of view and perhaps the one used by the team when designing the schematics.
Perhaps there's a way to do what you want, just not as straight as it's shown in those articles.

@angular-automatic-lock-bot
Copy link

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.

@angular-automatic-lock-bot angular-automatic-lock-bot bot locked and limited conversation to collaborators Sep 9, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
feature Issue that requests a new feature P5 The team acknowledges the request but does not plan to address it, it remains open for discussion type: faq
Projects
None yet
Development

No branches or pull requests

7 participants