12
12
from textual .screen import ModalScreen
13
13
from textual .widgets import Button , TextArea
14
14
15
+ ##############################################################################
16
+ # Textual fspicker imports.
17
+ from textual_fspicker import FileSave
18
+
15
19
##############################################################################
16
20
# Local imports.
17
21
from ...peps import API
18
22
from ..data import PEP , cache_dir
19
23
from ..widgets import TextViewer
24
+ from .confirm import Confirm
20
25
21
26
22
27
##############################################################################
@@ -58,7 +63,12 @@ class PEPViewer(ModalScreen[None]):
58
63
}
59
64
"""
60
65
61
- BINDINGS = [("escape" , "close" ), ("ctrl+r" , "refresh" ), ("ctrl+c" , "copy" )]
66
+ BINDINGS = [
67
+ ("ctrl+c" , "copy" ),
68
+ ("ctrl+r" , "refresh" ),
69
+ ("ctrl+s" , "save" ),
70
+ ("escape" , "close" ),
71
+ ]
62
72
63
73
def __init__ (self , pep : PEP ) -> None :
64
74
"""Initialise the dialog.
@@ -80,6 +90,7 @@ def compose(self) -> ComposeResult:
80
90
yield TextViewer ()
81
91
with Horizontal (id = "buttons" ):
82
92
yield Button (f"Copy [{ key_colour } ]\\ [^c][/]" , id = "copy" )
93
+ yield Button (f"Save [{ key_colour } ]\\ [^s][/]" , id = "save" )
83
94
yield Button (f"Refresh [{ key_colour } ]\\ [^r][/]" , id = "refresh" )
84
95
yield Button (f"Close [{ key_colour } ]\\ [Esc][/]" , id = "close" )
85
96
@@ -147,5 +158,23 @@ async def action_copy(self) -> None:
147
158
"""Copy PEP text to the clipboard."""
148
159
await self .query_one (TextArea ).run_action ("copy" )
149
160
161
+ @on (Button .Pressed , "#save" )
162
+ @work
163
+ async def action_save (self ) -> None :
164
+ """Save the source of the PEP to a file."""
165
+ if target := await self .app .push_screen_wait (FileSave ()):
166
+ if target .exists () and not await self .app .push_screen_wait (
167
+ Confirm (
168
+ "Overwrite?" , f"{ target } \n \n Are you sure you want to overwrite?"
169
+ )
170
+ ):
171
+ return
172
+ try :
173
+ target .write_text (self .query_one (TextArea ).text , encoding = "utf-8" )
174
+ except IOError as error :
175
+ self .notify (str (error ), title = "Save Failed" , severity = "error" )
176
+ return
177
+ self .notify (str (target ), title = "Saved" )
178
+
150
179
151
180
### pep_viewer.py ends here
0 commit comments