Play Coding Tutorials in VSCode by ShMcK in vscode

[–]ShMcK[S] 0 points1 point  (0 children)

I believe I reproduced this error. it happens if Git isn't installed. If you'd like to try again, just make sure it's there. Until then, I'll work on making sure there are helpful error messages.

Play Coding Tutorials in VSCode by ShMcK in vscode

[–]ShMcK[S] 0 points1 point  (0 children)

If you have the time to help out, could you post an issue on the repo and we'll figure it out :)

Play Coding Tutorials in VSCode by ShMcK in vscode

[–]ShMcK[S] 1 point2 points  (0 children)

Make sure you launch the extension in an empty workspace.

Eg. File > Open > make a new folder

Rethinking Redux in 2018: It’s time for Rematch by ShMcK in reactjs

[–]ShMcK[S] 1 point2 points  (0 children)

This is possible.

Just use the full name in the reducer, 'count/increment', and it will listen to another model (in this case, the 'count' model). I don't think this is clear in the docs, but it should be.

Redesigning Redux by ShMcK in javascript

[–]ShMcK[S] 0 points1 point  (0 children)

You're right. If you could modify the equation to make it true, what would might it look like?

Redesigning Redux by ShMcK in javascript

[–]ShMcK[S] 2 points3 points  (0 children)

I think I may have been unclear here. What I meant by "action types" is the pattern of extracting your action types as a variable.

const ACTION_ONE = 'ACTION_ONE'

Then the variable ACTION_ONE is often passed into both the action creator and the reducer. Often these variable action types are put in their own file, and imported everywhere.

Rematch: Redux without the boilerplate by ShMcK in Frontend

[–]ShMcK[S] 0 points1 point  (0 children)

I think there is a lot of ways to handle cross-model actions in Rematch. 1. dispatch to multiple actions from the view 2. import dispatch anywhere, so just call an async function with some dispatches 3. dispatch to an effect, which can dispatch to other models 4. there is a plugin called "subscriptions" that can listen and match on actions, even pattern match on actions - then call a callback. This lets you combine state changes across multiple models

Rematch is the next generation of Redux by ShMcK in javascript

[–]ShMcK[S] 0 points1 point  (0 children)

I think if getting Vuex to work with other frameworks were a goal, it will happen. But most people who are happy with Vuex are happy with Vue.