-
Notifications
You must be signed in to change notification settings - Fork 716
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First updates to hashi documentation #8086
Merged
rtibbles
merged 5 commits into
learningequality:develop
from
marcellamaki:first-updates-to-hashi-documentation
May 24, 2021
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
92a839a
Move HTML5 App developer docs to dev docs rst files
marcellamaki ade5ebc
Add HTML5 API doc page to toctree
marcellamaki d9fd18e
Add type definitions, reformat object notation, add Gherkin scenarios…
marcellamaki 21bb05a
Fix syntax error
marcellamaki 18e1bf6
Implement formatting changes suggested by Radina
marcellamaki File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
Custom Navigation | ||
================= | ||
|
||
The purpose of the ``kolibri.js`` extension of our HTML5 API is to allow a sandboxed HTML5 app to safely request the main Kolibri application's data. | ||
|
||
External/partner product teams can create HTML5 applications that are fully embeddable within Kolibri and can read Kolibri content data, which they otherwise wouldn't be able to access. This opens up possibilities for creative ways in which learners can engage with content, because partners can create any type of app they want. The app could be something completely new, developed for a content source that we are adding to the platform, or it could be a branded, offline recreation of a partner's existing learning app that previously would not have been able to exist on Kolibri. | ||
|
||
When a user has permissions to access a custom channel, and they click on it in the main learn tab, rather than viewing `normal Kolibri`, they will experience a full-screen HTML5 app. One `out-of-the-box` user interaction is the ``navigateTo()`` function, which opens a modal that displays a content node. For other data fetching requests, the app, not Kolibri, has the responsibilty of determining what to do with that data. | ||
|
||
|
||
Basic API | ||
~~~~~~~~~ | ||
|
||
|
||
Access the API from within an HTML5 app by using ``window.kolibri.[function]`` | ||
|
||
Functions: | ||
|
||
.. code-block:: javascript | ||
|
||
/** | ||
* Type definition for Language metadata | ||
* @typedef {Object} Language | ||
* @property {string} id - an IETF language tag | ||
* @property {string} lang_code - the ISO 639‑1 language code | ||
* @property {string} lang_subcode - the regional identifier | ||
* @property {string} lang_name - the name of the language in that language | ||
* @property {('ltr'|'rtl'|)} lang_direction - Direction of the language's script, | ||
* top to bottom is not supported currently | ||
*/ | ||
|
||
/** | ||
* Type definition for ContentNode metadata | ||
* @typedef {Object} ContentNode | ||
* @property {string} id - unique id of the ContentNode | ||
* @property {string} channel_id - unique channel_id of the channel that the ContentNode is in | ||
* @property {string} content_id - identifier that is common across all instances of this resource | ||
* @property {string} title - A title that summarizes this ContentNode for the user | ||
* @property {string} description - detailed description of the ContentNode | ||
* @property {string} author - author of the ContentNode | ||
* @property {string} thumbnail_url - URL for the thumbnail for this ContentNode, | ||
* this may be any valid URL format including base64 encoded or blob URL | ||
* @property {boolean} available - Whether the ContentNode has all necessary files for rendering | ||
* @property {boolean} coach_content - Whether the ContentNode is intended only for coach users | ||
* @property {Language} lang - The primary language of the ContentNode | ||
* @property {string} license_description - The description of the license, which may be localized | ||
* @property {string} license_name - The human readable name of the license, localized | ||
* @property {string} license_owner - The name of the person or organization that holds copyright | ||
* @property {number} num_coach_contents - Number of coach contents that are descendants of this | ||
* @property {string} parent - The unique id of the parent of this ContentNode | ||
* @property {number} sort_order - The order of display for this node in its channel | ||
* if depth recursion was not deep enough | ||
*/ | ||
|
||
/** | ||
* Type definition for PageResults array | ||
* @property {ContentNode[]} results - the array of ContentNodes for this page | ||
* This will be updated to a Pagination Object once pagination is implemented | ||
*/ | ||
|
||
/** | ||
* Type definition for Theme options | ||
* properties TBD | ||
* @typedef {Object} Theme | ||
*/ | ||
|
||
/** | ||
* Type definition for NavigationContext | ||
* This can have arbitrary properties as defined | ||
* by the navigating app that it uses to resume its state | ||
* Should be able to be encoded down to <1600 characters using | ||
* an encoding function something like 'encode context' above | ||
* @typedef {Object} NavigationContext | ||
* @property {string} node_id - The current node_id that is being displayed, | ||
* custom apps should handle this as it may be used to | ||
* generate links externally to jump to this state | ||
*/ | ||
|
||
/* | ||
* Method to query contentnodes from Kolibri and return | ||
* an array of matching metadata | ||
* @param {Object} options - The different options to filter by | ||
* @param {string} [options.parent] - id of the parent node to filter by, or 'self' | ||
* @param {string} [options.ids] - an array of ids to filter by | ||
* @return {Promise<PageResult>} - a Promise that resolves to an array of ContentNodes | ||
*/ | ||
getContentByFilter(options) | ||
|
||
/* | ||
* Method to query a single contentnode from Kolibri and return | ||
* a metadata object | ||
* @param {string} id - id of the ContentNode | ||
* @return {Promise<ContentNode>} - a Promise that resolves to a ContentNode | ||
*/ | ||
getContentById(id) | ||
|
||
/* | ||
* Method to search for contentnodes on Kolibri and return | ||
* an array of matching metadata | ||
* @param {Object} options - The different options to search by | ||
* @param {string} [options.keyword] - search term for key word search | ||
* @param {string} [options.under] - id of topic to search under, or 'self' | ||
* @return {Promise<PageResult>} - a Promise that resolves to an array of ContentNodes | ||
*/ | ||
searchContent(options) | ||
|
||
/* | ||
* Method to set a default theme for any content rendering initiated by this app | ||
* @param {Theme} options - The different options for custom themeing | ||
* @param {string} [options.appBarColor] - Color for app bar atop the renderer | ||
* @param {string} [options.textColor] - Color for the text or icon | ||
* @param {string} [options.backdropColor] - Color for modal backdrop | ||
* @param {string} [options.backgroundColor] - Color for modal background | ||
* @return {Promise} - a Promise that resolves when the theme has been applied | ||
*/ | ||
themeRenderer(options) | ||
|
||
/* | ||
* Method to allow navigation to or rendering of a specific node | ||
* has optional parameter context that can update the URL for a custom context. | ||
* When this is called for a resource node in the custom navigation context | ||
* this will launch a renderer overlay to maintain the current state, and update the | ||
* query parameters for the URL of the custom context to indicate the change | ||
* If called for a topic in a custom context or outside of a custom context | ||
* this will simply prompt navigation to that node in Kolibri. | ||
* @param {string} nodeId - id of the parent node to navigate to | ||
* @param {NavigationContext=} context - optional context describing the state update | ||
* if node_id is missing from the context, it will be automatically filled in by this method | ||
* @return {Promise} - a Promise that resolves when the navigation has completed | ||
*/ | ||
navigateTo(nodeId, context) | ||
|
||
/* | ||
* Method to allow updating of stored state in the URL | ||
* @param {NavigationContext} context - context describing the state update | ||
* @return {Promise} - a Promise that resolves when the context has been updated | ||
*/ | ||
updateContext(context) | ||
|
||
/* | ||
* Method to request the current context state | ||
* @return {Promise<NavigationContext>} - a Promise that resolves | ||
* when the context has been updated | ||
*/ | ||
getContext() | ||
|
||
/* | ||
* Method to return the current version of Kolibri and hence the API available. | ||
* @return {Promise<string>} - A version string | ||
*/ | ||
getVersion() |
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ Frontend architecture | |
components | ||
conventions | ||
vuex | ||
HTML5_API | ||
dependencies | ||
unit_testing | ||
frontend_build_pipeline |
45 changes: 45 additions & 0 deletions
45
integration_testing/custom-html5-apps/kolibri-html5-api.feature
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
Feature: Custom channels representation | ||
|
||
Scenario: Exploring a custom channel | ||
Given Custom channels is enabled as an options flag in the Learn plugin | ||
When The learner clicks on the card for the custom channel | ||
Then The URL goes to #/topics/<topic_id> and displays a full page HTML5 app | ||
|
||
Scenario: Exploring a disabled custom channel | ||
Given Custom channels is disbled as an options flag in the Learn plugin | ||
When The learner clicks on the card for the custom channel | ||
Then The URL goes to #/topics/<topic_id> and displays the Kolibri topic interface | ||
|
||
Scenario: Navigating in a custom channel | ||
Given The learner has started exploring a custom channel | ||
When The learner clicks on a topic in the custom navigation | ||
And The HTML5 app displays the contents of the topic | ||
Then The URL updates with new context and stays on the full page HTML5 app | ||
|
||
Scenario: Showing resources in a custom channel | ||
Given The learner has started exploring a custom channel | ||
When The learner clicks on a resource in the custom navigation | ||
Then An overlay showing the content displays over the full page HTML5 app | ||
And The URL updates with new context | ||
And The full page HTML5 app remains in the background | ||
|
||
Scenario: User closing shown resources in a custom channel | ||
Given The learner has opened a resource from within a custom channel | ||
When The learner clicks close on the overlay | ||
Then The URL updates with new context | ||
And The overlay closes | ||
And The full page HTML5 app is still displayed | ||
|
||
Scenario: Custom nav closing shown resources in a custom channel | ||
Given The learner has opened a resource from within a custom channel | ||
When The custom nav app says the overlay should close | ||
Then The URL updates with new context | ||
And The overlay closes | ||
And The full page HTML5 app is still displayed | ||
|
||
Scenario: Navigating out of a custom channel | ||
Given The learner has started exploring a custom channel | ||
When The learner clicks on a link in the custom navigation | ||
And The link is to a topic | ||
Then The URL goes to #/topics/t/<topic_id> and displays the Kolibri topic interface | ||
And The full page HTML5 app closes |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you add the
typedefs
forPageResult
and other Object types in the docs as well?