angular-formly: Default Options

Kent C. Dodds
InstructorKent C. Dodds
Share this video with your friends

Social Share Links

Send Tweet
Published 9 years ago
Updated 5 years ago

angular-formly allows you to keep your forms as DRY as possible. The optionsTypes property is one way of composing your field configurations to keep your forms light-weight and DRY.

[00:00] One of the big benefits to angular-formly is how it makes your code DRY. Here, we have a basic form with an IP address. It is validating that IP address for us. We're inlining all of this configuration into our field, but let's say that we wanted to add this IP address field elsewhere.

[00:16] We would have to copy and paste this same field configuration somewhere else. We don't want to have to do that. With formly, we don't have to. What we're going to do is create some default options using angular-formly's formlyConfig.

[00:30] We're going to do this during the run phase. We'll run a function that has a formlyConfig, and then we'll create a custom type that has our defaultOptions. We'll say, "formlyConfig.setType." The name of our type will be "IP Address." This will have defaultOptions.

[00:53] Inside of here, we'll take any of these options in here that we want to apply generally to IP addresses. I'm thinking that we'll take all of these options and stick them up inside of here. We'll remove that, and then we need to take our function. We'll stick it right here.

[01:13] Now, this input field is not being validated as an IP address. We need to reference this IP address type in our field configuration. We do this by specifying optionsTypes. We tell angular-formly where the defaultOptions are going to be coming from.

[01:30] The type where we're going to get our defaultOptions from is the IP address. We'll pass that in here. Now, it will pre-fill all of our defaults. We get the validation and everything, including the label and the placeholder.

[01:45] If we wanted to override any of these, we'd simply specify them. We say, "templateOptions," and then we'll say, "Our label is 'My IP Address.'" Now, we override these. Same goes with placeholder or anything else. It will be overridden.

[02:01] It's notable to mention that this actually differs from simply using a type that extends input in two important ways. First, this optionsTypes property is an array. It can have multiple types specified in here. Second, if I were to have a controller on this IP address, then you'll notice, if I console.log that scope, you're not going to get that console.log anywhere.

[02:26] It basically only takes the defaultOptions from this type. That's how it differs from extends or simply using the type, is that optionsTypes only takes into account the defaultOptions property. It's very beneficial for just storing defaultOptions and being able to compose those on top of your field configuration. That is how you use defaultOptions with angular-formly.

egghead
egghead
~ an hour ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today