Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/workato/full-embed-sample
https://github.com/workato/full-embed-sample
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/workato/full-embed-sample
- Owner: workato
- Created: 2019-10-29T17:48:54.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-07-25T11:03:59.000Z (4 months ago)
- Last Synced: 2024-07-26T11:22:21.191Z (3 months ago)
- Language: Vue
- Size: 4.47 MB
- Stars: 7
- Watchers: 44
- Forks: 7
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-low-code - Embedding Guide - A guided example on how to use Workato embedded. (Learning Resources / Workato)
README
# Embedding Guide
1. Create a mapping between Workato URLs and internal URLs and make this configuration available in both server- and client-side code:
For example:| Workato URL | OEM Vendor URL |
| ----------------| --------------------|
| `/` | `/solutions` |
| `/recipes/:id` | `/solutions/:id` |
| `/recipes/new` | `/create-solution` |
| ... | ... |2. On request to one of `OEM Vendor URL`s find corresponding `Workato URL` and use it to construct IFrame's `src` attribute.
For example user loads `/solutions/5` page. It corresponds to Workato's `/recipes/5` page so we generate an HTML page
which renders ``.3. Inject a `Workato Embedding Client` script on every page that contain this IFrame: ``.
There are a few important things to note:
- It should be injected **before** the `<iframe>` element.
- It shouldn't contain neither `async` nor `defer` attributes as it must be loaded synchronously before an IFrame.
It creates a global `WorkatoApi` object that allows to control embedded Workato web app.
4. Inject the following script **after** the "Workato Embedding Client" script:
```js
// Subscribing to `navigation` event which is fired by the embedded Workato app when user attempts to load
// another page e.g. when he clicks on some link.
WorkatoApi.on('navigation', function (navigation) {
// Finding corresponding URL using a mapping created on step 1.
// Workato URL is stored in `navigation.url` property.
// `findInternalUrl` function should be implemented by OEM vendor.
var url = findInternalUrl(navigation.url);
// Loading a new page if we've found a mapping and this is not the current page.
// `isCurrentUrl` function should be implemented by OEM vendor.
// For example, it may look like this: `return url === location.pathname`.
if (url && !isCurrentUrl(url)) {
location.href = url;
}
});
```5. Use normal links to perform navigations between pages e.g. `<a href="/solutions/5">` will load a page containing
`<iframe src="https://workato.com/recipes/5">`.