ui: Fix notifications.

This commit is contained in:
tecnovert 2022-10-21 01:50:49 +02:00
parent 3c2eb5f9f8
commit a9f3eeefff
No known key found for this signature in database
GPG key ID: 8ED6D8750C4E3F93
2 changed files with 10 additions and 1 deletions

View file

@ -1034,7 +1034,7 @@ class BasicSwap(BaseApp):
def getNotifications(self):
rv = []
for k, v in self._notifications_cache.items():
rv.append((time.strftime('%d-%m-%y %H:%M:%S', time.localtime(k)), int(v[0]), json.dumps(v[1])))
rv.append((time.strftime('%d-%m-%y %H:%M:%S', time.localtime(k)), int(v[0]), v[1]))
return rv
def vacuumDB(self):

View file

@ -682,6 +682,15 @@
{% for entry in notifications %}
console.log({{ entry[0] }}, {{ entry[1] }}, {{ entry[2] }});
{% if entry[1] == 1 %}
console.log('new_offer {{ entry[2].offer_id }}');
{% elif entry[1] == 2 %}
console.log('new_bid {{ entry[2].bid_id }} on {{ entry[2].offer_id }}');
{% elif entry[1] == 3 %}
console.log('bid_accepted {{ entry[2].bid_id }}');
{% else %}
console.log('Unknown event {{ entry[1] }}');
{% endif %}
{% endfor %}
</script>
{% endif %}