mirror of
https://github.com/Hopiu/django-select2.git
synced 2026-03-30 20:00:23 +00:00
* Previously, when using {{ form.empty_form }} the inline js would
automatically be called on the `empty_form`. This made it impossible
to dynamically add inlines to the page because of how
`__prefix__` is duplicated to the new inlines.
This commit wraps all the inline js in a function which is attached
to global `window.django_select2` plugin. On page load only non
`empty_form`'s are initialized with select2, giving the developer to
attach to the 'add new inline' click and call the `django_select2`
plugin with the proper inline formset id. I am using this now with
`django-superformset` and dynamically inserted inlines that contain
select2 fields are working as expected.
Additionally all the inline js for each formset is identicaly, a
future cleanup could be to only inline the field and form id
variables.
* First converted `widgets.py` to Unix file type so the diff does not
contain windows line endings.
* Since all the inline js is now run post page load, we can put all of
the`django_select2` js libraries at the page bottom with other js assets.
refs #51
* As a bonus, this removes all the js code generation libs from utils with
json.dumps().
* I have not tried formsets with the django admin, however this work
will allow inline formsets support to be added to the admin with
less developer effort than before.
Refs: #125, #65, #49, #32, #109
174 lines
4.9 KiB
Python
174 lines
4.9 KiB
Python
import datetime
|
|
import hashlib
|
|
import logging
|
|
import re
|
|
import threading
|
|
import types
|
|
|
|
from django.utils.encoding import force_unicode
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def extract_some_key_val(dct, keys):
|
|
"""
|
|
Gets a sub-set of a :py:obj:`dict`.
|
|
|
|
:param dct: Source dictionary.
|
|
:type dct: :py:obj:`dict`
|
|
|
|
:param keys: List of subset keys, which to extract from ``dct``.
|
|
:type keys: :py:obj:`list` or any iterable.
|
|
|
|
:rtype: :py:obj:`dict`
|
|
"""
|
|
edct = {}
|
|
for k in keys:
|
|
v = dct.get(k, None)
|
|
if v is not None:
|
|
edct[k] = v
|
|
return edct
|
|
|
|
|
|
### Auto view helper utils ###
|
|
|
|
from . import __ENABLE_MULTI_PROCESS_SUPPORT as ENABLE_MULTI_PROCESS_SUPPORT, \
|
|
__MEMCACHE_HOST as MEMCACHE_HOST, __MEMCACHE_PORT as MEMCACHE_PORT, __MEMCACHE_TTL as MEMCACHE_TTL
|
|
|
|
from . import __GENERATE_RANDOM_ID as GENERATE_RANDOM_ID, __SECRET_SALT as SECRET_SALT
|
|
|
|
def synchronized(f):
|
|
"Decorator to synchronize multiple calls to a functions."
|
|
f.__lock__ = threading.Lock()
|
|
|
|
def synced_f(*args, **kwargs):
|
|
with f.__lock__:
|
|
return f(*args, **kwargs)
|
|
|
|
synced_f.__doc__ = f.__doc__
|
|
return synced_f
|
|
|
|
# Generated Id to field instance mapping.
|
|
__id_store = {}
|
|
# Field's key to generated Id mapping.
|
|
__field_store = {}
|
|
|
|
|
|
ID_PATTERN = r"[0-9_a-zA-Z.:+\- ]+"
|
|
|
|
def is_valid_id(val):
|
|
"""
|
|
Checks if ``val`` is a valid generated Id.
|
|
|
|
:param val: The value to check.
|
|
:type val: :py:obj:`str`
|
|
|
|
:rtype: :py:obj:`bool`
|
|
"""
|
|
regex = "^%s$" % ID_PATTERN
|
|
if re.match(regex, val) is None:
|
|
return False
|
|
else:
|
|
return True
|
|
|
|
if ENABLE_MULTI_PROCESS_SUPPORT:
|
|
from memcache_wrapped_db_client import Client
|
|
remote_server = Client(MEMCACHE_HOST, str(MEMCACHE_PORT), MEMCACHE_TTL)
|
|
|
|
@synchronized
|
|
def register_field(key, field):
|
|
"""
|
|
Registers an Auto field for use with :py:class:`.views.AutoResponseView`.
|
|
|
|
:param key: The key to use while registering this field.
|
|
:type key: :py:obj:`unicode`
|
|
|
|
:param field: The field to register.
|
|
:type field: :py:class:`AutoViewFieldMixin`
|
|
|
|
:return: The generated Id for this field. If given ``key`` was already registered then the
|
|
Id generated that time, would be returned.
|
|
:rtype: :py:obj:`unicode`
|
|
"""
|
|
global __id_store, __field_store
|
|
|
|
from fields import AutoViewFieldMixin
|
|
if not isinstance(field, AutoViewFieldMixin):
|
|
raise ValueError('Field must extend AutoViewFieldMixin')
|
|
|
|
if key not in __field_store:
|
|
# Generating id
|
|
if GENERATE_RANDOM_ID:
|
|
id_ = u"%d:%s" % (len(__id_store), unicode(datetime.datetime.now()))
|
|
else:
|
|
id_ = unicode(hashlib.sha1("%s:%s" % (key, SECRET_SALT)).hexdigest())
|
|
|
|
__field_store[key] = id_
|
|
__id_store[id_] = field
|
|
|
|
if logger.isEnabledFor(logging.INFO):
|
|
logger.info("Registering new field: %s; With actual id: %s", key, id_)
|
|
|
|
if ENABLE_MULTI_PROCESS_SUPPORT:
|
|
logger.info("Multi process support is enabled. Adding id-key mapping to remote server.")
|
|
remote_server.set(id_, key)
|
|
else:
|
|
id_ = __field_store[key]
|
|
if logger.isEnabledFor(logging.INFO):
|
|
logger.info("Field already registered: %s; With actual id: %s", key, id_)
|
|
return id_
|
|
|
|
|
|
def get_field(id_):
|
|
"""
|
|
Returns an Auto field instance registered with the given Id.
|
|
|
|
:param id_: The generated Id the field is registered with.
|
|
:type id_: :py:obj:`unicode`
|
|
|
|
:rtype: :py:class:`AutoViewFieldMixin` or None
|
|
"""
|
|
field = __id_store.get(id_, None)
|
|
if field is None and ENABLE_MULTI_PROCESS_SUPPORT:
|
|
if logger.isEnabledFor(logging.DEBUG):
|
|
logger.debug('Id "%s" not found in this process. Looking up in remote server.', id_)
|
|
key = remote_server.get(id_)
|
|
if key is not None:
|
|
id_in_current_instance = __field_store[key]
|
|
if id_in_current_instance:
|
|
field = __id_store.get(id_in_current_instance, None)
|
|
if field:
|
|
__id_store[id_] = field
|
|
else:
|
|
logger.error('Unknown id "%s".', id_in_current_instance)
|
|
else:
|
|
logger.error('Unknown id "%s".', id_)
|
|
return field
|
|
|
|
def timer_start(name):
|
|
import sys, time
|
|
if sys.platform == "win32":
|
|
# On Windows, the best timer is time.clock()
|
|
default_timer = time.clock
|
|
multiplier = 1.0
|
|
else:
|
|
# On most other platforms the best timer is time.time()
|
|
default_timer = time.time
|
|
multiplier = 1000.0
|
|
|
|
return (name, default_timer, multiplier, default_timer())
|
|
|
|
def timer_end(t):
|
|
(name, default_timer, multiplier, timeS) = t
|
|
timeE = default_timer()
|
|
logger.debug("Time taken by %s: %0.3f ms" % (name, (timeE - timeS) * multiplier))
|
|
|
|
def timer(f):
|
|
def inner(*args, **kwargs):
|
|
|
|
t = timer_start(f.func_name)
|
|
ret = f(*args, **kwargs)
|
|
timer_end(t)
|
|
|
|
return ret
|
|
return inner
|