Skip to content
Snippets Groups Projects
Commit e0f2183b authored by Matthieu Fesselier's avatar Matthieu Fesselier
Browse files

Merge branch 'dev' into 'master'

Doc for core@0.14

See merge request !40
parents d979922e 3d510218
No related branches found
No related tags found
2 merge requests!44Master to dev,!40Doc for core@0.14
Pipeline #9360 passed
...@@ -8,16 +8,15 @@ Installation ...@@ -8,16 +8,15 @@ Installation
-------------- --------------
Initialize ``sib-auth`` in your HTML file: Initialize ``sib-auth`` in your HTML file:
.. code:: html .. code:: html
<script type="module" src="https://unpkg.com/@startinblox/oidc@latest"></script> <script type="module" src="https://unpkg.com/@startinblox/oidc@latest"></script>
<sib-auth> <sib-auth>
<sib-auth-provider <sib-auth-provider
data-authority="https://test-paris.happy-dev.fr/openid/" data-authority="https://test-paris.happy-dev.fr/openid/"
data-id="paris" data-id="paris"
> ></sib-auth-provider>
</sib-auth-provider> </sib-auth>
</sib-auth>
`You'll find here the detail of the attributes configuration. <https://github.com/IdentityModel/oidc-client-js/wiki#usermanager>`__ `You'll find here the detail of the attributes configuration. <https://github.com/IdentityModel/oidc-client-js/wiki#usermanager>`__
...@@ -26,13 +25,14 @@ Set an OIDC provider to your server ...@@ -26,13 +25,14 @@ Set an OIDC provider to your server
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The Django package associated is there => https://github.com/jblemee/django-oidc-provider The Django package associated is there => https://github.com/jblemee/django-oidc-provider
More documentation here => https://django-oidc-provider.readthedocs.io/en/latest/ More documentation here => https://django-oidc-provider.readthedocs.io/en/latest/
Don't forget to set up your RSA key: Don't forget to set up your RSA key:
.. code:: bash .. code:: bash
python3 ./manage.py creatersakey python3 ./manage.py creatersakey
Setup your login button Setup your login button
...@@ -40,36 +40,56 @@ Setup your login button ...@@ -40,36 +40,56 @@ Setup your login button
Here is an example to make you understand the logic: Here is an example to make you understand the logic:
.. code:: html .. code:: html
<button id="login">Login</button> <button id="login">Login</button>
<!-- wherever you want in your interface --> <!-- wherever you want in your interface -->
<script> <script>
// wherever you want in your project // wherever you want in your project
document.querySelector('#login').addEventListener('click', () => { document.querySelector('#login').addEventListener('click', () => {
document.querySelector('sib-auth').login() document.querySelector('sib-auth').login()
}); });
</script> </script>
.. _bind-user: Attributes
bind-user
---------- ----------
To associate the currently logged in user to a component, add the bind-user attribute to it.
It will set its ``data-src`` attribute to the currently logged in user's resource URL.
Example:
.. code:: html .. _bind-user:
``bind-user``
~~~~~~~~~~~~~
To associate the currently logged in user to a component, add the bind-user attribute to it.
It will set its ``data-src`` attribute to the currently logged in user's resource URL.
Example:
.. code:: html
<sib-conversation bind-user></sib-conversation>
will result in:
.. code:: html
<sib-conversation data-src="https://your-domain/your-user-uri/3" bind-user></sib-conversation>
<sib-conversation bind-user></sib-conversation> ``auto-login``
~~~~~~~~~~~~~~
If set, ``auto-login`` will automatically redirect the user to the login page of his
provider if he's not authenticated yet.
will result in: Example:
.. code:: html .. code:: html
<sib-conversation data-src="https://your-domain/your-user-uri/3" bind-user></sib-conversation> <sib-auth auto-login>
<sib-auth-provider
data-authority="https://test-paris.happy-dev.fr/openid/"
data-id="paris"
></sib-auth-provider>
</sib-auth>
Methods available Methods
------------------ ------------------
``login`` ``login``
......
...@@ -37,26 +37,26 @@ Attributes ...@@ -37,26 +37,26 @@ Attributes
List of fields used to perform the search. List of fields used to perform the search.
``label-[field]`` ``label-[field]``
~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~
When displaying a form, the default labels are the fields names of the model. When displaying a form, the default labels are the fields names of the model.
If you want something fancier, you can set this attribute. If you want something fancier, you can set this attribute.
i.e. ``label-username="Your name"`` i.e. ``label-username="Your name"``
``submit-button`` ``submit-button``
~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~
*Available from version 0.13* *Available from version 0.13*
Text of the submit button to create in the search form. If the attribute is not defined, Text of the submit button to create in the search form. If the attribute is not defined,
no button will be added and the form will trigger the search on change. no button will be added and the form will trigger the search on change.
``range-[field]`` ``range-[field]``
~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~
URL of a container which list the accepted values URL of a container which list the accepted values
for the field ``[field]``. It’s particularly useful with a dropdown for the field ``[field]``. It’s particularly useful with a dropdown
field. field.
``enum-[field]`` ``enum-[field]``
~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~
*Available from version 0.13* *Available from version 0.13*
List of values of your choice for the field ``[field]``. List of values of your choice for the field ``[field]``.
...@@ -70,6 +70,29 @@ Attributes ...@@ -70,6 +70,29 @@ Attributes
* ``enum-[field]="value1 = a, value2 = b, value3 = c"``: each value will be displayed * ``enum-[field]="value1 = a, value2 = b, value3 = c"``: each value will be displayed
and "a", "b", "c" will be loaded in value attribute. and "a", "b", "c" will be loaded in value attribute.
``start-value-[field]``
~~~~~~~~~~~~~~~~~~~~~~~
*Available from version 0.15*
Allows to define the value of the first ``<input>`` to filter data.
Only usable with ``solid-form-rangedate`` and ``solid-form-rangenumber``.
In ``solid-form-rangedate``, it can be defined to ``today``.
``end-value-[field]``
~~~~~~~~~~~~~~~~~~~~~
*Available from version 0.15*
Allows to define the value of the second ``<input>`` to filter data.
Only usable with ``solid-form-rangedate`` and ``solid-form-rangenumber``.
In ``solid-form-rangedate``, it can be defined to ``today``.
``autocomplete-[field]``
~~~~~~~~~~~~~~~~~~~~~~~~
*Available from version 0.15*
Equal to the value ``off``, it cancels the automatic entry of values in the relevant ``[field]``.
It can be added to ``inputs``, ``textarea`` and ``select``.
Widgets Widgets
------- -------
By default, the widget used is ``<solid-form-label-text>``. Cf the By default, the widget used is ``<solid-form-label-text>``. Cf the
......
...@@ -111,6 +111,12 @@ Attributes ...@@ -111,6 +111,12 @@ Attributes
Add this attribute to create a dialog box linked with the submit button of the solid-form. Add this attribute to create a dialog box linked with the submit button of the solid-form.
Its value matches the message displayed in the dialog box. Its value matches the message displayed in the dialog box.
``autocomplete-[field]``
~~~~~~~~~~~~~~~~~~~~~~~~
*Available from version 0.15*
Equal to the value ``off``, it cancels the automatic entry of values in the relevant ``[field]``.
It can be added to ``inputs``, ``textarea`` and ``select``.
Widgets Widgets
------- -------
......
...@@ -40,9 +40,11 @@ A widget is built like this. ...@@ -40,9 +40,11 @@ A widget is built like this.
- ``richtext``: set ``value`` in an ``<div>`` and initialize a light rich text editor by using ``Quill``. - ``richtext``: set ``value`` in an ``<div>`` and initialize a light rich text editor by using ``Quill``.
- ``checkbox``: create a checkbox, which is checked if ``value == true``. - ``checkbox``: create a checkbox, which is checked if ``value == true``.
- ``date``: set ``value`` in an ``<input>`` of type ``date``. - ``date``: set ``value`` in an ``<input>`` of type ``date``.
- ``rangedate``: set 2 values in 2 ``<input>`` of type ``date``. Used for filtering with min and max. - ``rangedate``: set 2 values in 2 ``<input>`` of type ``date``. Used for filtering with min and max.
Possible to add ``start-value-[field]`` and ``end-value-[field]`` attributes to set min and max values. Date format to follow : "YYYY-MM-DD". Each attribute accepts ``today`` as value.
- ``number``: set ``value`` in an ``<input>`` of type ``number``. - ``number``: set ``value`` in an ``<input>`` of type ``number``.
- ``rangenumber``: set 2 values in 2 ``<input>`` of type ``number``. Used for filtering with min and max. - ``rangenumber``: set 2 values in 2 ``<input>`` of type ``number``. Used for filtering with min and max.
Possible to add ``start-value-[field]`` and ``end-value-[field]`` attributes to set min and max values.
- ``hidden``: set ``value`` in an ``<input>`` of type ``hidden``. - ``hidden``: set ``value`` in an ``<input>`` of type ``hidden``.
- ``dropdown``: set ``value`` in a ``<select>``. The list is provided via the ``range`` attribute, which expects a container’s URL, or via the ``enum`` attribute, which takes a list of the values separated by commas. - ``dropdown``: set ``value`` in a ``<select>``. The list is provided via the ``range`` attribute, which expects a container’s URL, or via the ``enum`` attribute, which takes a list of the values separated by commas.
- ``radio``: set ``value`` in a list of radio buttons. The list is provided via the ``range`` attribute, which expects a container’s URL, or via the ``enum`` attribute, which takes a list of the values separated by commas. - ``radio``: set ``value`` in a list of radio buttons. The list is provided via the ``range`` attribute, which expects a container’s URL, or via the ``enum`` attribute, which takes a list of the values separated by commas.
...@@ -57,8 +59,8 @@ A widget is built like this. ...@@ -57,8 +59,8 @@ A widget is built like this.
- ``set`` - ``set``
- ``default``: inserts widgets directly in the set tag. - ``default``: inserts widgets directly in the set tag.
- ``div``: inserts widgets in a ``<div>`` tag - ``div``: inserts widgets in a ``<div>`` tag.
- ``ul``: inserts widgets in a ``<ul>`` tag - ``ul``: inserts widgets in a ``<ul>`` tag.
- **default** (no template keyword defined) - **default** (no template keyword defined)
...@@ -72,15 +74,18 @@ A widget is built like this. ...@@ -72,15 +74,18 @@ A widget is built like this.
++++++++++++ ++++++++++++
Features to add to the widget. You can choose as many as you want Features to add to the widget. You can choose as many as you want
- ``label``: adds a ``label`` before the template. Uses the attribute ``name`` if ``label`` is not defined - ``label``: adds a ``label`` before the template. Uses the attribute ``name`` if ``label`` is not defined.
- ``labellast``: adds a ``label`` after the template. Uses the attribute ``name`` if ``label`` is not defined - ``labellast``: adds a ``label`` after the template. Uses the attribute ``name`` if ``label`` is not defined.
- ``autocompletion``: initializes the ``SlimSelect`` plugin. Works only with dropdowns - ``autocompletion``: initializes the ``SlimSelect`` plugin. Works only with dropdowns.
- ``autolink``: analyzes widget content, and transforms all links in anchor. - ``autolink``: analyzes widget content, and transforms all links in anchor.
- ``mailto``: adds ``mailto:`` at the beginning of an ``href`` attribute. Works only with links - ``mailto``: adds ``mailto:`` at the beginning of an ``href`` attribute. Works only with links.
- ``tel``: adds ``tel:`` at the beginning of an ``href`` attribute. Works only with links - ``tel``: adds ``tel:`` at the beginning of an ``href`` attribute. Works only with links.
- ``blank``: adds an attribute ``target="_blank"``. Works only with links - ``blank``: adds an attribute ``target="_blank"``. Works only with links.
- ``placeholder``: adds a placeholder in the input. Uses the attribute ``name`` or ``label`` if ``placeholder`` is not defined. Works only with input widgets. - ``placeholder``: adds a placeholder in the input. Uses the attribute ``name`` or ``label`` if ``placeholder`` is not defined. Works only with input widgets.
- ``date``: transforms the value in a date, in the browser’s default locale format. - ``date``: transforms the value in a date, in the browser’s default locale format.
- ``datetime``: transforms the value in a date and time, in the browser’s default locale format. - ``datetime``: transforms the value in a date and time, in the browser’s default locale format.
- ``multiline``: Shows a value on multiple lines (replace ``\n`` by ``<br>``) - ``multiline``: shows a value on multiple lines (replace ``\n`` by ``<br>``).
- ``markdown``: Takes markdown code and displays formatted text. Works only with a display template (value, div, link). - ``markdown``: takes markdown code and displays formatted text. Works only with a display template (value, div, link).
- ``addable``: adds a ``<solid-form>`` that allows to add data on the field concerned.
It accepts attributes from :ref:`solid-form <solid-form>` by using ``addable-[field]-[attribute]="value"`` format.
If ``addable-data-src`` is not provided, the solid-form will use the URI in ``range-[field]`` as data-src, if declared.
...@@ -5,6 +5,11 @@ List of attributes (core framework) ...@@ -5,6 +5,11 @@ List of attributes (core framework)
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
* :ref:`widget-mixin <widget-mixin>` * :ref:`widget-mixin <widget-mixin>`
``autocomplete-[field]``
~~~~~~~~~~~~~~~~~~~~~~~~
* :ref:`solid-form <solid-form>`
* :ref:`solid-form-search <solid-form-search>`
``child-[field]`` ``child-[field]``
~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~
* :ref:`solid-display <solid-display>` * :ref:`solid-display <solid-display>`
...@@ -51,6 +56,10 @@ List of attributes (core framework) ...@@ -51,6 +56,10 @@ List of attributes (core framework)
~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~
* :ref:`list-mixin <list-mixin>` * :ref:`list-mixin <list-mixin>`
``end-value-[field]``
~~~~~~~~~~~~~~~~~~~~~
* :ref:`solid-form-search <solid-form-search>`
``enum-[field]`` ``enum-[field]``
~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~
* :ref:`solid-form <solid-form>` * :ref:`solid-form <solid-form>`
...@@ -183,6 +192,10 @@ List of attributes (core framework) ...@@ -183,6 +192,10 @@ List of attributes (core framework)
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~
* :ref:`required-mixin <required-mixin>` * :ref:`required-mixin <required-mixin>`
``start-value-[field]``
~~~~~~~~~~~~~~~~~~~~~~~
* :ref:`solid-form-search <solid-form-search>`
``(search-fields)`` deprecated ``(search-fields)`` deprecated
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* :ref:`filter-mixin <filter-mixin>` * :ref:`filter-mixin <filter-mixin>`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment