Nx Devtools

Smart, Fast and Extensible Build System with First-Class Monorepo Support

Follow publication

MacGyvering Directives

Isaac Mann
Nx Devtools
Published in
5 min readJun 17, 2019

--

MacGyvering (Photo by jose aljovin on Unsplash)
@Directive({
selector: ‘[someDirective]’,
})
export class SomeDirective {}

1. Extend the Directive

export class ExtendedDirective extends SomeDirective {
constructor() {
super(/* 🔜🔥😭🔥 */);
}
}

Usage:

<div someDirective></div>

Pros:

Cons:

Example:

Lost in the jungle (Photo by Ruben Ramirez on Unsplash)

2. Combine two directives in one selector

@Directive({ selector: ‘[combinedDirective]’ })
export class ExtendedDirective extends SomeDirective { /* keep this empty */ }
@Directive({ selector: ‘[combinedDirective]’ })
export class OtherExtendedDirective extends SomeOtherDirective { /* keep this empty */ }
@Directive({ selector: ‘[combinedDirective]’ })
export class CombinedDirective {
// Combined logic goes here
constructor(
@Host() public someDirective: ExtendedDirective,
@Host() public someOtherDirective: OtherExtendedDirective,
) {}
}

Usage:

Instead of this:
<div someDirective someOtherDirective></div>
You can now do this:
<div combinedDirective></div>

Pros:

Cons:

Hooking on (Photo by Efe Kurnaz on Unsplash)

Example:

@Directive({ selector: ‘[enhancedContextMenu]’ })
export class ExtendedMatTooltipDirective extends MatTooltipDirective { /* keep this empty */ }
@Directive({ selector: ‘[enhancedContextMenu]’ })
export class ExtendedContextMenuDirective extends ContextMenuDirective { /* keep this empty */ }
@Directive({ selector: ‘[enhancedContextMenu]’ })
export class EnhancedContextMenuDirective {
// Combined logic goes here
constructor(
@Host() public tooltip: ExtendedMatTooltipDirective,
@Host() public contextMenu: ExtendedContextMenuDirective,
) {}
@HostListener('mouseenter')
disableTooltip() {
this.tooltip.disable();
}
@HostListener('mouseleave')
enableTooltip() {
this.tooltip.enable();
}
// other logic
}

3. Have the user add a modifier directive

@Directive({
selector: ‘[someDirective][extendingDirective]’,
})
export class ExtendingDirective {
constructor(@Host() public someDirective: SomeDirective) {}
}

Usage:

<div someDirective extendingDirective></div>

Pros:

Cons:

Would you like fries with that? (Photo by Taylor Harding on Unsplash)

Example:

@Directive({
selector: ‘[matTab][formTab]’,
})
export class FormTabDirective {
@ContentChildren(FormControl) formControls: QueryList<FormControl>;
constructor(@Host() public tab: MatTabDirective) {} focusIfInvalid() {
if(this.formControls.some(control => control.invalid)) {
this.tab.focus();
}
}
}

4. Attach a modifier directive globally

@Directive({
selector: ‘[someDirective]’,
})
export class AttachedDirective {
constructor(@Host() public someDirective: SomeDirective) {}
}

Usage:

<div someDirective></div>

Pros:

Cons:

Welded together (Photo by Maxime Agnelli on Unsplash)

Example:

@Directive({
selector: ‘[matButton]’,
})
export class NoRippleMatButtonDirective {
constructor(@Host() public button: MatButton) {
this.button.disableRipple = true;
}
}

Conclusion

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in Nx Devtools

Smart, Fast and Extensible Build System with First-Class Monorepo Support

Responses (3)