Skip to main content

Elegant, responsive, flexible, and lightweight notification plugin.

Project description

IziToast

izitoast is an Elegant, responsive, flexible, and lightweight notification plugin with no dependencies.

Installation

Use the package manager pip to install izitoast.

Usage

Add 'izitoast' to your INSTALLED_APPS setting like this:

INSTALLED_APPS = [
     '...',
    'izitoast',
]

inside base template file at last position include a single line of code

...
{% include 'includes/izitoast.html' %}
</body>
</html>

Working

  • User can pass option diversify or not, if not pass diversify option, izitoast will take default settings
  • Single message with specified tag
from izitoast.functions import izitoast

def func(request):
    ...
    message = "This is success message."
    diversify = {
        "position": "topRight",
        "transition_in": "flipInX",
        "transition_out": "flipOutX",
        "time_out": 3000,
    }

    izitoast(request=request, model="success", message=message, diversify=diversify)

    return render(request, 'template.html')
  • Multiple messages with different tags at a time
from izitoast.functions import izitoast

def func(request):
    ...
    message = {
        'raw': [
            {
                'tag': 'success',
                'item': "Success message"
            },
            {
                'tag': 'info',
                'item': "Information message!"
            },
            {
                'tag': 'warning',
                'item': "Warning message!"
            },
            {
                'tag': 'danger',
                'item': "Error message!"
            }
        ]
    }
    diversify = {
        "position": "topRight",
        "transition_in": "flipInX",
        "transition_out": "flipOutX",
        "time_out": 3000,
    }

    izitoast(request=request, model="success", message=message, diversify=diversify)

    return render(request, 'template.html')

generate form.errors

from izitoast.functions import izitoast

def func(request):
    ...
    
    diversify = {
        "position": "topRight",
        "transition_in": "flipInX",
        "transition_out": "flipOutX",
        "time_out": 3000,
    }
    izitoast(request=request, model="form-error", message=form.errors, diversify=diversify)

    return render(request, 'template.html')

model

  • Users can choose different models and it can be 'success', 'info', 'warning', or 'danger'.

  • but when generating form.errors must be set to 'model=form-error'.

Optionals

  1. position:
  • Default izitoast shown place "topRight",

  • It can be: [bottomRight, bottomLeft, topRight, topLeft, topCenter, bottomCenter, center]

  1. transition_in:
  • Default izitoast open animation "flipInX",

  • It can be: [bounceInLeft, bounceInRight, bounceInUp, bounceInDown, fadeIn, fadeInDown, fadeInUp, fadeInLeft, fadeInRight, flipInX]

  1. transition_out:
  • Default izitoast close animation "flipOutX",

  • It can be: [fadeOut, fadeOutUp, fadeOutDown, fadeOutLeft, fadeOutRight, flipOutX]

  1. time_out:
  • the default value is 3000.

Dependencies

For message transferring uses messages

from django.contrib import messages

Demo

Django-IziToast

GitHub

Django-IziToast

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Copyright 2023 Abdul Rahim K

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Change Log

0.0.1 (20/12/2022)

  • First Release

0.0.2 (20/12/2022)

  • Fixed mouse hover close issue

0.0.3 (21/12/2022)

  • Bug fixed

0.0.4 (21/12/2022)

  • Bug fixed

0.0.5 (21/12/2022)

  • Bug fixed
  • Removed

0.0.6 (21/12/2022)

  • Bug fixed
  • Removed

0.0.7 (21/12/2022)

  • Bug fixed
  • Removed

0.0.8 (21/12/2022)

  • Bug fixed
  • Removed

0.0.9 (21/12/2022)

  • Bug fixed
  • Removed

0.1.9 (21/12/2022)

  • Bug fixed
  • Removed

1.0.1 (21/12/2022)

  • Bug fixed
  • Removed

1.0.2 (21/12/2022)

  • Bug fixed
  • Removed

1.0.3 (21/12/2022)

  • Bug fixed
  • Removed

1.0.4 (21/12/2022)

  • Bug fixed
  • Removed

1.0.5 (21/12/2022)

  • Bug fixed
  • Removed

1.0.6 (21/12/2022)

  • Bug fixed
  • Removed

1.0.7 (21/12/2022)

  • Bug fixed
  • Improved performance
  • Size reduced
  • Add more options

1.0.8 (22/12/2022)

  • Bug fixed
  • Improved performance
  • form.errors added more options

1.0.9 (23/12/2022)

  • Bug fixed
  • Improved performance
  • form.errors added more options
  • reduce background tasks

1.1.9 (23/12/2022)

  • Bug fixed from dict

1.2.0 (23/12/2022)

  • improved

1.2.1 (26/12/2022)

  • improved
  • both string & dictionaries can pass through message.
  • users can alert single message as well as multiple messages with different types at a time.

1.2.2 (12/01/2023)

  • improved
  • remove unused warnings

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

izitoast-1.2.2.tar.gz (58.2 kB view details)

Uploaded Source

Built Distribution

izitoast-1.2.2-py3-none-any.whl (58.6 kB view details)

Uploaded Python 3

File details

Details for the file izitoast-1.2.2.tar.gz.

File metadata

  • Download URL: izitoast-1.2.2.tar.gz
  • Upload date:
  • Size: 58.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.0

File hashes

Hashes for izitoast-1.2.2.tar.gz
Algorithm Hash digest
SHA256 6e97cb62d80915532566ab63c1bddc735dda48cbdc318d7f573de0a9e92c1d61
MD5 84d75ea604cd969444c92d09c074508d
BLAKE2b-256 1226a73993315783d3e46fcfea689a589f38c2d7d0da153befde16f333a9dda2

See more details on using hashes here.

File details

Details for the file izitoast-1.2.2-py3-none-any.whl.

File metadata

  • Download URL: izitoast-1.2.2-py3-none-any.whl
  • Upload date:
  • Size: 58.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.0

File hashes

Hashes for izitoast-1.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 6c483a4cbdcd795ba88460c0eb6e44387bb2822930e84a75925d26e13505a4c5
MD5 72a053d351b895ec7e9b0837a0f269b6
BLAKE2b-256 b6545c3ea07dfb48ae9ae1dca19093e1c4b04f623879b9e9a63635371dd2f6b1

See more details on using hashes here.

Supported by

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