generated from android/android-dev-challenge-compose
-
Notifications
You must be signed in to change notification settings - Fork 28
/
NewtonsTimerScreen.kt
134 lines (127 loc) · 4.79 KB
/
NewtonsTimerScreen.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
/*
* 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.mobnetic.newtonstimer.timer
import androidx.compose.animation.animateContentSize
import androidx.compose.animation.core.animateFloatAsState
import androidx.compose.animation.core.tween
import androidx.compose.foundation.layout.BoxWithConstraints
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.aspectRatio
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.ui.Modifier
import androidx.compose.ui.unit.dp
import androidx.compose.ui.zIndex
import com.mobnetic.newtonstimer.balls.SHADOW_TOP_OFFSET
import com.mobnetic.newtonstimer.balls.SwingingBallsContainer
import com.mobnetic.newtonstimer.sinDegree
import com.mobnetic.newtonstimer.timer.NewtonsTimerViewModel.Companion.MAX_ANGLE
import com.mobnetic.newtonstimer.ui.isLandscape
import org.jetbrains.compose.ui.tooling.preview.Preview
@Preview(/*widthDp = 400, heightDp = 700*/)
@Composable
fun NewtonsTimerScreen(timerViewModel: NewtonsTimerViewModel) {
BoxWithConstraints {
if (isLandscape) {
NewtonsTimerLandscape(timerViewModel)
} else {
NewtonsTimerPortrait(timerViewModel)
}
}
}
@Composable
private fun NewtonsTimerPortrait(viewModel: NewtonsTimerViewModel) {
Column {
Column(
modifier = Modifier
.animateContentSize(configurationTransitionAnimSpec())
.weight(0.88f)
) {
val ballsOuterRatio by animateFloatAsState(
targetValue = when (viewModel.isConfigured) {
true -> 1.1f * sinDegree(MAX_ANGLE) + BALLS_INNER_ASPECT_RATIO_PORTRAIT
else -> sinDegree(MAX_ANGLE) + (BALLS_INNER_ASPECT_RATIO_PORTRAIT / 2f)
},
animationSpec = configurationTransitionAnimSpec()
)
SwingingBallsContainer(
viewModel = viewModel,
ballsInnerRatio = BALLS_INNER_ASPECT_RATIO_PORTRAIT,
configurationTransitionAnimSpec = configurationTransitionAnimSpec(),
modifier = Modifier.aspectRatio(ballsOuterRatio)
)
Display(
viewModel = viewModel,
modifier = Modifier
.weight(1f)
.fillMaxWidth()
.padding(horizontal = 16.dp, vertical = 16.dp)
)
}
ButtonsBar(
viewModel = viewModel,
modifier = Modifier
.fillMaxWidth()
.padding(horizontal = 16.dp)
)
Spacer(
modifier = Modifier
.padding(bottom = 16.dp)
.weight(0.1f)
)
}
}
@Composable
private fun NewtonsTimerLandscape(viewModel: NewtonsTimerViewModel) {
Row {
Column(
modifier = Modifier
.zIndex(1f)
.animateContentSize(configurationTransitionAnimSpec())
.weight(1.2f)
.padding(16.dp)
) {
Spacer(modifier = Modifier.weight(0.25f))
Display(
viewModel = viewModel,
modifier = Modifier
.weight(1f)
.fillMaxWidth()
)
Spacer(modifier = Modifier.weight(1f))
ButtonsBar(
viewModel = viewModel,
modifier = Modifier.fillMaxWidth()
)
Spacer(modifier = Modifier.weight(0.3f))
}
SwingingBallsContainer(
viewModel = viewModel,
ballsInnerRatio = BALLS_INNER_ASPECT_RATIO_LANDSCAPE,
configurationTransitionAnimSpec = configurationTransitionAnimSpec(),
modifier = Modifier
.weight(1f)
.padding(bottom = SHADOW_TOP_OFFSET + 24.dp)
)
}
}
private fun <T> configurationTransitionAnimSpec() = tween<T>(durationMillis = 400)
private const val BALLS_INNER_ASPECT_RATIO_PORTRAIT = 0.5f
private const val BALLS_INNER_ASPECT_RATIO_LANDSCAPE = 0.55f