Skip to content

Commit d74bbab

Browse files
authored
chore: add information about the current status of OS integration (#1562)
1 parent 536b747 commit d74bbab

File tree

2 files changed

+79
-94
lines changed

2 files changed

+79
-94
lines changed

.github/workflows/continuous-integration.yml

-22
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,3 @@ jobs:
1515
secrets: inherit
1616
with:
1717
enterprise: false
18-
19-
sonarcloud-api-client:
20-
name: 'SonarCloud API Client'
21-
needs: [continous-integration]
22-
uses: vuestorefront/vue-storefront/.github/workflows/sonarcloud-integrations.yml@turbo
23-
secrets:
24-
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN_API_CLIENT }}
25-
with:
26-
project_key: 'vuestorefront_magento2_api-client'
27-
package_name: 'api-client'
28-
exclusions: '*.config.js,src/index.ts,src/api-extractor-data.ts,**/types/**'
29-
30-
sonarcloud-sdk:
31-
name: 'SonarCloud SDK'
32-
needs: [continous-integration]
33-
uses: vuestorefront/vue-storefront/.github/workflows/sonarcloud-integrations.yml@main
34-
secrets:
35-
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN_SDK_2 }}
36-
with:
37-
project_key: 'vuestorefront_magento2_sdk'
38-
package_name: 'sdk'
39-
exclusions: '*.config.js,*.config.*.ts,src/index.ts,src/connector.ts,src/api-extractor-data.ts,**/types/**,'

README.md

+79-72
Original file line numberDiff line numberDiff line change
@@ -4,52 +4,57 @@
44
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/55/Magento_Logo.svg/2560px-Magento_Logo.svg.png" height="80px"/>
55
</div>
66

7-
87
### Stay connected
98

109
![GitHub Repo stars](https://img.shields.io/github/stars/vuestorefront/vue-storefront?style=social)
1110
![Twitter Follow](https://img.shields.io/twitter/follow/vuestorefront?style=social)
1211
![YouTube Channel Subscribers](https://img.shields.io/youtube/channel/subscribers/UCkm1F3Cglty3CE1QwKQUhhg?style=social)
1312
[![Discord](https://img.shields.io/discord/770285988244750366?label=join%20discord&logo=Discord&logoColor=white)](https://discord.vuestorefront.io)
1413

14+
### Magento 2 Integration for Alokai (Community-Maintained)
1515

16+
<div style="background-color: #fff3cd; padding: 10px; border-radius: 5px;">
17+
<strong>Important Notice:</strong> This repository is no longer actively maintained by the Alokai team.
18+
</div>
19+
<br />
20+
The official development of the Magento 2 Integration is now part of the Alokai Enterprise offering and has been moved to a private repository.
1621

17-
**This repository contains integration for Magento 2 and Alokai Middleware.**
18-
This integration is framework-agnostic and may be consumed in the framework of your choice.
22+
From now on, this repository will be maintained by the community.
23+
No further updates or new features will be provided here by the Alokai team.
24+
25+
For more information, please refer to the [Alokai Enterprise](https://docs.alokai.com/enterprise) documentation.
26+
27+
Thank you for your support and contributions!
1928

2029
## Magento 2 integration for Alokai
2130

22-
This project is a Magento 2 integration for Alokai.
31+
**This repository contains integration for Magento 2 and Alokai Middleware.**
32+
This integration is framework-agnostic and may be consumed in the framework of your choice.
2333

24-
### Check out [the docs](https://docs.vuestorefront.io/sdk-magento2/)
34+
### Check out [the docs](https://docs.vuestorefront.io/sdk-magento2/)
2535

2636
# Quick start
2737

2838
Your Alokai application has two parts:
2939

3040
1. **Server Middleware** - an Express.js application that can connect to your various third-party services (like Magento).
3141

32-
3342
2. **Front-end application** - any application using JavaScript or TypeScript that can connect to the server middleware. Popular choices include [Nuxt](https://nuxt.com/) and [Next.js](https://nextjs.org/).
3443

3544
In this section, we will explain in a step-by-step guide how to use Magento 2 integration in each part of your Alokai application.
3645

37-
3846
## Prerequisites
3947

4048
- Magento configured - you need a Magento 2 configured
4149
- Install Node.js version >=16.0
4250

43-
4451
## Server Middleware
4552

4653
The first step to setup your integration is to create and configure your server middleware layer to connect to your Magento 2 backend.
4754

4855
Already have the server middleware configured?
4956
If you have the server middleware configured, you can move directly to the sdk preparation section.
5057

51-
52-
5358
1. Install the dependencies needed to create your server middleware and to create a server-to-server connection with the Magento 2 backend and the server middleware.
5459

5560
```bash
@@ -65,53 +70,53 @@ yarn add @vue-storefront/middleware @vue-storefront/magento-api
6570
```javascript
6671
// middleware.config.js
6772

68-
import {config} from "dotenv";
73+
import { config } from "dotenv";
6974

7075
config();
7176

7277
const cookieNames = {
73-
currencyCookieName: 'vsf-currency',
74-
countryCookieName: 'vsf-country',
75-
localeCookieName: 'vsf-locale',
76-
cartCookieName: 'vsf-cart',
77-
customerCookieName: 'vsf-customer',
78-
storeCookieName: 'vsf-store',
79-
messageCookieName: 'vsf-message'
78+
currencyCookieName: "vsf-currency",
79+
countryCookieName: "vsf-country",
80+
localeCookieName: "vsf-locale",
81+
cartCookieName: "vsf-cart",
82+
customerCookieName: "vsf-customer",
83+
storeCookieName: "vsf-store",
84+
messageCookieName: "vsf-message",
8085
};
8186

8287
export const integrations = {
8388
magento: {
84-
location: '@vue-storefront/magento-api/server',
85-
configuration: {
86-
api: process.env.VSF_MAGENTO_GRAPHQL_URL,
87-
cookies: {
88-
...cookieNames,
89-
},
90-
cookiesDefaultOpts: {
91-
httpOnly: process.env.VSF_COOKIE_HTTP_ONLY || false,
92-
secure: process.env.VSF_COOKIE_SECURE || false,
93-
sameSite: process.env.VSF_COOKIE_SAME_SITE || 'lax',
94-
path: process.env.VSF_COOKIE_PATH || '/',
95-
},
96-
defaultStore: 'default',
97-
customApolloHttpLinkOptions: {
98-
useGETForQueries: true,
99-
},
100-
magentoBaseUrl: process.env.VSF_MAGENTO_BASE_URL,
101-
magentoApiEndpoint: process.env.VSF_MAGENTO_GRAPHQL_URL,
102-
imageProvider: process.env.NUXT_IMAGE_PROVIDER,
103-
recaptcha: {
104-
isEnabled: process.env.VSF_RECAPTCHA_ENABLED === 'true',
105-
sitekey: process.env.VSF_RECAPTCHA_SITE_KEY,
106-
secretkey: process.env.VSF_RECAPTCHA_SECRET_KEY,
107-
version: process.env.VSF_RECAPTCHA_VERSION,
108-
score: process.env.VSF_RECAPTCHA_MIN_SCORE,
109-
},
110-
customer: {
111-
customer_create_account_confirm: true,
112-
},
89+
location: "@vue-storefront/magento-api/server",
90+
configuration: {
91+
api: process.env.VSF_MAGENTO_GRAPHQL_URL,
92+
cookies: {
93+
...cookieNames,
94+
},
95+
cookiesDefaultOpts: {
96+
httpOnly: process.env.VSF_COOKIE_HTTP_ONLY || false,
97+
secure: process.env.VSF_COOKIE_SECURE || false,
98+
sameSite: process.env.VSF_COOKIE_SAME_SITE || "lax",
99+
path: process.env.VSF_COOKIE_PATH || "/",
113100
},
114-
}
101+
defaultStore: "default",
102+
customApolloHttpLinkOptions: {
103+
useGETForQueries: true,
104+
},
105+
magentoBaseUrl: process.env.VSF_MAGENTO_BASE_URL,
106+
magentoApiEndpoint: process.env.VSF_MAGENTO_GRAPHQL_URL,
107+
imageProvider: process.env.NUXT_IMAGE_PROVIDER,
108+
recaptcha: {
109+
isEnabled: process.env.VSF_RECAPTCHA_ENABLED === "true",
110+
sitekey: process.env.VSF_RECAPTCHA_SITE_KEY,
111+
secretkey: process.env.VSF_RECAPTCHA_SECRET_KEY,
112+
version: process.env.VSF_RECAPTCHA_VERSION,
113+
score: process.env.VSF_RECAPTCHA_MIN_SCORE,
114+
},
115+
customer: {
116+
customer_create_account_confirm: true,
117+
},
118+
},
119+
},
115120
};
116121
```
117122

@@ -140,9 +145,9 @@ NUXT_IMAGE_PROVIDER=ipx
140145
```javascript
141146
// middleware.js
142147

143-
import {createServer} from "@vue-storefront/middleware";
144-
import {integrations} from "./middleware.config.js";
145-
import cors from 'cors';
148+
import { createServer } from "@vue-storefront/middleware";
149+
import { integrations } from "./middleware.config.js";
150+
import cors from "cors";
146151

147152
(async () => {
148153
const app = await createServer({ integrations });
@@ -166,7 +171,6 @@ import cors from 'cors';
166171
console.log(`Middleware started: ${host}:${port}`);
167172
});
168173
})();
169-
170174
```
171175
172176
5. Your middleware is ready. You can start it by running `node middleware.js`. Most likely, you'll want to setup this command as a script in your `package.json` file.
@@ -198,13 +202,13 @@ yarn add @vue-storefront/sdk @vue-storefront/magento-sdk
198202
2. Initialize the SDK. Configure Magento 2 module with `apiUrl` that points to the server middleware.
199203
200204
```ts
201-
import { buildModule, initSDK } from '@vue-storefront/sdk';
202-
import { magentoModule, MagentoModuleType } from '@vue-storefront/magento-sdk';
205+
import { buildModule, initSDK } from "@vue-storefront/sdk";
206+
import { magentoModule, MagentoModuleType } from "@vue-storefront/magento-sdk";
203207

204208
const sdkConfig = {
205209
magento: buildModule<MagentoModuleType>(magentoModule, {
206-
apiUrl: 'http://localhost:8181/magento'
207-
})
210+
apiUrl: "http://localhost:8181/magento",
211+
}),
208212
};
209213

210214
export const sdk = initSDK<typeof sdkConfig>(sdkConfig);
@@ -215,35 +219,36 @@ export const sdk = initSDK<typeof sdkConfig>(sdkConfig);
215219
For example, we can call the `products` method to fetch products from Magento 2.
216220
217221
```ts
218-
import { sdk } from './sdk';
219-
const products = await sdk.magento.products({})
222+
import { sdk } from "./sdk";
223+
const products = await sdk.magento.products({});
220224
// returns ProductInterface[]
221-
222225
```
223226
224227
<hr />
225228
226229
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
230+
227231
[![All Contributors](https://img.shields.io/badge/all_contributors-27-orange.svg?style=flat-square)](#contributors-)
232+
228233
<!-- ALL-CONTRIBUTORS-BADGE:END -->
229234
230235
## How to start if you want to contribute?
231236
232237
Want to contribute? Ping us on `magento2` channel on [our Discord](http://discord.vuestorefront.io)!
233238
234239
### Requirements:
240+
235241
- NodeJS v16 or later
236242
- Yarn (npm is not supprted yet)
237243
- Magento >= v2.4.3 instance for GraphQL endpoint
238244
- Change Magento GraphQL Query Complexity and Depth values
239245
240246
> Don't forget to change the Magento GraphQL Query Complexity and Depth values
241-
Magento 2 by default has a lower value for the complexity of 300, and a higher value for the depth of 20. [Magento 2 - Issue #32427](https://github.com/magento/magento2/issues/32427#issuecomment-860478483)
242-
243-
>The changes are required, due to the size of the queries and mutations in the `api-client` implementation.
247+
> Magento 2 by default has a lower value for the complexity of 300, and a higher value for the depth of 20. [Magento 2 - Issue #32427](https://github.com/magento/magento2/issues/32427#issuecomment-860478483)
244248
245-
>To do this changes, you can use the [Magento 2 module](https://github.com/caravelx/module-graphql-config), which adds a configuration panel to your admin, or do this changes manually.
249+
> The changes are required, due to the size of the queries and mutations in the `api-client` implementation.
246250
251+
> To do this changes, you can use the [Magento 2 module](https://github.com/caravelx/module-graphql-config), which adds a configuration panel to your admin, or do this changes manually.
247252
248253
To install the Magento 2 GraphQL Config module, on your Magento installation execute:
249254
@@ -262,14 +267,16 @@ php bin/magento setup:static-content:deploy
262267
Find more information about the module [GraphQl Custom Config](https://github.com/caravelx/module-graphql-config)
263268
264269
### Steps
270+
265271
1. Build dependencies `yarn build`
266-
```bash
267-
yarn build
268-
```
269-
8. Run `yarn dev`. You can find other commands in `package.json`
270-
```bash
271-
yarn dev
272-
```
272+
```bash
273+
yarn build
274+
```
275+
2. Run `yarn dev`. You can find other commands in `package.json`
276+
```bash
277+
yarn dev
278+
```
279+
273280
## Resources
274281
275282
- [Magento 2 integration Documentation](https://docs.vuestorefront.io/sdk-magento2/)
@@ -278,11 +285,12 @@ Find more information about the module [GraphQl Custom Config](https://github.co
278285
279286
## Support
280287
281-
If you have any questions about this integration we will be happy to answer them on `magento2-alokai` channel on [our Discord](http://discord.vuestorefront.io).
288+
If you have any questions about this integration we will be happy to answer them on `magento2-alokai` channel on [our Discord](http://discord.vuestorefront.io).
282289
283290
## Contributors ✨
284291
285292
### Honorable Mentions
293+
286294
- [Caravel x](https://www.caravelx.com/)
287295
- [Cyberfuze](https://cyberfuze.com/)
288296
- [Leonex](https://www.leonex.de/)
@@ -339,4 +347,3 @@ Thanks go to these wonderful people 🙌:
339347
<!-- ALL-CONTRIBUTORS-LIST:END -->
340348
341349
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
342-

0 commit comments

Comments
 (0)