Collection of StreamField blocks for Wagtail
Project description
wagtail-cblocks
A collection of StreamField blocks to use in Wagtail CMS.
Warning! This project is still early on in its development lifecycle. It is possible for breaking changes to occur between versions until reaching a stable 1.0. Feedback and pull requests are welcome.
Requirements
wagtail-cblocks requires the following:
- Python 3 (3.8, 3.9, 3.10, 3.11, 3.12)
- Django (4.2 LTS, 5.1)
- Wagtail (5.2 LTS, 6.2)
Installation
- Install using
pip
:$ pip install wagtail-cblocks
- Add
wagtail_cblocks
to yourINSTALLED_APPS
setting:INSTALLED_APPS = [ # ... 'wagtail_cblocks', # ... ]
Usage
Each block comes with a template made for Bootstrap 5 which is not shipped by this plugin. If you plan to use them as is, you must have at least the Bootstrap stylesheet loaded in your base template - refer as needed to the Bootstrap documentation.
In waiting for the documentation, here is a sample usage:
from wagtail.admin.edit_handlers import StreamFieldPanel
from wagtail.blocks import StreamBlock
from wagtail.fields import StreamField
from wagtail.models import Page
from wagtail_cblocks.blocks import (
ButtonBlock,
ColumnsBlock,
HeadingBlock,
ImageBlock,
ParagraphBlock,
)
class BaseBlock(StreamBlock):
title_block = HeadingBlock()
paragraph_block = ParagraphBlock()
button_block = ButtonBlock()
image_block = ImageBlock()
class BodyBlock(BaseBlock):
columns_block = ColumnsBlock(BaseBlock())
class StandardPage(Page):
body = StreamField(BodyBlock())
content_panels = Page.content_panels + [
StreamFieldPanel('body'),
]
Factories are also provided for some of the blocks to ease tests - see
wagtail_cblocks/factories.py
. To make use of
them, install the extra factories requirements:
$ pip install wagtail-cblocks[factories]
Development
Quick start
To set up a development environment, ensure that Python 3 is installed on your system. Then:
- Clone this repository
- Create a virtual environment and activate it:
$ python3 -m venv venv $ source venv/bin/activate
- Install this package and its requirements:
(venv)$ pip install --editable ".[dev]" "tox>=4.11"
To run the test app interactively, use tox -e interactive
, visit
http://127.0.0.1:8020/admin and log in
with admin
/ changeme
.
Contributing
The tests are written with pytest and code coverage is measured with coverage. You can use the following commands while developing:
make test
: run the tests and output a quick report of code coveragemake test-wip
: only run the tests marked as 'wip'make test-all
: run the tests on all supported versions of Django and Wagtail with nox
The Python code is formatted and linted thanks to ruff. You can check the code
with make lint
and try to fix the reported issues with make format
.
When submitting a pull-request, please ensure that the code is well formatted and covered, and that all the tests pass.
License
This extension is mainly developed by Cliss XXI and licensed under the AGPLv3+. Any contribution is welcome!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file wagtail_cblocks-0.5.1.tar.gz
.
File metadata
- Download URL: wagtail_cblocks-0.5.1.tar.gz
- Upload date:
- Size: 33.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 281f97c05e79529f1f2726f1531d30564bb231acf2ab8f29114534b6844c352d |
|
MD5 | 5f99cd22a010e0bdfb1887b711cba479 |
|
BLAKE2b-256 | bee3951d2a583fb31f68c20789747221468a534e46a74be28855115d34b0b200 |
Provenance
File details
Details for the file wagtail_cblocks-0.5.1-py3-none-any.whl
.
File metadata
- Download URL: wagtail_cblocks-0.5.1-py3-none-any.whl
- Upload date:
- Size: 24.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7367abac58313b10a85fadeaaedb33b7c5820697b7ff0243b84252e6ebd0dd26 |
|
MD5 | ce80dc841fc79c40adbc2049df58c175 |
|
BLAKE2b-256 | b533dbab3ca1ed6ef20cc3d777c58d1bb5b0116e6e9ab35764dfe452e1603a56 |