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.7, 3.8, 3.9)
- Django (2.2, 3.1, 3.2)
- Wagtail (2.11, 2.14)
Older versions of Wagtail could work too but they are not tested. The efforts are focused in LTS and recent versions.
Installation
Install using pip
:
pip install wagtail-cblocks
Add wagtail_cblocks
to your INSTALLED_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.core.blocks import StreamBlock
from wagtail.core.fields import StreamField
from wagtail.core.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 virtualenv
is installed on your system. Then:
- Clone this repository
- Create a virtual environment and activate it:
virtualenv -p python3 venv source venv/bin/activate
- Install this package in develop mode with extra requirements:
pip install -e .[test]
Finally, if you want to run the test application to preview the blocks, you will have to create the database before running a development server:
./tests/manage.py migrate
DEBUG=1 ./tests/manage.py runserver
Note that DEBUG=1
is required since tests are run without the debug mode. All the media will be stored in tests/var
.
Contributing
The Python code is formatted and linted thanks to flake8, isort and black. To ease the use of this tools, the following commands are available:
make lint
: check the Python code syntax and imports ordermake format
: fix the Python code syntax and imports order
The tests are written with pytest and code coverage is measured with coverage.py. You can use the following commands for that:
make test
: run the tests and output a quick report of code coveragemake coverage
: run the tests and produce an HTML report of code coverage
When submitting a pull-request, please ensure that the code is well formatted and covered, and that all the other tests pass.
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.3.0.tar.gz
.
File metadata
- Download URL: wagtail_cblocks-0.3.0.tar.gz
- Upload date:
- Size: 31.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.4.2 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3c4c8e4b2cc2ebf22ca8d6d9a9dcae08d9c9c2c820ce772998e294798b79366 |
|
MD5 | 5c40cadebec13f8fa8ee735928c9a94e |
|
BLAKE2b-256 | 5894f003e212846b1c74728cb7eacd710762b401ffe2f6b552dc3be293a47a9c |
File details
Details for the file wagtail_cblocks-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: wagtail_cblocks-0.3.0-py3-none-any.whl
- Upload date:
- Size: 23.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.4.2 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e0b98add5a3659a7f0fd42122f7089693e2503c7baa166fc720f43a6fdaaea1 |
|
MD5 | 29d458f3c2e8d79f288256cb4d2514a2 |
|
BLAKE2b-256 | c3f5e0514e5c835da6887542977462fb84bd48661e96f7ac68cc39c6e7b6d53f |