solid-router
This is a series of web component respecting both the web components standards and the Linked Data Platform convention. They are aimed at enabling anyone with little development skills to create their own web application by placing these components in an HTML file.
An full app example can be found in index.html:
Initialization
You first need to load the webcomponents polyfill for the browsers that have not implemented them yet, and import the components you want to use in your HTML file:
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/1.0.20/webcomponents-loader.js"></script>
<script type="module" src="https://unpkg.com/@startinblox/router@latest"></script>
Then you can use the new tags in your markup, for instance:
<solid-router>
. More details on each component in the following
section.
Usage
Displays a menu and handle the navigation for you.
<solid-router
default-route="list"
route-prefix="my-app"
use-hash
>
<solid-route name="list">List</solid-route>
<solid-route name="form">Form</solid-route>
<solid-route name="detail">Details</solid-route>
</solid-router>
<solid-router>
attributes:
default-route
: Thename
attribute of the default<solid-route>
displayed.route-prefix
: If you app is not run from the root of your domain name, for instancewww.your-domain.com/some-uri
, you should setroute-prefix
to"some-uri"
.use-hash
: If you can’t rewrite the URLs on your server, you might want to set this attribute to uselocation.hash
instead oflocation.pathname
as URLs.keep-url
: It freezes the URL of all the<solid-route>
included. Usefull to freeze the URL when a pop-up is displayed.
<solid-route>
attributes:
use-id
: indicates that the route takes an id.name
: The name of the route. Must match thedata-view
of the view that is to be displayed. The same name is used as a url identifier as well.rdf-type
: Can be used as an alternative ofname
. The route will be activated if a resource with the given type is passed to the router.active
: This attribute is present on route being displayed by<solid-router>
. It is automatically added/removed by<solid-router>
and should not be tinkered manually.
<div data-view=[name]>
attributes:
view-title
: allows to change thetitle
of the page when a user navigates to this view.view-description
: allows to change the<meta name="description">
of the page when the user navigates to this view.
solid-link
<solid-link>
accepts the following attributes:
next
: Thename
attribute of the<solid-route>
you want to access.data-src
: The resource you want to use in your view. Often used to show more details about this resource, by adding thebind-resources
attribute to a component (more details aboutbind-resources
below).
Example:
<solid-link next="profile">See profile</solid-link>
solid-analytics
Manage browsing statistics.
Sign in on a web analytics service and set <solid-analytics>
inside
<body>
, at the begining for example.
<solid-analytics>
accepts the following attributes:
type
: the type of web analytics service used (currently supports'matomo'
,'google'
or'debug'
).url
: URL of the service. Fortype="google"
it is not necessary to specify the url attribute.id
: id of the website on the service.
Type 'debug'
allow to test solid-analytics. It will display the route
on the console each time a navigation is triggered.
Example :
<solid-analytics type="matomo" url="https://matomo.example.com/" id="1234"></solid-analytics>
Interacting with the router
bind-resources
attribute
To associate the currently displayed resource to a component, add the
bind-resources
attribute to it. It will set its data-src
attribute to the currently displayed resource’s URL.
Example:
<sib-conversation
bind-resources
></sib-conversation>
will result in:
<sib-conversation
data-src="https://your-domain/your-group-uri/3"
bind-resources
></sib-conversation>
In the same way, the bind-user
attribute can be used to associate the
currently logged in user to a component and set its data-src
attribute
accordingly.
More informations about this in the sib-auth documentation.