Build a Basic Extension App
This guide will provide an overview on how to use the Symphony App Developer Kit (ADK) to build the most basic extension app. This app will add a sample entry in the left navigation bar and a button to each available target zone in the Symphony user interface. For simplicity, the project will be minimal and not use any frameworks to demonstrate the bare neccessities required to build an extension app.
Create Project
Create a working directory and initialize it using npm
.
Install Dependencies
Install the Symphony ADK along with the webpack bundler.
Open the project directory in an editor of your choice
Add Script Commands
Edit the package.json
file, replacing the scripts
section with the following:
This adds two commands:
npm start
for starting the development web servernpm run build
to launch the production build process
Add Webpack Configuration
Create a file named webpack.config.js
that will inject the ADK configuration into the webpack bundler.
Add Application Manifest
Each extension app requires a manifest (also known as the bundle.json
file) to describe the application. Create a file named bundle.json
with the following contents:
Build the App
We are now ready to start building the app. Create a src
directory and a file named index.js
within it.
The code ADK.start()
initializes the ADK with an app id (adk-example
) that must correspond with the value provided in the bundle.json
manifest from the previous step.
Once the initialization is complete, we use ADK.navigation
to add an item to the left navigation bar. This item will have the label "ADK Example" and clicking on it will pop up an alert with the content: "Navigate!"
We then proceed to build an array of all the available target zones and loop through them, calling ADK.buttons
to add a button into each target zone. Each button will be labelled "Button on" followed by the zone and clicking on them will log a message to the console. The message will report from which zone the button was pressed and the payload included with the event. Note that not all zones will contain a payload.
Start the App
We can now start the app using:
This starts a local development server on https://localhost:4000
. Note that this is a TLS-enabled site because all extension apps need to be loaded from TLS-enabled sites. However, because this is a development server, the certificate is self-signed and not trusted by any browser.
Visit https://localhost:4000 in your browser to accept the security warning about the untrusted self-signed certificate. Skipping this step will cause the extension app to not load within Symphony in the next step.
Load the App in Symphony
There are 2 ways to load an extension app into Symphony. For development purposes, we will be using the bundle injection method to temporarily load the app into the current session.
Beyond local development testing, you should get your pod administrator to create a corresponding app entry in the Admin Portal by uploading the bundle.json
file.
We can now load the app by injecting the bundle URL as a parameter named bundle
behind a pod URL. For example, if you are using the developer sandbox located at develop2.symphony.com, visit the following URL in your browser:
Test the App
Acknowledge the warning about being in developer mode. You should notice that a new left navigation item appears and triggers an alert when pressed.
Next Steps
Now that you know how to build a basic extension app, you can continue to use the ADK in building out the rest of your app, depending on what type of app you require.
Build an Extension App with App ViewsBuild an Extension App with Message RenderersLast updated