Listen for dispatched action in Redux










0















I'm wondering if there's a way to listen for an action that's been successfully dispatched in redux?



In the ngxs state management library for Angular, I can do the following:



ngOnInit() 
this.actions$
.pipe(
ofActionSuccessful(AddedThingToDo),
map((event: AddedThingToDo) => event.thingToDo),
tap(thingToDo => console.log('Action was successfully dispatched'))
)
.subscribe();



Where I can then perform an action when I know that AddedThingToDo has been successfully dispatched. This could be something like closing a modal, or perhaps dispatching another action.



I'm using ng-redux for Angular 1.x, however I think the principle should remain the same that it would for react redux.



The only way I've been getting around it is with a callback in my actions, but it feels very wrong:



export const addThingToDo = (model: IThingToDo, onSuccess?: (model: IThingToDo) => void) =>
async (dispatch: Dispatch) =>
dispatch(addingThingToDo());
try
const createdItem = await api.post<IThingToDo>(url, model);
dispatch(addedThingToDo(createdItem));
if (onSuccess)
onSuccess(createdItem);


catch (ex)
dispatch(addThingToDoFailure(ex));

;









share|improve this question




























    0















    I'm wondering if there's a way to listen for an action that's been successfully dispatched in redux?



    In the ngxs state management library for Angular, I can do the following:



    ngOnInit() 
    this.actions$
    .pipe(
    ofActionSuccessful(AddedThingToDo),
    map((event: AddedThingToDo) => event.thingToDo),
    tap(thingToDo => console.log('Action was successfully dispatched'))
    )
    .subscribe();



    Where I can then perform an action when I know that AddedThingToDo has been successfully dispatched. This could be something like closing a modal, or perhaps dispatching another action.



    I'm using ng-redux for Angular 1.x, however I think the principle should remain the same that it would for react redux.



    The only way I've been getting around it is with a callback in my actions, but it feels very wrong:



    export const addThingToDo = (model: IThingToDo, onSuccess?: (model: IThingToDo) => void) =>
    async (dispatch: Dispatch) =>
    dispatch(addingThingToDo());
    try
    const createdItem = await api.post<IThingToDo>(url, model);
    dispatch(addedThingToDo(createdItem));
    if (onSuccess)
    onSuccess(createdItem);


    catch (ex)
    dispatch(addThingToDoFailure(ex));

    ;









    share|improve this question


























      0












      0








      0








      I'm wondering if there's a way to listen for an action that's been successfully dispatched in redux?



      In the ngxs state management library for Angular, I can do the following:



      ngOnInit() 
      this.actions$
      .pipe(
      ofActionSuccessful(AddedThingToDo),
      map((event: AddedThingToDo) => event.thingToDo),
      tap(thingToDo => console.log('Action was successfully dispatched'))
      )
      .subscribe();



      Where I can then perform an action when I know that AddedThingToDo has been successfully dispatched. This could be something like closing a modal, or perhaps dispatching another action.



      I'm using ng-redux for Angular 1.x, however I think the principle should remain the same that it would for react redux.



      The only way I've been getting around it is with a callback in my actions, but it feels very wrong:



      export const addThingToDo = (model: IThingToDo, onSuccess?: (model: IThingToDo) => void) =>
      async (dispatch: Dispatch) =>
      dispatch(addingThingToDo());
      try
      const createdItem = await api.post<IThingToDo>(url, model);
      dispatch(addedThingToDo(createdItem));
      if (onSuccess)
      onSuccess(createdItem);


      catch (ex)
      dispatch(addThingToDoFailure(ex));

      ;









      share|improve this question
















      I'm wondering if there's a way to listen for an action that's been successfully dispatched in redux?



      In the ngxs state management library for Angular, I can do the following:



      ngOnInit() 
      this.actions$
      .pipe(
      ofActionSuccessful(AddedThingToDo),
      map((event: AddedThingToDo) => event.thingToDo),
      tap(thingToDo => console.log('Action was successfully dispatched'))
      )
      .subscribe();



      Where I can then perform an action when I know that AddedThingToDo has been successfully dispatched. This could be something like closing a modal, or perhaps dispatching another action.



      I'm using ng-redux for Angular 1.x, however I think the principle should remain the same that it would for react redux.



      The only way I've been getting around it is with a callback in my actions, but it feels very wrong:



      export const addThingToDo = (model: IThingToDo, onSuccess?: (model: IThingToDo) => void) =>
      async (dispatch: Dispatch) =>
      dispatch(addingThingToDo());
      try
      const createdItem = await api.post<IThingToDo>(url, model);
      dispatch(addedThingToDo(createdItem));
      if (onSuccess)
      onSuccess(createdItem);


      catch (ex)
      dispatch(addThingToDoFailure(ex));

      ;






      javascript redux ngredux






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 16 '18 at 9:10







      Tom

















      asked Nov 15 '18 at 16:43









      TomTom

      1,3071917




      1,3071917






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Turns out redux-thunk supports returning promises, so I can just return a promise rather than use a callback method.



          export const addThingToDo = (model: IThingToDo) =>
          async (dispatch: Dispatch): Promise<IThingToDo> =>
          await new Promise<IThingToDo>(async (resolve, reject) =>
          dispatch(addingThingToDo());
          try
          const newItem = await api.post<IThingToDo>(url, model);
          dispatch(addedThingToDo(newItem));
          resolve(newItem);
          catch (ex)
          dispatch(addThingToDoFailure(ex));
          reject(ex);

          );


          this.addThingToDo(thingToDo)
          .then(t => navigateTo(`/things-to-do/$t.id`));





          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%2f53324131%2flisten-for-dispatched-action-in-redux%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









            0














            Turns out redux-thunk supports returning promises, so I can just return a promise rather than use a callback method.



            export const addThingToDo = (model: IThingToDo) =>
            async (dispatch: Dispatch): Promise<IThingToDo> =>
            await new Promise<IThingToDo>(async (resolve, reject) =>
            dispatch(addingThingToDo());
            try
            const newItem = await api.post<IThingToDo>(url, model);
            dispatch(addedThingToDo(newItem));
            resolve(newItem);
            catch (ex)
            dispatch(addThingToDoFailure(ex));
            reject(ex);

            );


            this.addThingToDo(thingToDo)
            .then(t => navigateTo(`/things-to-do/$t.id`));





            share|improve this answer



























              0














              Turns out redux-thunk supports returning promises, so I can just return a promise rather than use a callback method.



              export const addThingToDo = (model: IThingToDo) =>
              async (dispatch: Dispatch): Promise<IThingToDo> =>
              await new Promise<IThingToDo>(async (resolve, reject) =>
              dispatch(addingThingToDo());
              try
              const newItem = await api.post<IThingToDo>(url, model);
              dispatch(addedThingToDo(newItem));
              resolve(newItem);
              catch (ex)
              dispatch(addThingToDoFailure(ex));
              reject(ex);

              );


              this.addThingToDo(thingToDo)
              .then(t => navigateTo(`/things-to-do/$t.id`));





              share|improve this answer

























                0












                0








                0







                Turns out redux-thunk supports returning promises, so I can just return a promise rather than use a callback method.



                export const addThingToDo = (model: IThingToDo) =>
                async (dispatch: Dispatch): Promise<IThingToDo> =>
                await new Promise<IThingToDo>(async (resolve, reject) =>
                dispatch(addingThingToDo());
                try
                const newItem = await api.post<IThingToDo>(url, model);
                dispatch(addedThingToDo(newItem));
                resolve(newItem);
                catch (ex)
                dispatch(addThingToDoFailure(ex));
                reject(ex);

                );


                this.addThingToDo(thingToDo)
                .then(t => navigateTo(`/things-to-do/$t.id`));





                share|improve this answer













                Turns out redux-thunk supports returning promises, so I can just return a promise rather than use a callback method.



                export const addThingToDo = (model: IThingToDo) =>
                async (dispatch: Dispatch): Promise<IThingToDo> =>
                await new Promise<IThingToDo>(async (resolve, reject) =>
                dispatch(addingThingToDo());
                try
                const newItem = await api.post<IThingToDo>(url, model);
                dispatch(addedThingToDo(newItem));
                resolve(newItem);
                catch (ex)
                dispatch(addThingToDoFailure(ex));
                reject(ex);

                );


                this.addThingToDo(thingToDo)
                .then(t => navigateTo(`/things-to-do/$t.id`));






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 19 '18 at 10:19









                TomTom

                1,3071917




                1,3071917





























                    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%2f53324131%2flisten-for-dispatched-action-in-redux%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

                    Top Tejano songwriter Luis Silva dead of heart attack at 64

                    ReactJS Fetched API data displays live - need Data displayed static

                    政党