Pinia
Pronounced like the fruit, in Spanish Piña
Piña is also an invalid package name...
🍍Type Safe Modular and lightweight (but Experimental) Store for Vue based on the composition api
Demo (TODO link)
⚠⚠⚠ This project is experimental, it's an exploration of whan a Store could be like using the composition api. It works for Vue 2 by using the official library.
What I want is to maybe inspire others to think about ways to improve Vuex.
There are the core principles that I try to achieve with this experiment:
- Flat modular structure 🍍 No nesting, only stores, compose them as needed
- Light layer on top of Vue 💨 keep it under 1kg gzip
- Only
state
and getters
👐 patch
is the new mutation - Actions are just functions ⚗️ Group your business there
- import what you need, let webpack code split 📦 And you won't need modules!
- SSR support ⚙️
- DevTools support 💻 Which is crucial to make this enjoyable
FAQ
A few notes about the project and possible questions:
Q: Does this replace Vuex, is it its successor?
A: No, or at least that's not the main intention
Q: What about dynamic modules?
A: Dynamic modules are not type safe, so instead we allow creating different stores that can be imported anywhere
Roadmap / Ideas
Installation
yarn add pinia
npm install pinia
Usage
Creating a Store
You can create as many stores as you want, and they should each exist in isolated files:
import { createStore } from 'pinia'
export const useMainStore = createStore(
'main',
() => ({
counter: 0,
name: 'Eduardo',
}),
{
doubleCount: state => state.counter * 2,
}
)
createStore
returns a function that has to be called to get access to the store:
import { useMainStore } from '@/stores/main'
export default createComponent({
setup() {
const main = useMainStore()
return {
main,
state: main.state,
}
},
})
There is one important rule for this to work: the useMainStore
(or any other useStore function) must be called inside of deffered functions. This is to allow the Vue Composition API plugin to be installed. **Never, ever call useStore
like this:
import { useMainStore } from '@/stores/main'
const main = useMainStore()
export default createComponent({
setup() {
return {}
},
})
Once you have access to the store, you can access the state
through store.state
and any getter directly on the store
itself as a computed property (from @vue/composition-api
) (meaning you need to use .value
to read the actual value on the JavaScript but not in the template):
export default createComponent({
setup() {
const main = useMainStore()
const text = main.state.name
const doubleCount = main.doubleCount.value
return {}
},
})
state
is the result of a ref
while every getter is the result of a computed
. Both from @vue/composition-api
.
Mutating the state
To mutate the state you can either directly change something:
main.state.counter++
or call the method patch
that allows you apply multiple changes at the same time with a partial state
object:
main.patch({
counter; -1,
name: 'Abalam',
})
The main difference here is that patch
allows you to group multiple changes into one single entry in the devtools.
Replacing the state
Simply set it to a new object;
main.state = { counter: 666, name: 'Paimon' }
SSR
The main part about SSR is not sharing state
between requests. So we can pass true
to useStore
once when getting a new request on the server. If we follow the SSR guide, our createApp
should look like this:
export function createApp() {
const store = useStore(true)
store.state.counter++
const app = new Vue({
render: h => h(App),
})
return { app, store }
}
Actions
Actions are simply function that contain business logic. As with components, they must call useStore
to retrieve the store:
export async function login(user, password) {
const store = useUserStore()
const userData = await apiLogin(user, password)
store.patch({
name: user,
...userData,
})
}
Composing Stores
Composing stores may look hard at first glance but there is only one rule to follow really:
If multiple stores use each other or you need to use multiple stores at the same time, you must create a separate file where you import all of them.
If one store uses an other store, there is no need to create a new file, you can directly import it. Think of it as nesting.
Shared Getters
If you need to compute a value based on the state
and/or getters
of multiple stores, you may be able to import all the stores but one into the remaining store, but depending on how your stores are used across your application, this would hurt your code splitting as you importing the store that imports all others stores, would result in one single big chunk with all of your stores.
To prevent this, we follow the rule above and we create a new file:
import { computed } from '@vue/composition-api'
import { useUserStore } from './user'
import { useCartStore } from './cart'
export const summary = computed(() => {
const user = useUserStore()
const cart = useCartStore()
return `Hi ${user.state.name}, you have ${cart.state.list.length} items in your cart. It costs ${cart.price}.`
})
Shared Actions
When an actions needs to use multiple stores, we do the same, we create a new file:
import { useUserStore } from './user'
import { useCartStore, emptyCart } from './cart'
export async function orderCart() {
const user = useUserStore()
const cart = useCartStore()
try {
await apiOrderCart(user.state.token, cart.state.items)
emptyCart()
} catch (err) {
displayError(err)
}
}
Related
License
MIT