Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Vendic/vsf-external-checkout
VueStorefront External Checkout module
https://github.com/Vendic/vsf-external-checkout
magento2 pwa vue vuestorefront
Last synced: 3 months ago
JSON representation
VueStorefront External Checkout module
- Host: GitHub
- URL: https://github.com/Vendic/vsf-external-checkout
- Owner: Vendic
- License: mit
- Archived: true
- Created: 2019-02-07T08:02:58.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-21T08:47:16.000Z (over 3 years ago)
- Last Synced: 2024-05-22T17:32:59.134Z (6 months ago)
- Topics: magento2, pwa, vue, vuestorefront
- Language: Vue
- Size: 149 KB
- Stars: 25
- Watchers: 4
- Forks: 10
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-vuestorefront - External Checkout
README
# Vue Storefront External Checkout
With this extension you can use your CMS checkout (e.g. Magento) instead of default [Vue Storefront](https://github.com/DivanteLtd/vue-storefront) checkout.
This plugin requires cart and user sync on your backend (see [integrations](https://github.com/filrak/vsf-external-checkout#current-cms-integrations-for-this-extension) )![VueStorefront demo with external checkout](https://images.ctfassets.net/ob7fjdpx9cry/FPmgKirYGq6g2Ac408ekk/0131b55a0ddf148d85794a6a35f8af3e/ezgif.com-gif-maker-1.gif)
## Current CMS integrations for this extension
* [Magento 2](https://github.com/Vendic/magento2-external-checkout)
## How it works?
When user tries to enter your Vue Storefront checkout:
1. The extension synchronizes cart and user data with your backend CMS
2. User is redirected to your CMS checkout (extension overrides `/checkout` route).## Installation
**Which version should I use ?**
Magento Version | External Checkout Latest Version
----------------------------------------------------|------------------------------------------------------------------------
VueStorefront 1.8 | vsf-external-checkout 1.x
VueStorefront 1.9 | vsf-external-checkout 2.x
VueStorefront 1.11+ | vsf-external-checkout 3.x### Manual installation
1. Download the [latest release](https://github.com/Vendic/vsf-external-checkout/releases) and extract it in `src/modules/external-checkout`
2. Add CMS address to your `config/local.json` file.
````json
"externalCheckout": {
"cmsUrl" : "https://yourcmsaddress.com"
}
````
3. Enable cart synchronization for your Vue Storefront instance in `config/local.json`
````json
cart": {
"synchronize": true,
...
}
````4. Register the extension in `src/modules/client.ts` file and [disable the 'Instant checkout' module](https://github.com/Vendic/vsf-external-checkout/issues/11)
````js
import { ExternalCheckout } from './external-checkout'
// import { InstantCheckout } from './instant-checkout'export const registerModules: VueStorefrontModule[] = [
// other extensions
ExternalCheckout,
// InstantCheckout,
]
````5. Install the appropriate module for your CMS. Currently only [Magento 2](https://github.com/Vendic/magento2-external-checkout) is supported.
### Installation with Yarn
[This feature is not yet supported](https://github.com/Vendic/vsf-external-checkout/issues/2)## How to use for a specific stores in a multistore setup
You can specify which storeviews should use the external checkout by adding each store code to your `config/local.json` file.
````json
"externalCheckout": {
"cmsUrl" : "https://yourcmsaddress.com",
"stores": {
"se": {
"cmsUrl": "https://yourcmsaddress.com"
},
"dk": {
"cmsUrl": "https://yourcmsaddress.com"
}
}
}
````## How to integrate with other CMS
If you want to integrate this extension with your backend CMS make sure that entering `{your_CMS_url}/vue/cart/sync/token/{user-token}/cart/{cart_token}` will do the following:
1. Synchronize cart and user data between Vue Storefront and your CMS
2. Redirect user to external checkout## Suggestions
For integrations with [Magento 2](https://github.com/DivanteLtd/magento2-external-checkout), also have a look at [this module that allows you to run Magento 2 in checkout only mode](https://github.com/Vendic/magento2-checkout-only)### About Vendic
[Vendic - Magento 2](https://vendic.nl "Vendic Homepage") develops technically challenging e-commerce websites using Magento 2. Feel free to check out our projects on our website.