Skip to content

Commit

Permalink
doc: add upgrade information for Pinia migration
Browse files Browse the repository at this point in the history
NEXT-40449
  • Loading branch information
tajespasarela committed Jan 27, 2025
1 parent 324a32c commit ea06459
Showing 1 changed file with 332 additions and 0 deletions.
332 changes: 332 additions & 0 deletions guides/plugins/plugins/administration/system-updates/pinia.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,332 @@
---
nav:
title: Upgrading to Pinia
position: 261
---

# Migration from Vuex in Shopware to Pinia

## Introduction

With the release of Shopware 6.7, we will replace Vuex with [Pinia](https://pinia.vuejs.org/) as the state management library for the administration.

## Why Pinia?

Migrating to Pinia simplifies state management with an intuitive API,
no need for mutations, better TypeScript support, and seamless integration with Vue 3 Composition API.
It’s lightweight, modular, and offers modern features like DevTools support, making it a more efficient alternative to Vuex.

## Migration Guide

To migrate a Vuex store to Pinia, you need to make some changes to the store definition and how you access it in components.


- First register it with `Shopware.Store.register` and define the store with `state`, `getters`, and `actions` properties:

Check warning on line 24 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L24

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:24:33: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY

**Before (Vuex):**
```javascript
export default {
namespaced: true,

state: {
// Initial state
...
},
mutations: {
...
},
getters: {
...
},
actions: {
...
},
}
```

**After (Pinia):**
```javascript
const store = Shopware.Store.register('<storeName>', {

Check warning on line 49 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L49

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:49:21: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
state: () => ({
// Initial state
...
}),
getters: {
...
},
actions: {
...
},
});
export default store;
```

- You can also register the store with an `id` property in the definition object, for example:

```javascript
const store = Shopware.Store.register({

Check warning on line 67 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L67

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:67:21: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
id: '<storeName>',

Check warning on line 68 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L68

This abbreviation for “identification” is spelled all-uppercase. (ID_CASING[2]) Suggestions: `ID` Rule: https://community.languagetool.org/rule/show/ID_CASING?lang=en-US&subId=2 Category: CASING
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:68:2: This abbreviation for “identification” is spelled all-uppercase. (ID_CASING[2])
 Suggestions: `ID`
 Rule: https://community.languagetool.org/rule/show/ID_CASING?lang=en-US&subId=2
 Category: CASING
state: () => ({
// Initial state
}),
getters: {
// ...
},
actions: {
// ...
},
});
```

- If you register a store that already exists, it will be overwritten. You can also unregister a store:

```javascript
Shopware.Store.unregister('<storeName>');

Check warning on line 84 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L84

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:84:7: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
```

- To register a store from a component or index file, simply import the store file.

**Before (Vuex)**
```javascript
import productsStore from './state/products.state';

Shopware.State.registerModule('product', productsStore);

Check warning on line 93 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L93

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` State` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:93:7: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` State`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
```

**After (Pinia)**
```javascript
import './state/products.state';
```

### Key Changes

1. **State:**
- In Pinia, `state` must be a function returning the initial state instead of a static object.

2. **Mutations:**
- Vuex `mutations` are no longer needed in Pinia, since you can modify state directly in actions or compute it dynamically.
- If a mutation only sets the state to a passed value, remove it and update the state directly in your action.
- If a mutation has extra business logic, convert it into an action.

3. **Actions:**
- In Pinia, actions don't receive `state` as an argument. Instead, state is accessed directly using `this.anyStateField`.

**Example:**
```javascript
actions: {
updateProductName(newName) {
this.productName = newName; // Directly update state
},
},
```

4. **Getters:**
- There cannot be getters with the same name as a property in the state, as both are exposed at the same level in the store.
- Getters should be used to compute and return information based on state, without modifying it.
- It is not necessary to create a getter to return a state property. You can access it directly from the store instance.
- Avoid side effects in getters to prevent unexpected bugs. Getters should only compute and return information based on state, without modifying it.

5. **TypeScript:**
- We recommend migrating JavaScript stores to TypeScript for stricter typing, better autocomplete, and fewer errors during development.

- To use the correct types when calling `Shopware.Store.get`, you can infer the store's type:

Check warning on line 132 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L132

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:132:50: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
```typescript
const store = Shopware.Store.register({

Check warning on line 135 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L135

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:135:25: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
id: 'myStore',

Check warning on line 136 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L136

This abbreviation for “identification” is spelled all-uppercase. (ID_CASING[2]) Suggestions: `ID` Rule: https://community.languagetool.org/rule/show/ID_CASING?lang=en-US&subId=2 Category: CASING
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:136:4: This abbreviation for “identification” is spelled all-uppercase. (ID_CASING[2])
 Suggestions: `ID`
 Rule: https://community.languagetool.org/rule/show/ID_CASING?lang=en-US&subId=2
 Category: CASING
...
});
export type StoreType = ReturnType<typeof store>;
```
- Then, you can use this type to extend `PiniaRootState`:
```typescript
import type { StoreType } from './store/myStore';
declare global {
interface PiniaRootState {
myStore: StoreType;
}
}
```
### Composables as a Store
With Pinia, you can use reactive properties inside a store and define it like a composable. Keep in mind that only variables and functions returned from the store will be tracked by Pinia in DevTools.
```typescript
const store = Shopware.Store.register('<storeName>', function() {

Check warning on line 160 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L160

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:160:21: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
const count = ref(0);
const doubled = computed(() => count.value * 2);

Check warning on line 163 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L163

If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1]) Suggestions: ` Value`, ` value` Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1 Category: CASING
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:163:37: If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1])
 Suggestions: ` Value`, ` value`
 Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1
 Category: CASING
function increment() {
count.value++;

Check warning on line 166 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L166

If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1]) Suggestions: ` Value`, ` value` Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1 Category: CASING
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:166:8: If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1])
 Suggestions: ` Value`, ` value`
 Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1
 Category: CASING
}
function decrement() {
count.value--;

Check warning on line 170 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L170

If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1]) Suggestions: ` Value`, ` value` Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1 Category: CASING
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:170:8: If a new sentence starts here, add a space and start with an uppercase letter. (LC_AFTER_PERIOD[1])
 Suggestions: ` Value`, ` value`
 Rule: https://community.languagetool.org/rule/show/LC_AFTER_PERIOD?lang=en-US&subId=1
 Category: CASING
}
return { count, doubled, increment, decrement };
});
```
### Accessing the Store
To access the store in Vuex, you would typically do:
```javascript
Shopware.State.get('<storeName>');

Check warning on line 181 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L181

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` State` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:181:7: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` State`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
```
When migrating to Pinia, it changes to:
```javascript
Shopware.Store.get('<storeName>');

Check warning on line 186 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L186

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:186:7: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
```
### Accessing State, Getters, Mutations, and Actions
Below is a practical example of how store access and usage changes from Vuex to Pinia:
**Before (Vuex):**
```javascript
// Get the store
const store = Shopware.State.get('product');

Check warning on line 196 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L196

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` State` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:196:21: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` State`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
// Access the state
const productCount = Shopware.State.get('product').products.length;

Check warning on line 199 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L199

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` State` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:199:28: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` State`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
// Use getters
Shopware.State.getters['product/productCount'];

Check warning on line 202 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L202

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` State` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:202:7: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` State`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
// Execute mutations
store.commit('product/setProducts', [{ id: 1, name: 'Test' }]);

Check warning on line 205 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L205

This abbreviation for “identification” is spelled all-uppercase. (ID_CASING[2]) Suggestions: `ID` Rule: https://community.languagetool.org/rule/show/ID_CASING?lang=en-US&subId=2 Category: CASING
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:205:37: This abbreviation for “identification” is spelled all-uppercase. (ID_CASING[2])
 Suggestions: `ID`
 Rule: https://community.languagetool.org/rule/show/ID_CASING?lang=en-US&subId=2
 Category: CASING
// Execute actions
store.dispatch('product/fetchProducts');
```
**After (Pinia):**
```javascript
// Get the store
const store = Shopware.Store.get('product');

Check warning on line 214 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L214

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:214:21: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
// Access the state directly
const productCount = Shopware.Store.get('product').products.length;

Check warning on line 217 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L217

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:217:28: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
// Use getters (no 'get' prefix)
const totalProducts = Shopware.Store.get('product').productCount;

Check warning on line 220 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L220

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:220:29: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
// Mutate the state directly or through an action
Shopware.Store.get('product').products = [{ id: 1, name: 'Test' }];

Check warning on line 223 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L223

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:223:7: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY

Check warning on line 223 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L223

This abbreviation for “identification” is spelled all-uppercase. (ID_CASING[2]) Suggestions: `ID` Rule: https://community.languagetool.org/rule/show/ID_CASING?lang=en-US&subId=2 Category: CASING
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:223:42: This abbreviation for “identification” is spelled all-uppercase. (ID_CASING[2])
 Suggestions: `ID`
 Rule: https://community.languagetool.org/rule/show/ID_CASING?lang=en-US&subId=2
 Category: CASING
// Execute actions (called like methods)
Shopware.Store.get('product').fetchProducts();

Check warning on line 226 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L226

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:226:7: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
```
In Pinia, you no longer need `commit` for mutations or `dispatch` for actions.
Instead, you can work with the state and call actions directly.
### MapState
**Before (Vuex)**
```javascript
const { mapState } = Shopware.Component.getComponentHelper();

Check warning on line 236 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L236

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Component` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:236:28: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Component`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
export default {
computed: {
...mapState('product', ['products', 'productsCount']),
},
};
```
**After (Pinia)** (using the Composition API):
```javascript
const { mapState } = Shopware.Component.getComponentHelper();

Check warning on line 247 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L247

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Component` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:247:28: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Component`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
export default {
computed: {
...mapState(() => Shopware.Store.get('product'), ['products', 'productsCount']),

Check warning on line 251 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L251

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:251:29: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
},
};
```
Remember to pass a function returning the store to `mapState`. `Shopware.Store.get` returns the store instance directly, while `mapStore` expects the `useStore` function. Also note that [mapGetters is deprecated](https://pinia.vuejs.org/api/pinia/functions/mapGetters.html), so you should rely on `mapState`.

Check warning on line 256 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L256

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:256:71: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
### Testing
To test your store, just import it so it's registered. You can use `$reset()` to reset the store before each test:

```javascript
import './store/my.store';
describe('my store', () => {
const store = Shopware.Store.get('myStore');

Check warning on line 266 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L266

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:266:23: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
beforeEach(() => {
store.$reset();
});
it('has initial state', () => {
expect(store.count).toBe(0);
});
});
```

When testing components that use Pinia stores, register Pinia as a plugin and reset it before each test:

```javascript
import { createPinia, setActivePinia } from 'pinia';
const pinia = createPinia();
describe('my component', () => {
beforeEach(() => {
setActivePinia(pinia);
});
it('is a component', async () => {
const wrapper = mount(await wrapTestComponent('myComponent', { sync: true }), {
global: {
plugins: [pinia],
stubs: {
// ...
},
},
});
expect(wrapper.exists()).toBe(true);
});
});
```

Take into account that Pinia's actions do not return a Promise. So to check DOM changes it might be necessary to await `nextTick()`;
```javascript
describe('MyComponent.vue', () => {
let wrapper;
const store = Shopware.Store.get('myStore');

Check warning on line 311 in guides/plugins/plugins/administration/system-updates/pinia.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/plugins/plugins/administration/system-updates/pinia.md#L311

Add a space between sentences. (SENTENCE_WHITESPACE) Suggestions: ` Store` Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US Category: TYPOGRAPHY
Raw output
guides/plugins/plugins/administration/system-updates/pinia.md:311:23: Add a space between sentences. (SENTENCE_WHITESPACE)
 Suggestions: ` Store`
 Rule: https://community.languagetool.org/rule/show/SENTENCE_WHITESPACE?lang=en-US
 Category: TYPOGRAPHY
beforeEach(async () => {
wrapper = mount(await wrapTestComponent('myComponent', { sync: true }), {
global: {
plugins: [createPinia],
},
});
});
it('increments the counter when the button is clicked', async () => {
store.increment();
// Wait for state updates and DOM reactivity
await nextTick();
// Assert the state and the DOM
expect(store.counter).toBe(1); // State change
expect(wrapper.find('p').text()).toBe('Counter: 1'); // DOM update
});
});
```

0 comments on commit ea06459

Please sign in to comment.