-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcolor_field.py
29 lines (22 loc) · 1.03 KB
/
color_field.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from django.core import validators
from django.db import models
from django.utils.translation import gettext_lazy as _
class HexColorValidator(validators.RegexValidator):
"""
Hex color validator (seven-character hexadecimal notation, e.g.: "#0055ff")
"""
regex = r'^#[0-9a-fA-F]{6}$'
message = _('Enter a valid seven-character hexadecimal color value.')
class ColorModelField(models.CharField):
"""
Hex color model field, e.g.: "#0055ff" (It's not a html color picker widget)
Note: It's not a html color picker, because "<input type="color">" doesn't allow
empty values! It will always fallback to "#000000"
If you need a fancy color picker use e.g.: "django-colorfield" ;)
"""
description = _('Color field (seven-character hexadecimal notation) e.g.: "#0055ff"')
def __init__(self, **kwargs):
kwargs['max_length'] = 7
super().__init__(**kwargs)
self.validators.append(validators.MinLengthValidator(self.max_length))
self.validators.append(HexColorValidator())