Skip to main content

A Django form widget using FilePond with image preview support

Project description

django-filepond-form-widget

A Django form widget using FilePond with image preview support.

Table of Contents

Features

  • Easy Integration: Seamlessly integrates FilePond with Django forms.
  • Image Preview: Provides image preview functionality out of the box.
  • Customization: Configurable options to tailor the widget to your needs.
  • Responsive Design: Ensures a responsive and user-friendly interface.
  • Simple Form Submission: Focuses on regular file field submissions with forms, without handling server API endpoints.
  • Language Selection: Automatically sets the locale based on the current language, ensuring the FilePond interface matches the user's language preferences.
  • Extensible: Support for additional FilePond plugins planned for future releases.

Note: This widget is designed to work with standard form submissions. While FilePond's server property can be configured for API endpoints, this is beyond the scope of this project which aims to provide a simple form widget implementation.

Installation

Install the package using pip:

pip install django-filepond-form-widget

Alternatively, you can install it from the repository:

pip install git+https://github.com/krystofbe/django-filepond-form-widget.git

Usage

Add to Installed Apps

Add django_filepond_form_widget to your INSTALLED_APPS in settings.py:

INSTALLED_APPS = [
    # ...
    'django_filepond_form_widget',
    # ...
]

Include Static Files

Ensure that your templates include the necessary static files. Typically, this is handled automatically by the widget's media.

Use the Widget in Forms

from django import forms
from django_filepond_form_widget.widgets import FilePondWidget


class ExampleForm(forms.Form):
    image = forms.FileField(
        widget=FilePondWidget(
            config={"allowImagePreview": True, "allowMultiple": False}
        )
    )

Create Views and Templates

from django.shortcuts import render
from .forms import ExampleForm


def upload_view(request):
    if request.method == "POST":
        form = ExampleForm(request.POST, request.FILES)
        if form.is_valid():
            # Handle uploaded file
            return render(request, "example_app/success.html")
    else:
        form = ExampleForm()
    return render(request, "example_app/upload.html", {"form": form})

File Size Validation

To enable file size validation, set the allowFileSizeValidation option to True in the widget's config. You can also configure the following options:

  • minFileSize: The minimum size of a file (e.g., "1KB", "2MB").
  • maxFileSize: The maximum size of a file (e.g., "5MB", "10MB").
  • maxTotalFileSize: The maximum total size of all files (e.g., "10MB", "20MB").
  • labelMaxFileSizeExceeded: Custom message when a file exceeds maxFileSize.
  • labelMaxFileSize: Custom message showing the max file size.
  • labelMaxTotalFileSizeExceeded: Custom message when total size exceeds maxTotalFileSize.
  • labelMaxTotalFileSize: Custom message showing the max total file size.

Image Resize

To enable image resizing, set the allowImageResize option to True in the widget's config. You can also configure the following options:

  • imageResizeTargetWidth: The target width of the resized image in pixels.
  • imageResizeTargetHeight: The target height of the resized image in pixels.
  • imageResizeMode: The resizing mode ('cover', 'contain', or 'force').
  • imageResizeUpscale: Whether to upscale images smaller than the target size (true or false).

Example:

from django import forms
from django_filepond_form_widget.widgets import FilePondWidget

class ExampleForm(forms.Form):
    image = forms.FileField(
        widget=FilePondWidget(
            config={
                "allowImagePreview": True,
                "allowMultiple": False,
                "allowFileSizeValidation": True,
                "maxFileSize": "5MB",
                "maxTotalFileSize": "10MB",
            }
        )
    )

Example

An example project is provided to demonstrate how to integrate and run the widget.

Run the Development Server

Navigate to the example directory and run the server using Uvicorn:

uv run python example/manage.py runserver

Access the Application

Open your browser and navigate to http://localhost:8000/upload/ to see the file upload form in action.

Testing

This project uses pytest for testing. To run the tests:

Install Development Dependencies

uv pip install -e ".[test]"   

Run Tests

pytest

Contributing

Contributions are welcome! Please follow these steps:

  1. Fork the repository.
  2. Create a new branch for your feature or bugfix.
  3. Commit your changes with clear messages.
  4. Submit a pull request detailing your changes.

License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_filepond_form_widget-0.2.0.tar.gz (136.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_filepond_form_widget-0.2.0-py3-none-any.whl (103.4 kB view details)

Uploaded Python 3

File details

Details for the file django_filepond_form_widget-0.2.0.tar.gz.

File metadata

File hashes

Hashes for django_filepond_form_widget-0.2.0.tar.gz
Algorithm Hash digest
SHA256 802184f122a08e63ab2995d406d4759d28fa4d8ccceeb979f3b449e0df0d667b
MD5 8a084e62d615933ae032ecbf71db6ae4
BLAKE2b-256 09bc2d79c50239e325707023ab63881a52d330f1c90a88bdf17b06fa3f54015f

See more details on using hashes here.

File details

Details for the file django_filepond_form_widget-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_filepond_form_widget-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e60deea6d7b1d94b76b42def8a7111287cd8827a4643bde457db5c160d222587
MD5 d98e6ee35e70a41eaef19252a95061fd
BLAKE2b-256 ab688100cc274a82f5a26a0d7cbe1377fdeb54c1d324ebd0e50606c9ae54175d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page