In the first part of this post we ended up with a simple but repetitive solution to wrapping Angular Material button in a custom component. In this...
For further actions, you may consider blocking this person and/or reporting abuse
Hi Dzhavat,
Thanks a lot for this blog post and the idea behind it.
I think it's a good approach, but I wondere how you would manage some important properties for buttons, like disabled and type ('submit').
When we use ngComponentOutlet we can't use input. Maybe we would have to create other types of components, for submit it could be fine, but for disabled, which is supposed to be dynamic, it might be harder.
Hi Benoît,
Thanks for you comment.
We're using this approach on a button component at work. We recently had a use case where we had to change the type of one button to
submitand another one tobutton. What we did was we introduced a new property. We changed thetypeproperty to accept a type (i.e.submitorbutton,buttonbeing the default) and we added avariantwhich could beprimary,secondaryortext.As for the disabled attribute, the
ngComponentOutlethas aninjectorinput which can be used to inject values. How we use it is to provide a custom token, which is also injected in the internal components as well. This way it's possible to pass dynamic values. If you're interested in knowing more, I can point you to some examples. Hope some of this helps you :)Hi Dzhavat,
Thanks a lot for your reply. Yes I learnt than we can use an
injectorin thengComponentOutlet paramsbut I didn't succeed making it work yet. If you have an example, it would be helpful :-)Sure :)
In this code you can see how we create the
injectorwhich is later passed tongComponentOutletin the template. We providedisabledAttributeTokenwhich is injected in all internal buttons to control the disabled state. The same way we inject thetypeattribute.Hi Dzhavat,
Thanks a lot for this example ! It will help a lot, hopefully not only me :-)
Have a nice day !
Hi Dzhavat,
I could successfully implement my version on your button ;-)
I faced a problem regarding the disabled property. It works well on instanciated buttons, but, when listening to click event on the wrapper, you still get the event, even if the button is disabled.
I tried to preventDefault/stopPropagation the click event from the Host but it didn't work.
Finally I did this :
I don't know if you faced that problem yet :-)
Hey Benoît,
Thanks for you letting me know about this. I haven't faced this issue before/yet. Do you have an example with the problem? I quickly put together a StackBlitz with my interpretation of your description and I'm not seeing the problem.
If you see the
button-overview-example.htmlfile, on line 4 I have added thedisabledproperty and aclicklistener. Right now thedisabledproperty istrue. If you click it, nothing is printed to the console. However, if you change it tofalse, clicking on the button will print a message to the console. Is my solution similar to yours? If not, what is different? :)Hi Dzhavat,
Thank you for your reply and the StackBlitz example ;-)
When I click on your disabled button, I see the console.log() in the console. See my screenshot. That's strange if you don't have this behaviour.
Image upload doesn't seem to work...
Hi Benoît,
You're right! There's something strange going on. I'm testing it in Firefox and it works fine. No console log on disabled button. In Edge and Chrome however it doesn't work and can see the console log when the button is disabled but not when it's enabled. Which is even more strange :D
Will have to dig deeper :)
Hi Dzhavat,
I should have tell you with which browser I tested ;-) But yes, that's very strange you have a different behaviour with Firefox on such a basic case...
As we listen to the click on host element, it seems logic to me that the event is still emitted even if a child button is disabled. The workaround I found, not ideal, is to use
pointer-eventsnoneorautodepending on disabled value. I tried to work with HostListener to preventDefault on click, which seems more clean to me, but it didn't work...Hi Dzhavat,
I think a better way should to emit a custom event from the Button Host when user click on a real button. We won't have a kind of fake
clickevent but abuttonClickevent, emitted from the button. Getting thisbuttonClickcould also remove confusion with the realclickevent.I will follow this idea this week and let you know.
I'm also thinking about the way I will use
alink tag, which can have a taste ofbuttonthanks to Angular Material, but is a link.I tried to recreate an isolated StackBlitz with the issue. Yes, Firefox doesn't emit the click event, whereas Chrome/Edge do (haven't tested in other browsers). I think your suggestion makes sense. Even though I'd have preferred to only use the
clicklistener. Let me know about your findings when you try it :)Hi Dzhavat,
I tested on Safari and the click event is emitted too, like Chrome/Edge.
Let's keep in touch about that !
I got some suggestion for how to fix this on Twitter. Looks like using
pointer-events: nonewhen the button is disabled fixes the issue. Created a StackBlitz :)Hi Dzhavat,
Yes that's what I did but I think it's not ideal. I think it's more safe to listen to the real button target click event.
I tried another approach, creating the Component manually and listening directly to the button instance. Then emitting a
btnClickevent with the event coming from the real button. My button wrapper ispointer-events:none, always, and only the child button ispointer-event:auto.Here is the template :
Here is the buildComponent function :
My buttons implements the
ButtonTemplateinterfaceI'm going on on with it, I'll let you know if it's fine. I plan also to manage not only
<button>but<a>too, which may have the look of buttons.Hi Dzhavat,
The way the component was created, with static providers, made the properties on the wrapper impossible to be bound on the final button component. Once the disabled property was set, it couldn't be updated.
I found a way to be able to update value from Wrapper to button instance.
I created a private validateDisabled function which update the button instance isDisables @Input (which is no more injected).
Calling ngOnChange on the dynamically created component seems to be the only way to force the update of the component's properties.
The
ButtonTemplatenow has more propertiesFor example, here is the
AccentButtonComponentHey Benoît,
Thanks for sharing your solution. Appreciate it!
I haven't looked at it in details yet but will do that in the coming days and share my thoughts :)
Learned some good stuff in these two posts - thanks!
Thanks Dave. I'm glad to hear that 😊
Other parts will be coming as well :)
Cool, I look forward to it. ✌🏻