cubic-ui

3.7.1 • Public • Published

cubic-ui

UI rendering node and server for Cubic.

npm build dependencies



Scope authentication

UI endpoints can be protected in the same way as regular API endpoints, via the this.schema.scope option, they also behave the same way (see cubic-api).

Creating a login system

Creating a login system is as simple as writing a POST form which targets the cubic-auth /authenticate endpoint with cookie_set set. Cubic-auth then sets a cookie which contains the user's access and refresh token. If you want to logout, simply remove the cookie and refresh the page.

Dealing with scoped api endpoints

Sometimes, you want to access a scoped API endpoint on a non-scoped UI endpoint. The default behaviour, when a non-authorized user connects, is to terminate the entire page like an entire endpoint would.
However, you still want to sometimes show the ui, with the scoped API content removed or edited. If you want to do something like that, add try/catch blocks in your asyncData hooks:

try {
    cubic.get('/scoped_api_endpoint')
} catch (err) {
    // Show alternative content
}

Readme

Keywords

none

Package Sidebar

Install

npm i cubic-ui

Weekly Downloads

7

Version

3.7.1

License

MIT

Unpacked Size

26.6 kB

Total Files

17

Last publish

Collaborators

  • kaptard
  • nexus-ci