Devs
docs & useful examples
Getting started
Introduction
In order to implement a story, it will be necessary to install one of the following packs:
Vue storyground reader is a package which includes vue components created to read stories; Js storyground reader is a javascript library which includes an optimised Vue and Vue storyground reader build, allowing for the initialization of the library without the need of further files.
The examples will show both libraries, as their functions do not vary.
Quick start
If no initialization parameter is provided, a placeholder story will be shown. In order to visualise one’s story, an exported story in jSON format will be required.
Advanced example
The story in the homepage is a perfect example of advanced use of Storyground’s functions.
Parameters
Name | Type | Default | Description |
---|---|---|---|
gameData | Object | La storia di default di Stoyground | The story to visualise, which can be found inside the export package in JSON format |
langStory | String | “null-lang” | The language the story needs to be visualised in |
width | String | “100vw” | The width of the viewer (https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Values_and_units) |
height | String | “100vh” | The height of the viewer (https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Values_and_units) |
idStory | Number | l’ID della storia assegnato da Stoyground | It assigns an ID to the viewer; in case there are multiple stories, it will ensure that the events work properly |
useTheme | Boolean | true | Enables or disables the use of themes computed by the viewer |
stopLink | Boolean | false | Prevents the viewer from going to a different page by showing the destination URL in a message |
langEditor | String | “en” | The language in which debugging messages are shown |
strings | Object | defaultStrings | Defines the strings shown in the debugging messages |
canEmit | Boolean | true | Enables or disables the possiblity of emitting a function through the use of the “emit” node |
showToast | Boolean | false | Allows to visualise toasts that show the values emitted by the “emit” node |
Events
The viewers will trigger certain events during the navigation of the story. It’s important to know the place of each event in the life cycle of the viewer, as it’s possible to modify the data in the story thus changing its navigation itself.
Name | Description |
---|---|
onInit | This event starts when the viewer is initialised |
beforeNavigation | It’s triggered before the viewer starts the navigation |
afterNavigation | It’s triggered after the navigation has happened |
emitByNodes | Any time you navigate through an emit node, this event is called |
Methods
Methods allow to get and set the data in the story.
Name | Description |
---|---|
getPlayerValues | Returns all associated variables to the user |
getCurrentNodesValues | Returns all associated variables to the current node(s) |
setStartNode | Resets the beginning node; it’s possible to use both the ID of the node and the name of the desired start node |
setPlayerValues | Modifies the variables associated to the user |