-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from VladimirZaets/SITES-18113
SITES-18113: Extensibility template improvements
- Loading branch information
Showing
5 changed files
with
15 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,16 @@ | ||
/* | ||
/* | ||
* <license header> | ||
*/ | ||
|
||
import 'core-js/stable' | ||
import 'regenerator-runtime/runtime' | ||
|
||
window.React = require('react') | ||
import ReactDOM from 'react-dom' | ||
|
||
import Runtime, { init } from '@adobe/exc-app' | ||
|
||
import App from './components/App' | ||
import './index.css' | ||
/* Here you can bootstrap your application and configure the integration with the Adobe Experience Cloud Shell */ | ||
try { | ||
// attempt to load the Experience Cloud Runtime | ||
require('./exc-runtime') | ||
// if there are no errors, bootstrap the app in the Experience Cloud Shell | ||
init(bootstrapInExcShell) | ||
} catch (e) { | ||
console.log('application not running in Adobe Experience Cloud Shell') | ||
// fallback mode, run the application without the Experience Cloud Runtime | ||
bootstrapRaw() | ||
} | ||
|
||
function bootstrapRaw () { | ||
/* **here you can mock the exc runtime and ims objects** */ | ||
const mockRuntime = { on: () => {} } | ||
const mockIms = {} | ||
|
||
// render the actual react application and pass along the runtime object to make it available to the App | ||
ReactDOM.render( | ||
<App runtime={mockRuntime} ims={mockIms} />, | ||
ReactDOM.render( | ||
<App />, | ||
document.getElementById('root') | ||
) | ||
} | ||
|
||
function bootstrapInExcShell () { | ||
// get the Experience Cloud Runtime object | ||
const runtime = Runtime() | ||
|
||
// use this to set a favicon | ||
// runtime.favicon = 'url-to-favicon' | ||
|
||
// use this to respond to clicks on the app-bar title | ||
// runtime.heroClick = () => window.alert('Did I ever tell you you\'re my hero?') | ||
|
||
// ready event brings in authentication/user info | ||
runtime.on('ready', ({ imsOrg, imsToken, imsProfile, locale }) => { | ||
// tell the exc-runtime object we are done | ||
runtime.done() | ||
console.log('Ready! received imsProfile:', imsProfile) | ||
const ims = { | ||
profile: imsProfile, | ||
org: imsOrg, | ||
token: imsToken | ||
} | ||
// render the actual react application and pass along the runtime and ims objects to make it available to the App | ||
ReactDOM.render( | ||
<App runtime={runtime} ims={ims} />, | ||
document.getElementById('root') | ||
) | ||
}) | ||
|
||
// set solution info, shortTitle is used when window is too small to display full title | ||
runtime.solution = { | ||
icon: 'AdobeExperienceCloud', | ||
title: '<%- extensionManifest.name %>', | ||
shortTitle: 'JGR' | ||
} | ||
runtime.title = '<%- extensionManifest.name %>' | ||
} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters