Enabling Modern UI Composition in Django https://django-cotton.com
Find a file
2024-07-03 08:40:18 +01:00
.github/workflows made doc publishing manual 2024-06-22 09:53:55 +01:00
dev wip 2024-06-23 19:12:07 +01:00
django_cotton Refactored loader and fix attribute ordering issue 2024-06-24 14:03:50 +01:00
docs docs update 2024-07-03 08:38:26 +01:00
.gitignore first release 2024-06-08 14:33:11 +01:00
LICENSE Docs improvements 2024-06-12 08:25:01 +01:00
poetry.lock updated poetry lock 2024-06-22 10:04:55 +01:00
pyproject.toml Automatic version bump 2024-06-24 13:08:38 +00:00
README.md Update README.md 2024-07-02 15:54:28 +01:00

Django Cotton

Build Status License

Bringing component-based design to Django templates.

Cotton aims to overcome certain limitations that exist in the django template system that hold us back when we want to apply modern practises to compose UIs in a modular and reusable way.

Key Features

  • Modern UI Composition: Efficiently compose and reuse UI components.
  • Interoperable with Django: Cotton enhances django's existing template system.
  • HTML-like Syntax: Better code editor support and productivity as component tags are similar to html tags.
  • Minimal Overhead: Compiles to native Django components with dynamic caching.
  • Ideal for Tailwind usage: Helps encapsulate content and style in one file.
  • Compliments HTMX: Create smart components, reducing repetition and enhancing maintainability.

Walkthrough

Your first component

<!-- button.cotton.html -->
<a href="/" class="...">{{ slot }}</a>
<!-- template -->
<c-button>Contact</c-button>
<!-- output -->
<a href="/" class="...">Contact</a>

Add attributes

<!-- button.cotton.html -->
<a href="{{ url }}" class="...">
    {{ slot }}
</a>
<!-- template -->
<c-button url="/contact">Contact</c-button>
<!-- output -->
<a href="/contact" class="...">
    Contact
</a>

Utilize named slots

Named slots are a powerful concept. It allows us to provide HTML to appear in one or more areas in the component. Here we allow the button to optionally display an icon:

<!-- button.cotton.html -->
<a href="{{ url }}" class="...">
    {{ slot }}
  
    {% if icon %} 
        {{ icon }} 
    {% endif %}
</a>
<!-- template -->
<c-button url="/contact">
    Contact
    <c-slot name="icon">
        <svg>...</svg>
    </c-slot>
</c-button>

Named slots can also contain any django native template logic:

<!-- template -->
<c-button url="/contact">
    <c-slot name="icon">
      {% if mode == 'edit' %}
          <svg id="pencil">...</svg>
      {% else %}
          <svg id="disk">...</svg>
      {% endif %}
    </c-slot>
</c-button>

Using template variables in attributes

Cotton allows you to include template variables inside attributes.

<c-weather icon="fa-{{ icon }}"
           unit="{{ unit|default:'c' }}"
           condition="very {% get_intensity %}"
/>

Pass template variable as an attribute

To pass a template variable you prepend the attribute name with a colon :. Consider a bio card component:

<!-- template -->
<c-bio-card :user="user" />

That has a component definition like:

<!-- bio_card.cotton.html -->
<div class="...">
  <img src="{{ user.avatar }}" alt="...">
  {{ user.username }} {{ user.country_code }}
</div>

Add boolean attribute

Boolean attributes reduce boilerplate when we just want to indicate a certain attribute should be True or not.

<!-- template -->
<c-button url="/contact" external>Contact</c-button>

By passing just the attribute name without a value, it will automatically be provided to the component as True

<!-- button.cotton.html -->
<a href="{{ url }}" {% if external %} target="_blank" {% endif %} class="...">
    {{ slot }}
</a>

Passing Python data types

Using the ':' to prefix an attribute tells Cotton we're passing a dynamic type down. We already know we can use this to send a variable, but you can also send basic python types, namely:

  • Integers and Floats
  • None, True and False
  • Lists
  • Dictionaries

This benefits a number of use-cases, for example if you have a select component that you want to provide the possible options from the parent:

<!-- select.cotton.html -->
<select {{ attrs }}>
    {% for option in options %}
        <option value="{{ option }}">{{ option }}</option>
    {% endfor %}
</select>
<c-select name="q1" :options="['yes', 'no', 'maybe']" />
<!-- output -->
<select name="q1">
    <option value="yes">yes</option>
    <option value="no">no</option>
    <option value="maybe">maybe</option>
</select>

Default attributes with <c-vars>

Django templates adhere quite strictly to the MVC model and does not permit a lot of data manipulation in the View. Fair enough, but what if we want to handle data for the purpose of UI state only? Having this in the back would surely convolute the backend code. For this, Cotton can set simple attribute values that help allow us to set default values for our component attributes.

<!-- button.cotton.html -->
<c-vars theme="bg-purple-500" />

<a href="..." class="{{ theme }}">
    {{ slot }}
</a>
<!-- template -->
<c-button>I'm a purple button</c-button>
<!-- output -->
<a href="..." class="bg-purple-500">
    I'm a purple button
</a>

Now we have a default theme for our button, but it is overridable:

<!-- template -->
<c-button theme="bg-green-500">But I'm green</c-button>
<!-- output -->
<a href="..." class="bg-green-500">
    But I'm green
</a>

Create flexible, re-usable inputs with {{ attrs }}

{{ attrs }} is a special variable that contains all the attributes passed to the component in an key="value" format. This is useful when you want to pass all attributes to a child element. For example, you have inputs that can have any number of attributes defined:

<!-- input.cotton.html -->
<input type="text" class="..." {{ attrs }} />
<!-- example usage -->
<c-input placeholder="Enter your name" />
<c-input name="country" id="country" value="Japan" />
<c-input class="highlighted" required />

If you combine this with the c-vars tag, any property defined there will be excluded from {{ attrs }}. For example:

<!-- input.cotton.html -->
<c-vars type="text" />

<input {{ attrs }} class="..." />
<!-- example usage -->
<c-input type="password" placeholder="Password" />
<!-- `type` will not be in {{ attrs }} -->

An example with HTMLX

Cotton helps carve out re-usable components, here we show how to make a re-usable form, reducing code repetition and improving maintainability:

<!-- form.cotton.html -->
<div id="result" class="..."></div>

<form {{ attrs }} hx-target="#result" hx-swap="outerHTML">
    {{ slot }}
    <button type="submit">Submit</button>
</form>
<!-- template -->
<c-form hx-post="/contact">
    <input type="text" name="name" placeholder="Name" />
    <input type="text" name="email" placeholder="Email" />
    <input type="checkbox" name="signup" />
</c-form>

<c-form url="/buy">
    <input type="text" name="type" />
    <input type="text" name="quantity" />
</c-form>

Usage Basics

  • File Extensions: Views templates that contain Cotton and Cotton components themselves should use the .cotton.html extension.
  • Component Placement: Components should be placed in the templates/cotton folder.
  • Naming Conventions:
    • Component filenames use snake_case: my_component.cotton.html
    • Components are called using kebab-case: <c-my-component />

For full docs and demos, checkout django-cotton.com