Skip to content

Latest commit

 

History

History
435 lines (301 loc) · 14.6 KB

components.md

File metadata and controls

435 lines (301 loc) · 14.6 KB

???+ summary

Prefabricated components can be used within your `components.py` to help simplify development.

View To Component

Convert any Django view into a IDOM component by using this decorator. Compatible with Function Based Views and Class Based Views. Views can be sync or async.

=== "components.py"

```python
from idom import component, html
from django.http import HttpResponse
from django_idom.components import view_to_component

@view_to_component
def hello_world_view(request):
    return HttpResponse("Hello World!")

@component
def my_component():
    return html.div(
        hello_world_view(),
    )
```

??? example "See Interface"

<font size="4">**Parameters**</font>

| Name | Type | Description | Default |
| --- | --- | --- | --- |
| `view` | `Callable | View` | The view function or class to convert. | N/A |
| `compatibility` | `bool` | If True, the component will be rendered in an iframe. When using compatibility mode `tranforms`, `strict_parsing`, `request`, `args`, and `kwargs` arguments will be ignored. | `False` |
| `transforms` | `Sequence[Callable[[VdomDict], Any]]` | A list of functions that transforms the newly generated VDOM. The functions will be called on each VDOM node. | `tuple` |
| `strict_parsing` | `bool` | If True, an exception will be generated if the HTML does not perfectly adhere to HTML5. | `True` |

<font size="4">**Returns**</font>

| Type | Description |
| --- | --- |
| `_ViewComponentConstructor` | A function that takes `request, *args, key, **kwargs` and returns an IDOM component. All parameters are directly provided to your view, besides `key` which is used by IDOM. |

??? Warning "Potential information exposure when using compatibility = True"

When using `compatibility` mode, IDOM automatically exposes a URL to your view.

It is your responsibility to ensure privileged information is not leaked via this method.

This can be done via directly writing conditionals into your view, or by adding decorators such as [`user_passes_test`](https://docs.djangoproject.com/en/dev/topics/auth/default/#django.contrib.auth.decorators.user_passes_test) to your views prior to using `view_to_component`.

=== "Function Based View"

    ```python
    ...

    @view_to_component(compatibility=True)
    @user_passes_test(lambda u: u.is_superuser)
    def example_view(request):
        ...
    ```

=== "Class Based View"

    ```python
    ...

    @view_to_component(compatibility=True)
    @method_decorator(user_passes_test(lambda u: u.is_superuser), name="dispatch")
    class ExampleView(TemplateView):
        ...
    ```

??? info "Existing limitations"

There are currently several limitations of using `view_to_component` that may be resolved in a future version of `django_idom`.

- Requires manual intervention to change request methods beyond `GET`.
- IDOM events cannot conveniently be attached to converted view HTML.
- Has no option to automatically intercept local anchor link (such as `#!html <a href='example/'></a>`) click events.

_Please note these limitations do not exist when using `compatibility` mode._

??? question "How do I use this for Class Based Views?"

You can simply pass your Class Based View directly into `view_to_component`.

=== "components.py"

    ```python
    from idom import component, html
    from django.http import HttpResponse
    from django.views import View
    from django_idom.components import view_to_component

    @view_to_component
    class HelloWorldView(View):
        def get(self, request):
            return HttpResponse("Hello World!")

    @component
    def my_component():
        return html.div(
            HelloWorldView(),
        )
    ```

??? question "How do I transform views from external libraries?"

In order to convert external views, you can utilize `view_to_component` as a function, rather than a decorator.

=== "components.py"

    ```python
    from idom import component, html
    from django.http import HttpResponse
    from django_idom.components import view_to_component
    from some_library.views import example_view

    example_vtc = view_to_component(example_view)

    @component
    def my_component():
        return html.div(
            example_vtc(),
        )
    ```

??? question "How do I provide request, args, and kwargs to a view?"

<font size="4">**`Request`**</font>

You can use the `request` parameter to provide the view a custom request object.

=== "components.py"

    ```python
    from idom import component, html
    from django.http import HttpResponse, HttpRequest
    from django_idom.components import view_to_component

    example_request = HttpRequest()
    example_request.method = "PUT"

    @view_to_component
    def hello_world_view(request):
        return HttpResponse(f"Hello World! {request.method}")

    @component
    def my_component():
        return html.div(
            hello_world_view(
                example_request,
            ),
        )
    ```

---

<font size="4">**`args` and `kwargs`**</font>

You can use the `args` and `kwargs` parameters to provide positional and keyworded arguments to a view.

=== "components.py"

    ```python
    from idom import component, html
    from django.http import HttpResponse
    from django_idom.components import view_to_component

    @view_to_component
    def hello_world_view(request, arg1, arg2, key1=None, key2=None):
        return HttpResponse(f"Hello World! {arg1} {arg2} {key1} {key2}")

    @component
    def my_component():
        return html.div(
            hello_world_view(
                None, # Your request object (optional)
                "value_1",
                "value_2",
                key1="abc",
                key2="123",
            ),
        )
    ```

??? question "How do I use strict_parseing, compatibility, and transforms?"

<font size="4">**`strict_parsing`**</font>

By default, an exception will be generated if your view's HTML does not perfectly adhere to HTML5.

However, there are some circumstances where you may not have control over the original HTML, so you may be unable to fix it. Or you may be relying on non-standard HTML tags such as `#!html <my-tag> Hello World </my-tag>`.

In these scenarios, you may want to rely on best-fit parsing by setting the `strict_parsing` parameter to `False`.

=== "components.py"

    ```python
    from idom import component, html
    from django.http import HttpResponse
    from django_idom.components import view_to_component

    @view_to_component(strict_parsing=False)
    def hello_world_view(request):
        return HttpResponse("<my-tag> Hello World </my-tag>")

    @component
    def my_component():
        return html.div(
            hello_world_view(),
        )
    ```

_Note: Best-fit parsing is designed to be similar to how web browsers would handle non-standard or broken HTML._

---

<font size="4">**`compatibility`**</font>

For views that rely on HTTP responses other than `GET` (such as `PUT`, `POST`, `PATCH`, etc), you should consider using compatibility mode to render your view within an iframe.

Any view can be rendered within compatibility mode. However, the `transforms`, `strict_parsing`, `request`, `args`, and `kwargs` arguments do not apply to compatibility mode.



=== "components.py"

    ```python
    from idom import component, html
    from django.http import HttpResponse
    from django_idom.components import view_to_component

    @view_to_component(compatibility=True)
    def hello_world_view(request):
        return HttpResponse("Hello World!")

    @component
    def my_component():
        return html.div(
            hello_world_view(),
        )
    ```

_Note: By default the `compatibility` iframe is unstyled, and thus won't look pretty until you add some CSS._

---

<font size="4">**`transforms`**</font>

After your view has been turned into [VDOM](https://idom-docs.herokuapp.com/docs/reference/specifications.html#vdom) (python dictionaries), `view_to_component` will call your `transforms` functions on every VDOM node.

This allows you to modify your view prior to rendering.

For example, if you are trying to modify the text of a node with a certain `id`, you can create a transform like such:

=== "components.py"

    ```python
    from idom import component, html
    from django.http import HttpResponse
    from django_idom.components import view_to_component

    def example_transform(vdom):
        attributes = vdom.get("attributes")
        if attributes and attributes.get("id") == "hello-world":
            vdom["children"][0] = "Good Bye World!"

    @view_to_component(transforms=[example_transform])
    def hello_world_view(request):
        return HttpResponse("<div id='hello-world'> Hello World! <div>")

    @component
    def my_component():
        return html.div(
            hello_world_view(),
        )
    ```

Django CSS

Allows you to defer loading a CSS stylesheet until a component begins rendering. This stylesheet must be stored within Django's static files.

=== "components.py"

```python
from idom import component, html
from django_idom.components import django_css

@component
def my_component():
    return html.div(
        django_css("css/buttons.css"),
        html.button("My Button!"),
    )
```

??? example "See Interface"

<font size="4">**Parameters**</font>

| Name | Type | Description | Default |
| --- | --- | --- | --- |
| `static_path` | `str` | The path to the static file. This path is identical to what you would use on a `static` template tag. | N/A |
| `key` | `Key | None` | A key to uniquely identify this component which is unique amongst a component's immediate siblings | `None` |

<font size="4">**Returns**</font>

| Type | Description |
| --- | --- |
| `Component` | An IDOM component. |

??? question "Should I put django_css at the top of my component?"

Yes, if the stylesheet contains styling for your component.

??? question "Can I load static CSS using html.link instead?"

While you can load stylesheets with `html.link`, keep in mind that loading this way **does not** ensure load order. Thus, your stylesheet will be loaded after your component is displayed. This would likely cause unintended visual behavior, so use this at your own discretion.

Here's an example on what you should avoid doing for Django static files:

```python
from idom import component, html
from django.templatetags.static import static

@component
def my_component():
    return html.div(
        html.link({"rel": "stylesheet", "href": static("css/buttons.css")}),
        html.button("My Button!"),
    )
```

??? question "How do I load external CSS?"

`django_css` can only be used with local static files.

For external CSS, substitute `django_css` with `html.link`.

```python
from idom import component, html

@component
def my_component():
    return html.div(
        html.link({"rel": "stylesheet", "href": "https://example.com/external-styles.css"}),
        html.button("My Button!"),
    )
```

??? question "Why not load my CSS in #!html <head>?"

Traditionally, stylesheets are loaded in your `#!html <head>` using the `#!jinja {% load static %}` template tag.

To help improve webpage load times, you can use the `django_css` component to defer loading your stylesheet until it is needed.

Django JS

Allows you to defer loading JavaScript until a component begins rendering. This JavaScript must be stored within Django's static files.

=== "components.py"

```python
from idom import component, html
from django_idom.components import django_js

@component
def my_component():
    return html.div(
        html.button("My Button!"),
        django_js("js/scripts.js"),
    )
```

??? example "See Interface"

<font size="4">**Parameters**</font>

| Name | Type | Description | Default |
| --- | --- | --- | --- |
| `static_path` | `str` | The path to the static file. This path is identical to what you would use on a `static` template tag. | N/A |
| `key` | `Key | None` | A key to uniquely identify this component which is unique amongst a component's immediate siblings | `None` |

<font size="4">**Returns**</font>

| Type | Description |
| --- | --- |
| `Component` | An IDOM component. |

??? question "Should I put django_js at the bottom of my component?"

Yes, if your scripts are reliant on the contents of the component.

??? question "Can I load static JavaScript using html.script instead?"

While you can load JavaScript with `html.script`, keep in mind that loading this way **does not** ensure load order. Thus, your JavaScript will likely be loaded at an arbitrary time after your component is displayed.

Here's an example on what you should avoid doing for Django static files:

```python
from idom import component, html
from django.templatetags.static import static

@component
def my_component():
    return html.div(
        html.script({"src": static("js/scripts.js")}),
        html.button("My Button!"),
    )
```

??? question "How do I load external JS?"

`django_js` can only be used with local static files.

For external JavaScript, substitute `django_js` with `html.script`.

```python
from idom import component, html

@component
def my_component():
    return html.div(
        html.script({"src": "https://example.com/external-scripts.js"}),
        html.button("My Button!"),
    )
```

??? question "Why not load my JS in #!html <head>?"

Traditionally, JavaScript is loaded in your `#!html <head>` using the `#!jinja {% load static %}` template tag.

To help improve webpage load times, you can use the `django_js` component to defer loading your JavaScript until it is needed.