-
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allowing themes to affect the syntax and URL highlighting
- Loading branch information
1 parent
fe0e9fd
commit 607b4ef
Showing
8 changed files
with
334 additions
and
69 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
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 |
---|---|---|
@@ -1,8 +1,98 @@ | ||
from rich.console import Console, ConsoleOptions, RenderResult as RichRenderResult | ||
from rich.segment import Segment | ||
from rich.style import Style | ||
from rich.text import Text | ||
from textual.app import RenderResult | ||
from textual.widgets import Input | ||
from textual._segment_tools import line_crop | ||
|
||
|
||
from posting.config import SETTINGS | ||
from posting.themes import Theme | ||
|
||
|
||
class PostingInput(Input): | ||
def on_mount(self) -> None: | ||
self.cursor_blink = SETTINGS.get().text_input.blinking_cursor | ||
|
||
self._theme_cursor_style: Style | None = None | ||
|
||
self.on_theme_change(self.app.themes[self.app.theme]) | ||
self.app.theme_change_signal.subscribe(self, self.on_theme_change) | ||
|
||
def render(self) -> RenderResult: | ||
self.view_position = self.view_position | ||
if not self.value: | ||
placeholder = Text(self.placeholder, justify="left") | ||
placeholder.stylize(self.get_component_rich_style("input--placeholder")) | ||
if self.has_focus: | ||
if self._cursor_visible: | ||
# If the placeholder is empty, there's no characters to stylise | ||
# to make the cursor flash, so use a single space character | ||
if len(placeholder) == 0: | ||
placeholder = Text(" ") | ||
placeholder.stylize(self.cursor_style, 0, 1) | ||
return placeholder | ||
return _InputRenderable(self, self._cursor_visible) | ||
|
||
@property | ||
def cursor_style(self) -> Style: | ||
return ( | ||
self._theme_cursor_style | ||
if self._theme_cursor_style is not None | ||
else self.get_component_rich_style("input--cursor") | ||
) | ||
|
||
def on_theme_change(self, theme: Theme) -> None: | ||
text_area_theme = theme.text_area | ||
self._theme_cursor_style = ( | ||
Style.parse(text_area_theme.cursor) if text_area_theme.cursor else None | ||
) | ||
self.refresh() | ||
|
||
|
||
class _InputRenderable: | ||
"""Render the input content.""" | ||
|
||
def __init__(self, input: PostingInput, cursor_visible: bool) -> None: | ||
self.input = input | ||
self.cursor_visible = cursor_visible | ||
|
||
def __rich_console__( | ||
self, console: "Console", options: "ConsoleOptions" | ||
) -> RichRenderResult: | ||
input = self.input | ||
result = input._value | ||
width = input.content_size.width | ||
|
||
# Add the completion with a faded style. | ||
value = input.value | ||
value_length = len(value) | ||
suggestion = input._suggestion | ||
show_suggestion = len(suggestion) > value_length and input.has_focus | ||
if show_suggestion: | ||
result += Text( | ||
suggestion[value_length:], | ||
input.get_component_rich_style("input--suggestion"), | ||
) | ||
|
||
if self.cursor_visible and input.has_focus: | ||
if not show_suggestion and input._cursor_at_end: | ||
result.pad_right(1) | ||
cursor_position = input.cursor_position | ||
cursor_style = input.cursor_style | ||
result.stylize(cursor_style, cursor_position, cursor_position + 1) | ||
|
||
segments = list(result.render(console)) | ||
line_length = Segment.get_line_length(segments) | ||
if line_length < width: | ||
segments = Segment.adjust_line_length(segments, width) | ||
line_length = width | ||
|
||
line = line_crop( | ||
list(segments), | ||
input.view_position, | ||
input.view_position + width, | ||
line_length, | ||
) | ||
yield from line |
Oops, something went wrong.