-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
248 additions
and
4 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
from textual.containers import Container, Horizontal, Vertical | ||
from textual.widgets import Static, Button | ||
from textual.app import ComposeResult | ||
from textual.widget import Widget | ||
from textual.binding import Binding | ||
from typing import Optional | ||
|
||
class SettingsButton(Button): | ||
def __init__(self, label: str, setting_id: str): | ||
super().__init__(label, id=f"setting_{setting_id}") | ||
self.setting_id = setting_id | ||
self.add_class("setting-button") | ||
|
||
def toggle_active(self, is_active: bool): | ||
if is_active: | ||
self.add_class("active") | ||
else: | ||
self.remove_class("active") | ||
|
||
class ThemeButton(Button): | ||
def __init__(self, theme: str): | ||
super().__init__(theme, id=f"theme_{theme}") | ||
self.theme_name = theme | ||
|
||
def on_button_pressed(self, event: Button.Pressed) -> None: | ||
event.stop() | ||
self.app.theme = self.theme_name | ||
|
||
class PersonalizationContent(Container): | ||
def compose(self) -> ComposeResult: | ||
yield Static("Personalization Settings", classes="settings-title") | ||
with Container(classes="theme-buttons-grid"): | ||
themes = [ | ||
"textual-dark", "textual-light", "nord", "gruvbox", | ||
"catppuccin-mocha", "dracula", "tokyo-night", "monokai", | ||
"flexoki", "catppuccin-latte", "solarized-light" | ||
] | ||
for theme in themes: | ||
yield ThemeButton(theme) | ||
|
||
class SpotifyContent(Container): | ||
def compose(self) -> ComposeResult: | ||
yield Static("Spotify Settings", classes="settings-title") | ||
|
||
class WidgetsContent(Container): | ||
def compose(self) -> ComposeResult: | ||
yield Static("Widgets Settings", classes="settings-title") | ||
|
||
class AboutContent(Container): | ||
def compose(self) -> ComposeResult: | ||
yield Static("About", classes="settings-title") | ||
|
||
class SettingsView(Container): | ||
BINDINGS = [ | ||
Binding("up", "move_up", "Up", show=True), | ||
Binding("down", "move_down", "Down", show=True), | ||
Binding("enter", "select_setting", "Select", show=True), | ||
] | ||
|
||
def compose(self) -> ComposeResult: | ||
with Container(classes="settings-container"): | ||
with Horizontal(classes="settings-layout"): | ||
with Vertical(classes="settings-sidebar"): | ||
yield SettingsButton("Personalization", "personalization") | ||
yield SettingsButton("Spotify", "spotify") | ||
yield SettingsButton("Widgets", "widgets") | ||
yield SettingsButton("About", "about") | ||
|
||
with Container(classes="settings-content"): | ||
yield PersonalizationContent() | ||
yield SpotifyContent() | ||
yield WidgetsContent() | ||
yield AboutContent() | ||
|
||
def on_mount(self) -> None: | ||
personalization_btn = self.query_one("SettingsButton#setting_personalization") | ||
personalization_btn.toggle_active(True) | ||
personalization_btn.focus() | ||
|
||
spotify_content = self.query_one(SpotifyContent) | ||
widgets_content = self.query_one(WidgetsContent) | ||
about_content = self.query_one(AboutContent) | ||
|
||
spotify_content.styles.display = "none" | ||
widgets_content.styles.display = "none" | ||
about_content.styles.display = "none" | ||
|
||
def get_initial_focus(self) -> Optional[Widget]: | ||
return self.query_one(SettingsButton, id="setting_personalization") | ||
|
||
def on_button_pressed(self, event: Button.Pressed) -> None: | ||
if not isinstance(event.button, SettingsButton): | ||
return | ||
|
||
event.stop() | ||
|
||
setting_buttons = self.query(SettingsButton) | ||
|
||
personalization_content = self.query_one(PersonalizationContent) | ||
spotify_content = self.query_one(SpotifyContent) | ||
widgets_content = self.query_one(WidgetsContent) | ||
about_content = self.query_one(AboutContent) | ||
|
||
for button in setting_buttons: | ||
event.stop() | ||
button.toggle_active(button.id == event.button.id) | ||
|
||
all_content = [personalization_content, spotify_content, widgets_content, about_content] | ||
for content in all_content: | ||
content.styles.display = "none" | ||
|
||
if event.button.id == "setting_personalization": | ||
personalization_content.styles.display = "block" | ||
elif event.button.id == "setting_spotify": | ||
spotify_content.styles.display = "block" | ||
elif event.button.id == "setting_widgets": | ||
widgets_content.styles.display = "block" | ||
elif event.button.id == "setting_about": | ||
about_content.styles.display = "block" | ||
|
||
async def action_move_up(self) -> None: | ||
buttons = list(self.query(SettingsButton)) | ||
current = self.app.focused | ||
if current in buttons: | ||
current_idx = buttons.index(current) | ||
prev_idx = (current_idx - 1) % len(buttons) | ||
buttons[prev_idx].focus() | ||
|
||
async def action_move_down(self) -> None: | ||
buttons = list(self.query(SettingsButton)) | ||
current = self.app.focused | ||
if current in buttons: | ||
current_idx = buttons.index(current) | ||
next_idx = (current_idx + 1) % len(buttons) | ||
buttons[next_idx].focus() | ||
|
||
async def action_select_setting(self) -> None: | ||
current = self.app.focused | ||
if isinstance(current, SettingsButton): | ||
current.press() |
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