31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
from gi.repository import Adw
|
|
|
|
from .time import time_remaining_text
|
|
|
|
FEATURE_NAMES = {
|
|
'sbs': 'Side-by-side mode (gaming)',
|
|
'smooth_follow': 'Smooth Follow (gaming)',
|
|
'productivity_basic': 'Breezy Desktop (productivity)',
|
|
'productivity_pro': 'Breezy Desktop Pro (productivity)',
|
|
}
|
|
|
|
class LicenseFeatureRow(Adw.ActionRow):
|
|
|
|
def __init__(self, feature, feature_details):
|
|
super().__init__()
|
|
|
|
self.set_title(FEATURE_NAMES[feature])
|
|
|
|
status = 'Disabled'
|
|
is_trial = feature_details.get('is_trial') == True
|
|
if feature_details.get('is_enabled') == True:
|
|
status = 'In trial' if is_trial else 'Enabled'
|
|
|
|
details = ''
|
|
funds_needed_in_seconds = feature_details.get('funds_needed_in_seconds')
|
|
if funds_needed_in_seconds is not None and funds_needed_in_seconds > 0:
|
|
time_remaining = time_remaining_text(funds_needed_in_seconds, is_trial)
|
|
if time_remaining: details = f" ({time_remaining} remaining)"
|
|
|
|
self.set_subtitle(f"{status}{details}")
|