[contrib/persian_date] refactor using core.datetime module as parent

This commit is contained in:
Sadegh Hamedani 2022-03-10 11:53:19 +03:30
parent 82ca97c65f
commit c228ca3b12
No known key found for this signature in database
GPG key ID: 98B7DB7315E8BA20

View file

@ -10,36 +10,22 @@ Parameters:
* datetime.locale: locale to use. default: "fa_IR" * datetime.locale: locale to use. default: "fa_IR"
""" """
from __future__ import absolute_import
import jdatetime import jdatetime
import locale
import core.module import core.decorators
import core.widget from modules.core.datetime import Module as dtmodule
import core.input
class Module(core.module.Module): class Module(dtmodule):
@core.decorators.every(minutes=1)
def __init__(self, config, theme): def __init__(self, config, theme):
super().__init__(config, theme, core.widget.Widget(self.full_text)) super().__init__(config, theme, dtlibrary=jdatetime)
l = ("fa_IR", "UTF-8")
lcl = self.parameter("locale", ".".join(l))
try:
locale.setlocale(locale.LC_ALL, lcl.split("."))
except Exception as e:
locale.setlocale(locale.LC_ALL, ("fa_IR", "UTF-8"))
def default_format(self): def default_format(self):
return "%A %d %B" return "%A %d %B"
def full_text(self, widget): def default_locale(self):
enc = locale.getpreferredencoding() return ("fa_IR", "UTF-8")
fmt = self.parameter("format", self.default_format())
retval = jdatetime.datetime.now().strftime(fmt)
if hasattr(retval, "decode"):
return retval.decode(enc)
return retval
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 # vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4