🚀[FEATURE]: Navigate from this.store.dispatch(new SystemAction.LoadUser())
to @Action(SystemAction.LoadUser)
#2012
Unanswered
qq253498229
asked this question in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there any WebStorm plugin that allows quick navigation from
this.store.dispatch(new SystemAction.LoadUser())
to@Action(SystemAction.LoadUser)
?In development, I often navigate from where
this.store.dispatch(new SystemAction.LoadUser())
is called, such as a component/service, to the line@Action(SystemAction.LoadUser)
inmy.state.ts
. My previous approach was to search for all references of theSystemAction.LoadUser
class using option+F7, and usually I had to scroll down to the bottom to find the location of the@State
class file. This becomes frustrating when there are many calls. If there is a plugin that can help me navigate quickly, I would be happier to use ngxs for development.Beta Was this translation helpful? Give feedback.
All reactions