-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathside_bar.dart
138 lines (125 loc) · 3.91 KB
/
side_bar.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import 'package:flutter/material.dart';
import 'package:watch_it/watch_it.dart';
import 'package:yaru/yaru.dart';
import '../constants.dart';
import '../extensions/build_context_x.dart';
import '../weather/view/city_search_field.dart';
import '../weather/weather_model.dart';
class SideBar extends StatefulWidget with WatchItStatefulWidgetMixin {
const SideBar({super.key, this.onSelected});
final VoidCallback? onSelected;
@override
State<SideBar> createState() => _SideBarState();
}
class _SideBarState extends State<SideBar> {
@override
Widget build(BuildContext context) {
final theme = context.theme;
final favLocationsLength =
watchPropertyValue((WeatherModel m) => m.favLocations.length);
final favLocations = watchPropertyValue((WeatherModel m) => m.favLocations);
final currentLocation =
watchPropertyValue((WeatherModel m) => m.lastLocation);
final listView = ListView.builder(
itemCount: favLocationsLength,
itemBuilder: (context, index) {
final selected = currentLocation == favLocations.elementAt(index);
return Tile(
selected: selected,
location: favLocations.elementAt(index),
onClear: favLocationsLength > 1
? () => di<WeatherModel>().loadWeather(
cityName: selected
? favLocations.elementAtOrNull(index - 1)
: currentLocation,
)
: null,
onSelected: widget.onSelected,
);
},
);
return Material(
color: theme.colorScheme.surface.withValues(alpha: 0.4),
child: SizedBox(
width: kPaneWidth,
child: Column(
children: [
const YaruDialogTitleBar(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.only(
topLeft: Radius.circular(kYaruContainerRadius),
),
),
backgroundColor: Colors.transparent,
border: BorderSide.none,
style: YaruTitleBarStyle.undecorated,
title: CitySearchField(),
),
Expanded(child: listView),
],
),
),
);
}
}
class Tile extends StatefulWidget {
const Tile({
super.key,
required this.location,
required this.onSelected,
required this.onClear,
required this.selected,
});
final String location;
final VoidCallback? onSelected;
final bool selected;
final Function()? onClear;
@override
State<Tile> createState() => _TileState();
}
class _TileState extends State<Tile> {
bool _hovered = false;
@override
Widget build(BuildContext context) {
return MouseRegion(
onEnter: (_) => setState(() => _hovered = true),
onExit: (_) => setState(() => _hovered = false),
child: Stack(
alignment: Alignment.centerRight,
children: [
Tooltip(
message: widget.location,
child: YaruMasterTile(
onTap: () {
di<WeatherModel>().loadWeather(cityName: widget.location);
widget.onSelected?.call();
},
selected: widget.selected,
title: Text(
widget.location,
),
),
),
if (widget.onClear != null && (_hovered || widget.selected))
Positioned(
right: 20,
child: SizedBox.square(
dimension: 30,
child: IconButton(
padding: EdgeInsets.zero,
onPressed: () {
di<WeatherModel>().removeFavLocation(widget.location).then(
(_) => widget.onClear?.call(),
);
},
icon: const Icon(
YaruIcons.window_close,
),
),
),
),
],
),
);
}
}