1
1
use ratatui:: crossterm:: event:: KeyEvent ;
2
2
use ratatui:: style:: { Modifier , Style } ;
3
+ use ratatui:: widgets:: Wrap ;
3
4
4
5
use crate :: app:: { App , EditField , Mode , Station } ;
5
6
@@ -41,7 +42,7 @@ impl<'a> UI<'a> {
41
42
}
42
43
43
44
fn show_confirm_delete ( & mut self , app : & App , f : & mut ratatui:: Frame , index : usize ) {
44
- let area = centered_rect ( 60 , 15 , f. area ( ) ) ;
45
+ let area = centered_rect ( 55 , 5 , f. area ( ) ) ;
45
46
let name = app
46
47
. stations
47
48
. get ( index)
@@ -55,10 +56,11 @@ impl<'a> UI<'a> {
55
56
. block ( Block :: bordered ( ) . title ( "Delete?" ) . padding ( Padding :: new (
56
57
0 ,
57
58
0 ,
58
- area . height / 2 - 1 ,
59
+ 0 ,
59
60
0 ,
60
61
) ) )
61
- . centered ( ) ;
62
+ . centered ( )
63
+ . wrap ( Wrap { trim : false } ) ;
62
64
f. render_widget ( Clear , area) ;
63
65
f. render_widget ( block, area) ;
64
66
}
@@ -122,7 +124,7 @@ impl<'a> UI<'a> {
122
124
. title_alignment ( Alignment :: Center )
123
125
. padding ( ratatui:: widgets:: Padding :: horizontal ( 5 ) )
124
126
. style ( Style :: default ( ) . bg ( Color :: DarkGray ) ) ;
125
- let area = centered_rect ( 60 , 18 , f. area ( ) ) ;
127
+ let area = centered_rect ( 60 , 8 , f. area ( ) ) ;
126
128
127
129
let popup_chunks = Layout :: default ( )
128
130
. direction ( Direction :: Vertical )
@@ -193,24 +195,24 @@ impl<'a> UI<'a> {
193
195
}
194
196
}
195
197
196
- pub fn centered_rect ( percent_x : u16 , percent_y : u16 , r : Rect ) -> Rect {
198
+ pub fn centered_rect ( width : u16 , height : u16 , r : Rect ) -> Rect {
197
199
// Cut the given rectangle into three vertical pieces
198
200
let popup_layout = Layout :: default ( )
199
201
. direction ( Direction :: Vertical )
200
202
. constraints ( [
201
- Constraint :: Percentage ( ( 100 - percent_y ) / 2 ) ,
202
- Constraint :: Percentage ( percent_y ) ,
203
- Constraint :: Percentage ( ( 100 - percent_y ) / 2 ) ,
203
+ Constraint :: Min ( 0 ) ,
204
+ Constraint :: Length ( height ) ,
205
+ Constraint :: Min ( 0 ) ,
204
206
] )
205
207
. split ( r) ;
206
208
207
209
// Then cut the middle vertical piece into three width-wise pieces
208
210
Layout :: default ( )
209
211
. direction ( Direction :: Horizontal )
210
212
. constraints ( [
211
- Constraint :: Percentage ( ( 100 - percent_x ) / 2 ) ,
212
- Constraint :: Percentage ( percent_x ) ,
213
- Constraint :: Percentage ( ( 100 - percent_x ) / 2 ) ,
213
+ Constraint :: Min ( 0 ) ,
214
+ Constraint :: Length ( width ) ,
215
+ Constraint :: Min ( 0 ) ,
214
216
] )
215
217
. split ( popup_layout[ 1 ] ) [ 1 ] // Return the middle chunk
216
218
}
0 commit comments