Vue.js based Single Page Application
Tl;dr
- Create a client-side app using the framework of your choice. Use our JS SDK to work with Dataloop entities.
- Serve dataloop.json on the root of your application.
- Serve this application on your local server on the local.dataloop.ai domain over HTTPS.
- Open console.dataloop.ai and go to FaaS/Application Hub. Go to the Developer tab and click on +Add Debug App .
- Fill out the form and choose the type of your panel. eg: Item Viewer.
- Go to the screen where your panel is used and trigger your panel and test the application.
- Use the Browser console and Network tab to debug the application.
Too Short; Want More?
A single page application for dataloop platform can be created by utilising various UI panel slots. For this tutorial, we will be focussing on the “Item Viewer” panel.
We prefer Vue.js for our application development because we have an open source design-system and icons library that matches our platform’s theme.
To get started, go to this example application, clone, and follow the README to run.
Local Configurations
For working on a dev/local environment, you will need to add local.dataloop.ai to your hosts file.
- Open your hosts file with admin/sudo privileges. This is normally in /etc/hosts on Linux, C:\Windows\System32\drivers\etc\hosts on Windows.
-
Add the following lines to the end of the file:
# dataloop local 127.0.0.1 local.dataloop.ai
- You might also need to run your app in https mode.
- You may need to enable CORS on your app.
-
Your app should be up running in the browser.
- NOTE: In Windows you need to serve the app at "0.0.0.0" (otherwise it may not work on the local.dataloop.ai host)
- Your app should have a manifest file - dataloop.json - it needs to be publicly served under the app's main address (For example: https://local.dataloop.ai:3000/dataloop.json ).
- You're going to need a working, functioning Dataloop Platform user with a Developer role.
- You're going to need to be familiar with our Javascript SDK
The Dataloop Package Source Code
Now we will create the app files and directories:
- Create a new repo and then clone the newly created repo to your local and move to the downloaded folder.
-
Install all the dependencies
npm i
-
Run the application locally:
npm run serve
- This should run the server locally using vue tools on https://local.dataloop.ai on 8080 (or any other following available port) port.
-
Open the url in the browser.
-
If you're getting the "Not Private" message allow the locally generated https certificate in your browser by clicking the
Proceed to local.dataloop.ai
link or by typethisisunsafe
-
If you're getting the "Not Private" message allow the locally generated https certificate in your browser by clicking the
Here in our code we are creating an Item Viewer, so we need to load an item. Remember, this application would be used inside the dataloop platform to view an item, so your iframe would get access to the item using the Dataloop JS SDK.
Now we can use Dataloop JS SDK and component library to load an item. In the template provided to you, we have already initialized the Dataloop SDK along with its theme variable and Item details. So, this template already contains the code that is needed to view an item.
If you check the App.vue file, the item is loaded using:
public async getItemDetails() {
this.item = await this.dl.items.get()
this.stream = await this.dl.items.stream(this.item?.stream)
}
The get
function without the item id or name loads the current item.
And, the following part of the template will showcase the item to the user:
<img
v-if="item && stream"
:src="stream"
:width="itemWidth"
:height="itemHeight"
/>
So, now the app is running and should be loading an item once it is inside the dataloop platform.
The next step would be running this app on the debug mode and then publishing it.
Debug App in the Dataloop Platform
- On the left sidebar menu, go to Application Hub under the Application (FAAS) section, and open the ** Developer** tab.
- Click the Add Function button.
-
Fill out the name of the app, choose a main slot and add your application's URL address
- (For example: https://local.dataloop.ai:3000 )
- Press the Create button, and wallah! You have a debug app in the Platform.
-
Go to the dataset browser, right-click on an item,
Open With...
and choose your
app!
Tests
In order to run tests locally, you must mock the dl
xFrame Driver and provide it with mock data. We created
a DlMockDriver
and a Debug Snapshot shortcut exactly for that!
-
The
DlMockDriver
is a mock driver that simulates thedl
xFrame Driver, and is used for testing applications locally.-
You can mock the
window.dl
during testing by assigning a new instance ofDlMockDriver
toglobal.window.dl
, effectively overriding its original value.
-
You can mock the
-
In order to get the mock data for the mock driver, you can use the
Debug Snapshot
feature.
- Add a debug app to the Platform .
- Press the Debug Snapshot icon at the top bar (or Alt+Shift+S ) in order to download the generated snapshot file.
- Place the file in your tests directory.
-
Require the snapshot file in your test file, and use it to create a new instance of
DlMockDriver
.
import { DlMockDriver } from '@dataloop/jssdk'
const data = require('./snapshot.json')
global.window.dl = new DlMockDriver(data)
Item Viewer Example
For a full working item viewer, check out this repo!