Angular Dynamically assign action to Button (Click)





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I have an array to store the alerts to display.



appLevelAlert



     const alert = {
message: 'Your account is not activated.'
+ ' Select the link in your email inbox to activate your account',
actionName: 'Resend Email',
action: 'resendEmail()'
};

this.appLevelAlert = this.appLevelAlert || ;
this.appLevelAlert.push(alert);


I would like to assign the resendEmail() in appLevelAlert.action to the (Click) of a button.



<clr-alert [clrAlertType]="'info'" [clrAlertAppLevel]="true" *ngFor='let alert of clarityAlertService.appLevelAlert'>
<clr-alert-item>
<span class="alert-text">
{{alert.message}}
</span>
<div class="alert-actions">
<button class="btn alert-action" (click)="[alert.action]">{{alert.actionName}}</button>
</div>
</clr-alert-item>




I'm not sure if this is possible, can anyone help me on this?










share|improve this question


















  • 1





    action: 'resendEmail()' in your example is a string, change it to an inline-function, then call it (click)="alert.action()"

    – enno.void
    Jan 3 at 9:03


















0















I have an array to store the alerts to display.



appLevelAlert



     const alert = {
message: 'Your account is not activated.'
+ ' Select the link in your email inbox to activate your account',
actionName: 'Resend Email',
action: 'resendEmail()'
};

this.appLevelAlert = this.appLevelAlert || ;
this.appLevelAlert.push(alert);


I would like to assign the resendEmail() in appLevelAlert.action to the (Click) of a button.



<clr-alert [clrAlertType]="'info'" [clrAlertAppLevel]="true" *ngFor='let alert of clarityAlertService.appLevelAlert'>
<clr-alert-item>
<span class="alert-text">
{{alert.message}}
</span>
<div class="alert-actions">
<button class="btn alert-action" (click)="[alert.action]">{{alert.actionName}}</button>
</div>
</clr-alert-item>




I'm not sure if this is possible, can anyone help me on this?










share|improve this question


















  • 1





    action: 'resendEmail()' in your example is a string, change it to an inline-function, then call it (click)="alert.action()"

    – enno.void
    Jan 3 at 9:03














0












0








0








I have an array to store the alerts to display.



appLevelAlert



     const alert = {
message: 'Your account is not activated.'
+ ' Select the link in your email inbox to activate your account',
actionName: 'Resend Email',
action: 'resendEmail()'
};

this.appLevelAlert = this.appLevelAlert || ;
this.appLevelAlert.push(alert);


I would like to assign the resendEmail() in appLevelAlert.action to the (Click) of a button.



<clr-alert [clrAlertType]="'info'" [clrAlertAppLevel]="true" *ngFor='let alert of clarityAlertService.appLevelAlert'>
<clr-alert-item>
<span class="alert-text">
{{alert.message}}
</span>
<div class="alert-actions">
<button class="btn alert-action" (click)="[alert.action]">{{alert.actionName}}</button>
</div>
</clr-alert-item>




I'm not sure if this is possible, can anyone help me on this?










share|improve this question














I have an array to store the alerts to display.



appLevelAlert



     const alert = {
message: 'Your account is not activated.'
+ ' Select the link in your email inbox to activate your account',
actionName: 'Resend Email',
action: 'resendEmail()'
};

this.appLevelAlert = this.appLevelAlert || ;
this.appLevelAlert.push(alert);


I would like to assign the resendEmail() in appLevelAlert.action to the (Click) of a button.



<clr-alert [clrAlertType]="'info'" [clrAlertAppLevel]="true" *ngFor='let alert of clarityAlertService.appLevelAlert'>
<clr-alert-item>
<span class="alert-text">
{{alert.message}}
</span>
<div class="alert-actions">
<button class="btn alert-action" (click)="[alert.action]">{{alert.actionName}}</button>
</div>
</clr-alert-item>




I'm not sure if this is possible, can anyone help me on this?







angular






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 3 at 8:57









scholarwithfirescholarwithfire

94210




94210








  • 1





    action: 'resendEmail()' in your example is a string, change it to an inline-function, then call it (click)="alert.action()"

    – enno.void
    Jan 3 at 9:03














  • 1





    action: 'resendEmail()' in your example is a string, change it to an inline-function, then call it (click)="alert.action()"

    – enno.void
    Jan 3 at 9:03








1




1





action: 'resendEmail()' in your example is a string, change it to an inline-function, then call it (click)="alert.action()"

– enno.void
Jan 3 at 9:03





action: 'resendEmail()' in your example is a string, change it to an inline-function, then call it (click)="alert.action()"

– enno.void
Jan 3 at 9:03












1 Answer
1






active

oldest

votes


















2














This is a simplified working example:



import { Component } from '@angular/core';

@Component({
selector: 'my-app',
template: `<p>{{alert.message}}</p>
<button type="button" (click)="alert.action()">{{alert.actionName}}</button>`
})
export class AppComponent {

readonly alert = {
message: 'Your account is not activated.',
actionName: 'Resend Email',
action: () => this.resendEmail()
};

resendEmail() {
console.log('send email');
}
}





share|improve this answer
























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54019047%2fangular-dynamically-assign-action-to-button-click%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    2














    This is a simplified working example:



    import { Component } from '@angular/core';

    @Component({
    selector: 'my-app',
    template: `<p>{{alert.message}}</p>
    <button type="button" (click)="alert.action()">{{alert.actionName}}</button>`
    })
    export class AppComponent {

    readonly alert = {
    message: 'Your account is not activated.',
    actionName: 'Resend Email',
    action: () => this.resendEmail()
    };

    resendEmail() {
    console.log('send email');
    }
    }





    share|improve this answer




























      2














      This is a simplified working example:



      import { Component } from '@angular/core';

      @Component({
      selector: 'my-app',
      template: `<p>{{alert.message}}</p>
      <button type="button" (click)="alert.action()">{{alert.actionName}}</button>`
      })
      export class AppComponent {

      readonly alert = {
      message: 'Your account is not activated.',
      actionName: 'Resend Email',
      action: () => this.resendEmail()
      };

      resendEmail() {
      console.log('send email');
      }
      }





      share|improve this answer


























        2












        2








        2







        This is a simplified working example:



        import { Component } from '@angular/core';

        @Component({
        selector: 'my-app',
        template: `<p>{{alert.message}}</p>
        <button type="button" (click)="alert.action()">{{alert.actionName}}</button>`
        })
        export class AppComponent {

        readonly alert = {
        message: 'Your account is not activated.',
        actionName: 'Resend Email',
        action: () => this.resendEmail()
        };

        resendEmail() {
        console.log('send email');
        }
        }





        share|improve this answer













        This is a simplified working example:



        import { Component } from '@angular/core';

        @Component({
        selector: 'my-app',
        template: `<p>{{alert.message}}</p>
        <button type="button" (click)="alert.action()">{{alert.actionName}}</button>`
        })
        export class AppComponent {

        readonly alert = {
        message: 'Your account is not activated.',
        actionName: 'Resend Email',
        action: () => this.resendEmail()
        };

        resendEmail() {
        console.log('send email');
        }
        }






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jan 3 at 9:23









        splashsplash

        11.5k3557




        11.5k3557
































            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54019047%2fangular-dynamically-assign-action-to-button-click%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            MongoDB - Not Authorized To Execute Command

            Npm cannot find a required file even through it is in the searched directory

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith