generated from android/android-dev-challenge-compose
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathWeatherConstants.kt
527 lines (476 loc) · 15.4 KB
/
WeatherConstants.kt
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
/*
* Copyright 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.cuteweather.data
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.offset
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.geometry.Offset
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import com.github.cuteweather.data.WeatherAnimatableIcon.CloudyAnimatableIcon
import com.github.cuteweather.data.WeatherAnimatableIcon.HeavyRainAnimatableIcon
import com.github.cuteweather.data.WeatherAnimatableIcon.MostlyClearAnimatableIcon
import com.github.cuteweather.data.WeatherAnimatableIcon.RainAnimatableIcon
import com.github.cuteweather.data.WeatherAnimatableIcon.SnowAnimatableIcon
import com.github.cuteweather.data.WeatherAnimatableIcon.SunnyAnimatableIcon
import com.github.cuteweather.data.WeatherAnimatableIcon.ThunderStormAnimatableIcon
import com.github.cuteweather.data.WeatherBackground.ClearBg
import com.github.cuteweather.data.WeatherBackground.CloudyBg
import com.github.cuteweather.data.WeatherBackground.RainBg
import com.github.cuteweather.data.WeatherBackground.ShowersBg
import com.github.cuteweather.data.WeatherBackground.SnowBg
import com.github.cuteweather.data.WeatherBackground.StormBg
import com.github.cuteweather.data.WeatherBackground.SunnyBg
import com.github.cuteweather.data.WeatherComposedInfo.CloudyComposed
import com.github.cuteweather.data.WeatherComposedInfo.CloudyRainComposed
import com.github.cuteweather.data.WeatherComposedInfo.HeavyRainComposed
import com.github.cuteweather.data.WeatherComposedInfo.MostlyClearComposed
import com.github.cuteweather.data.WeatherComposedInfo.SnowyComposed
import com.github.cuteweather.data.WeatherComposedInfo.SunnyComposed
import com.github.cuteweather.data.WeatherComposedInfo.ThunderStormComposed
import com.github.cuteweather.data.WeatherIcon.CloudyIcon
import com.github.cuteweather.data.WeatherIcon.HeavyRainIcon
import com.github.cuteweather.data.WeatherIcon.MostlyClearIcon
import com.github.cuteweather.data.WeatherIcon.RainIcon
import com.github.cuteweather.data.WeatherIcon.SnowyIcon
import com.github.cuteweather.data.WeatherIcon.SunnyIcon
import com.github.cuteweather.data.WeatherIcon.ThunderStormIcon
import com.github.cuteweather.ui.ComposeInfo
import com.github.cuteweather.ui.ComposedIcon
import com.github.cuteweather.ui.IconInfo
import com.github.cuteweather.ui.theme.teal500
import com.github.cuteweather.ui.theme.teal700
import com.github.cuteweather.ui.theme.teal900
import com.github.cuteweather.ui.theme.yellow200
import com.github.cuteweather.ui.theme.yellow500
import com.github.cuteweather.ui.weathericon.AnimatableCloud
import com.github.cuteweather.ui.weathericon.AnimatableRains
import com.github.cuteweather.ui.weathericon.AnimatableSnow
import com.github.cuteweather.ui.weathericon.AnimatableSun
import com.github.cuteweather.ui.weathericon.AnimatableThunder
import com.github.cuteweather.ui.weathericon.Cloud
import com.github.cuteweather.ui.weathericon.Rains
import com.github.cuteweather.ui.weathericon.Snow
import com.github.cuteweather.ui.weathericon.Sun
import com.github.cuteweather.ui.weathericon.Thunder
enum class Weather(
val text: String = "",
val composedIcon: ComposeInfo,
val icon: @Composable () -> Unit,
val animatableIcon: @Composable () -> Unit,
val background: BgColors
) {
Sunny(
"Sunny",
SunnyComposed, SunnyIcon, SunnyAnimatableIcon, SunnyBg
),
MostlyClear(
"Clear with periodic clouds",
MostlyClearComposed, MostlyClearIcon, MostlyClearAnimatableIcon, ClearBg
),
Cloudy(
"Cloudy",
CloudyComposed, CloudyIcon, CloudyAnimatableIcon, CloudyBg
),
CloudyRain(
"Cloudy with periodic showers",
CloudyRainComposed, RainIcon, RainAnimatableIcon, ShowersBg
),
HeavyRain(
"Heavy rain",
HeavyRainComposed, HeavyRainIcon, HeavyRainAnimatableIcon, RainBg
),
Snowy(
"Snowy",
SnowyComposed, SnowyIcon, SnowAnimatableIcon, SnowBg
),
Storm(
"Thundery storm",
ThunderStormComposed, ThunderStormIcon, ThunderStormAnimatableIcon, StormBg
)
}
/**
* background color for each type of weather
*/
typealias BgColors = Triple<Color, Color, Color>
object WeatherBackground {
val ShowersBg = BgColors(
teal700,
Color.LightGray,
teal900
)
val RainBg = BgColors(
Color.LightGray,
Color.Gray,
Color.White
)
val CloudyBg = BgColors(
teal700,
teal500,
Color.White
)
val SunnyBg = BgColors(
yellow200,
teal500,
yellow500
)
val ClearBg = BgColors(
teal500,
teal900,
teal500
)
val SnowBg = BgColors(
Color.LightGray,
Color.White,
teal700
)
val StormBg = BgColors(
Color.Black,
Color.White,
Color.DarkGray
)
}
/**
* used in central area
*/
object WeatherComposedInfo {
val IconSize = 200.dp // ComposedIcon size
val SunnyComposed = ComposeInfo(
sun = IconInfo(1f),
cloud = IconInfo(0.8f, Offset(-0.1f, 0.1f), 0f),
lightCloud = IconInfo(0.5f, Offset(-0.15f, 0.35f), 0f),
rains = IconInfo(0.4f, Offset(0.225f, 0.3f), 0f),
lightRain = IconInfo(0.4f, Offset(0.225f, 0.3f), 0f),
snow = IconInfo(0.5f, Offset(0.1f, 0.3f), alpha = 0f),
thunder = IconInfo(0.45f, Offset(0.29f, 0.6f), alpha = 0f)
)
val MostlyClearComposed = ComposeInfo(
sun = IconInfo(0.85f, Offset(0.1f, 0f)),
cloud = IconInfo(0.5f, Offset(-0.1f, 0.1f), 0f),
lightCloud = IconInfo(0.4f, Offset(0.175f, 0.375f), 1f),
rains = IconInfo(0.4f, Offset(0.225f, 0.3f), 0f),
lightRain = IconInfo(0.4f, Offset(0.225f, 0.3f), 0f),
snow = IconInfo(0.5f, Offset(0.1f, 0.3f), alpha = 0f),
thunder = IconInfo(0.45f, Offset(0.29f, 0.6f), alpha = 0f)
)
val CloudyComposed = ComposeInfo(
sun = IconInfo(0.1f, Offset(0.75f, 0.2f), alpha = 0f),
cloud = IconInfo(0.8f, Offset(0.1f, 0.1f)),
lightCloud = IconInfo(0.5f, Offset(0.05f, 0.125f)),
rains = IconInfo(0.4f, Offset(0.225f, 0.3f), alpha = 0f),
lightRain = IconInfo(0.4f, Offset(0.225f, 0.3f), alpha = 0f),
snow = IconInfo(0.5f, Offset(0.1f, 0.3f), alpha = 0f),
thunder = IconInfo(0.45f, Offset(0.29f, 0.6f), alpha = 0f)
)
val CloudyRainComposed = ComposeInfo(
sun = IconInfo(0.6f, Offset(0.4f, 0f)),
cloud = IconInfo(0.8f, Offset(0.1f, 0.1f)),
lightCloud = IconInfo(0.5f, Offset(-0.15f, 0.125f), 0f),
rains = IconInfo(0.4f, Offset(0.225f, 0.3f), 0f),
lightRain = IconInfo(0.4f, Offset(0.225f, 0.3f), 1f),
snow = IconInfo(0.5f, Offset(0.1f, 0.3f), alpha = 0f),
thunder = IconInfo(0.45f, Offset(0.29f, 0.6f), alpha = 0f)
)
val HeavyRainComposed = ComposeInfo(
sun = IconInfo(0.1f, Offset(0.75f, 0.2f), alpha = 0f),
cloud = IconInfo(0.8f, Offset(0.1f, 0.1f)),
lightCloud = IconInfo(0.5f, Offset(0.05f, 0.125f)),
rains = IconInfo(0.4f, Offset(0.225f, 0.3f), alpha = 1f),
lightRain = IconInfo(0.4f, Offset(0.225f, 0.3f), 0f),
snow = IconInfo(0.5f, Offset(0.1f, 0.3f), alpha = 0f),
thunder = IconInfo(0.45f, Offset(0.29f, 0.6f), alpha = 0f)
)
val SnowyComposed = ComposeInfo(
sun = IconInfo(0.1f, Offset(0.75f, 0.2f), alpha = 0f),
cloud = IconInfo(0.8f, Offset(0.1f, 0.1f)),
lightCloud = IconInfo(0.5f, Offset(-0.15f, 0.35f), 0f),
rains = IconInfo(0.4f, Offset(0.225f, 0.3f), alpha = 0f),
lightRain = IconInfo(0.4f, Offset(0.225f, 0.3f), 0f),
snow = IconInfo(0.5f, Offset(0.1f, 0.3f), alpha = 1f),
thunder = IconInfo(0.45f, Offset(0.29f, 0.6f), alpha = 0f)
)
val ThunderStormComposed = ComposeInfo(
sun = IconInfo(0.1f, Offset(0.75f, 0.2f), alpha = 0f),
cloud = IconInfo(0.9f, Offset(0.06f, 0.05f)),
lightCloud = IconInfo(0.5f, Offset(-0.05f, 0.125f), 0f),
rains = IconInfo(0.45f, Offset(0.2f, 0.3f), alpha = 0f),
lightRain = IconInfo(0.4f, Offset(0.225f, 0.3f), 0f),
snow = IconInfo(0.5f, Offset(0.1f, 0.3f), alpha = 0f),
thunder = IconInfo(0.5f, Offset(0.27f, 0.6f), alpha = 1f)
)
}
/**
* used in chart or navigation bar
*/
object WeatherIcon {
val SunnyIcon = @Composable {
Sun(Modifier.size(40.dp))
}
val MostlyClearIcon = @Composable {
Box(Modifier.size(40.dp)) {
Sun(
Modifier
.size(40.dp)
.offset(3.dp)
)
Cloud(
Modifier
.size(16.dp)
.offset(8.dp, 18.dp)
)
}
}
val CloudyIcon = @Composable {
Cloud(
Modifier
.size(40.dp)
.padding(3.dp)
)
}
val RainIcon = @Composable {
Box(Modifier.size(40.dp)) {
Rains(
Modifier
.size(25.dp)
.offset(5.dp, 8.dp),
lightRain = true
)
Cloud(
Modifier
.size(30.dp)
.align(Alignment.TopCenter)
)
}
}
val HeavyRainIcon = @Composable {
Box(Modifier.size(40.dp)) {
Rains(
Modifier
.size(25.dp)
.offset(5.dp, 8.dp),
)
Cloud(
Modifier
.size(30.dp)
.align(Alignment.TopCenter)
)
}
}
val SnowyIcon = @Composable {
Box(Modifier.size(40.dp)) {
Snow(
Modifier
.size(20.dp)
.offset(3.dp, 8.dp),
)
Cloud(
Modifier
.size(30.dp)
.align(Alignment.TopCenter)
)
}
}
val ThunderStormIcon = @Composable {
Box(Modifier.size(40.dp)) {
Cloud(
Modifier
.size(30.dp)
.align(Alignment.TopCenter)
)
Thunder(
Modifier
.size(20.dp)
.offset(10.dp, 18.dp),
)
}
}
}
/**
* used in navigation bar for selected item
*/
object WeatherAnimatableIcon {
val SunnyAnimatableIcon = @Composable {
AnimatableSun(
Modifier
.size(40.dp)
.padding(2.dp)
)
}
val MostlyClearAnimatableIcon = @Composable {
Box(
Modifier
.size(40.dp)
) {
AnimatableSun(
Modifier
.size(40.dp)
.offset(3.dp)
)
Cloud(
Modifier
.size(16.dp)
.offset(8.dp, 18.dp)
)
}
}
val CloudyAnimatableIcon = @Composable {
AnimatableCloud(
Modifier
.size(40.dp)
.padding(3.dp),
800
)
}
val RainAnimatableIcon = @Composable {
Box(Modifier.size(40.dp)) {
AnimatableRains(
Modifier
.size(25.dp)
.offset(5.dp, 8.dp),
true
)
Cloud(
Modifier
.size(30.dp)
.align(Alignment.TopCenter)
)
}
}
val HeavyRainAnimatableIcon = @Composable {
Box(Modifier.size(40.dp)) {
AnimatableRains(
Modifier
.size(25.dp)
.offset(5.dp, 8.dp)
)
Cloud(
Modifier
.size(30.dp)
.align(Alignment.TopCenter)
)
}
}
val SnowAnimatableIcon = @Composable {
Box(Modifier.size(40.dp)) {
AnimatableSnow(
Modifier
.size(20.dp)
.offset(3.dp, 8.dp),
)
Cloud(
Modifier
.size(30.dp)
.align(Alignment.TopCenter)
)
}
}
val ThunderStormAnimatableIcon = @Composable {
Box(Modifier.size(40.dp)) {
Cloud(
Modifier
.size(30.dp)
.align(Alignment.TopCenter)
)
AnimatableThunder(
Modifier
.size(20.dp)
.offset(10.dp, 18.dp),
300
)
}
}
}
@Preview(heightDp = 300)
@Composable
fun PreviewIcon() {
Column {
Row(Modifier.weight(1f)) {
SunnyIcon()
SunnyAnimatableIcon()
}
Row(Modifier.weight(1f)) {
MostlyClearIcon()
MostlyClearAnimatableIcon()
}
Row(Modifier.weight(1f)) {
CloudyIcon()
CloudyAnimatableIcon()
}
Row(Modifier.weight(1f)) {
RainIcon()
RainAnimatableIcon()
}
Row(Modifier.weight(1f)) {
HeavyRainIcon()
HeavyRainAnimatableIcon()
}
Row(Modifier.weight(1f)) {
SnowyIcon()
SnowAnimatableIcon()
}
Row(Modifier.weight(1f)) {
ThunderStormIcon()
ThunderStormAnimatableIcon()
}
}
}
@Preview(widthDp = 960, heightDp = 640)
@Composable
fun PreviewComposedIcon() {
Column(
Modifier
.background(Color.White)
.padding(40.dp)
) {
val modifier = Modifier
.padding(2.5.dp)
.background(teal700)
.padding(5.dp)
Row(Modifier.align(Alignment.CenterHorizontally)) {
ComposedIcon(
modifier, SunnyComposed
)
ComposedIcon(
modifier, CloudyComposed
)
ComposedIcon(
modifier, CloudyRainComposed
)
ComposedIcon(
modifier, ThunderStormComposed
)
}
Row(Modifier.align(Alignment.CenterHorizontally)) {
ComposedIcon(
modifier, HeavyRainComposed
)
ComposedIcon(
modifier, MostlyClearComposed
)
ComposedIcon(
modifier, SnowyComposed
)
}
}
}