Last active
September 20, 2024 09:28
-
-
Save goloveychuk/72499a7251e070742f00 to your computer and use it in GitHub Desktop.
modeldiffmixin.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.forms.models import model_to_dict | |
class ModelDiffMixin(object): | |
def __init__(self, *args, **kwargs): | |
super(ModelDiffMixin, self).__init__(*args, **kwargs) | |
self.__initial = self._dict | |
@property | |
def diff(self): | |
d1 = self.__initial | |
d2 = self._dict | |
diffs = [(k, (v, d2[k])) for k, v in d1.items() if v != d2[k]] | |
return dict(diffs) | |
@property | |
def has_changed(self): | |
return bool(self.diff) | |
@property | |
def changed_fields(self): | |
return self.diff.keys() | |
def get_field_diff(self, field_name): | |
""" | |
Returns a diff for field if it's changed and None otherwise. | |
""" | |
return self.diff.get(field_name, None) | |
def save(self, *args, **kwargs): | |
""" | |
Saves model and set initial state. | |
""" | |
super(ModelDiffMixin, self).save(*args, **kwargs) | |
self.__initial = self._dict | |
@property | |
def _dict(self): | |
return model_to_dict(self, fields=[field.name for field in | |
self._meta.fields]) |
Is this compatible with django 4.2 as well? I have noticed behavioral changes after upgrading django from 4.0 to 4.2.15 in the above code snippet.
I’m not writing in django currently
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If storing timezone aware datetimes the
diff
method thinks that the value has changed.