summaryrefslogtreecommitdiffstats
path: root/lib/page_hvac.dart
blob: df5027e78c31a625915e38ceda2fdc1990a7a72d (plain)
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
import 'package:flutter/material.dart';
import 'package:numberpicker/numberpicker.dart';

class HVACPage extends StatelessWidget {

  const HVACPage({Key? key}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return Container(
      constraints: BoxConstraints.expand(),
      alignment: Alignment.center,
      child: const MainPage(title: 'AGL - Flutter HVAC'),
    );
  }
}

class _TemperatureSelector extends StatefulWidget {
  @override
  _TemperatureSelectorState createState() => _TemperatureSelectorState();
}

class _TemperatureSelectorState extends State<_TemperatureSelector> {
  int _currentValue = 22; // INIT FROM AGLJS wrapper

  @override
  Widget build(BuildContext context) {
    return Column(
      children: <Widget>[
        NumberPicker(
          value: _currentValue,
          minValue: 18,
          maxValue: 25,
          onChanged: (value) => setState(() => _currentValue = value),
        ),
      ],
    );
  }
}

/// This is the stateful widget that the main application instantiates.
class HVACFanSpeed extends StatefulWidget {
  const HVACFanSpeed({Key? key}) : super(key: key);
  @override
  State<HVACFanSpeed> createState() => _HVACFanSpeedState();
}

/// This is the private State class that goes with MyStatefulWidget.
class _HVACFanSpeedState extends State<HVACFanSpeed> {
  double _currentSliderValue = 20;

  @override
  Widget build(BuildContext context) {
    return Slider(
      value: _currentSliderValue,
      min: 0,
      max: 300,
      label: _currentSliderValue.round().toString(),
      onChanged: (double value) {
        setState(() {
          _currentSliderValue = value;
        });
      },
    );
  }
}

class MainPage extends StatefulWidget {
  const MainPage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  State<MainPage> createState() => _MyHomePageState();
}

String chairOn = 'images/HMI_HVAC_Left_Chair_ON.png';
String chairOff = 'images/HMI_HVAC_Right_Chair_ON.png';
bool selected = true; // Get from API

class _MyHomePageState extends State<MainPage> {
  final double fanSpeed = 20;

  Widget titleSection = Container(
    padding: const EdgeInsets.all(32),
    child: Row(
      children: [
        Expanded(flex: 2, child: const HVACFanSpeed()),
        Image.asset('images/HMI_HVAC_Fan_Icon.png',
            width: 100, height: 100, fit: BoxFit.cover),
      ],
    ),
  );

  Widget rightSeat = Container(
    padding: const EdgeInsets.all(32),
    child: Column(
      children: [
        IconButton(
          iconSize: 100.0,
          icon: Image.asset(selected ? chairOn : chairOff,
              width: 100, height: 100, fit: BoxFit.cover),
          onPressed: () {
            selected = !selected;
          },
        ),
        _TemperatureSelector(),
      ],
    ),
  );

  Widget leftSeat = Container(
    padding: const EdgeInsets.all(32),
    child: Column(
      children: [
        Image.asset('images/HMI_HVAC_Right_Chair_ON.png',
            width: 100, height: 100, fit: BoxFit.cover),
        _TemperatureSelector()
      ],
    ),
  );

  Widget centerView = Container(
    padding: const EdgeInsets.all(32),
    child: Column(
      children: [
        Container(
          width: 140,
          height: 100,
          margin: const EdgeInsets.all(15.0),
          decoration: BoxDecoration(
              border: Border.all(color: Colors.green),
              borderRadius: BorderRadius.circular(20)),
          child: OutlinedButton(
            onPressed: () {
              // Respond to button press
            },
            child: Text("A / C"),
          ),
        ),
        Container(
          width: 140,
          height: 100,
          margin: const EdgeInsets.all(15.0),
          decoration: BoxDecoration(
              border: Border.all(color: Colors.green),
              borderRadius: BorderRadius.circular(20)),
          child: OutlinedButton(
            onPressed: () {
              // Respond to button press
            },
            child: Text("Auto"),
          ),
        ),
        Container(
          width: 140,
          height: 100,
          margin: const EdgeInsets.all(15.0),
          decoration: BoxDecoration(
              border: Border.all(color: Colors.green),
              borderRadius: BorderRadius.circular(20)),
          child: OutlinedButton(
              onPressed: () {
                // Respond to button press
              },
              child: Image.asset('images/HMI_HVAC_Circulation_Inactive.png',
                  width: 100, height: 100, fit: BoxFit.cover)),
        ),
      ],
    ),
  );
  Widget actions = Container(
    padding: const EdgeInsets.all(32),
    child: Column(
      children: [
        Image.asset('images/HMI_HVAC_AirDown_Inactive.png',
            width: 100, height: 100, fit: BoxFit.cover),
        Image.asset('images/HMI_HVAC_AirUp_Inactive.png',
            width: 100, height: 100, fit: BoxFit.cover),
        Image.asset('images/HMI_HVAC_Front_Inactive.png',
            width: 100, height: 100, fit: BoxFit.cover),
        Image.asset('images/HMI_HVAC_Rear_Active.png',
            width: 100, height: 100, fit: BoxFit.cover),
      ],
    ),
  );

  @override
  Widget build(BuildContext context) {
    return Container(
        decoration: BoxDecoration(
            gradient: LinearGradient(
                begin: Alignment.topLeft,
                end: Alignment.bottomRight,
                colors: [Colors.black, Colors.teal.shade900])),
        child: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: <Widget>[
              titleSection,
              Row(children: [
                Expanded(flex: 2, child: rightSeat),
                Expanded(flex: 2, child: centerView),
                Expanded(flex: 2, child: leftSeat),
                Expanded(flex: 2, child: actions)
              ])
            ],
          ),
        ));
  }
}