Skip to content

Commit 6e52645

Browse files
javier-godoypaodb
authored andcommitted
refactor!: configure count mode when startTime or endTime are called
1 parent fd489d0 commit 6e52645

File tree

2 files changed

+21
-15
lines changed

2 files changed

+21
-15
lines changed

src/main/java/com/flowingcode/vaadin/addons/simpletimer/SimpleTimer.java

+2-10
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ public SimpleTimer() {
5656
* @param startTime value in seconds for the start time
5757
*/
5858
public void setStartTime(final Number startTime) {
59+
getElement().setProperty("countUp", false);
5960
getElement().setProperty("startTime", startTime.doubleValue());
6061
getElement().setProperty(CURRENT_TIME, startTime.doubleValue());
6162
reset();
@@ -67,20 +68,11 @@ public void setStartTime(final Number startTime) {
6768
* @param endTime value in seconds for the end time
6869
*/
6970
public void setEndTime(final Number endTime) {
71+
getElement().setProperty("countUp", true);
7072
getElement().setProperty("endTime", endTime.doubleValue());
7173
reset();
7274
}
7375

74-
/**
75-
* Changes the behavior to count up or down Default is false for count down
76-
*
77-
* @param countUp
78-
*/
79-
public void setCountUp(final boolean countUp) {
80-
getElement().setProperty("countUp", countUp);
81-
reset();
82-
}
83-
8476
/**
8577
* Enables showing fractions of a second
8678
*

src/test/java/com/flowingcode/vaadin/addons/simpletimer/SimpletimerDemo.java

+19-5
Original file line numberDiff line numberDiff line change
@@ -39,31 +39,37 @@
3939
@Route(value = "simple-timer/simple-timer", layout = SimpletimerDemoView.class)
4040
public class SimpletimerDemo extends Div {
4141

42+
private final SimpleTimer timer = new SimpleTimer();
43+
44+
private boolean countUpMode;
45+
private BigDecimal time = new BigDecimal(60);
46+
4247
public SimpletimerDemo() {
4348
setSizeFull();
44-
final SimpleTimer timer = new SimpleTimer();
4549
timer.setWidth("100px");
4650
timer.setHeight("50px");
4751
timer.getStyle().set("font-size", "40px");
52+
timer.setStartTime(60);
4853

4954
Span timerTitle = new Span("Simple Count Up Timer");
5055

5156
final TextField startTime =
5257
new TextField("Start Time", e -> {
53-
timer.setStartTime(new BigDecimal(e.getValue()));
54-
timer.setEndTime(new BigDecimal(e.getValue()));
58+
time = new BigDecimal(e.getValue());
59+
update();
5560
});
5661
final Checkbox countUp = new Checkbox("Count Up", false);
5762
countUp.addValueChangeListener(
5863
e -> {
59-
timer.setCountUp(countUp.getValue());
60-
if (e.getValue()) {
64+
countUpMode = countUp.getValue();
65+
if (countUpMode) {
6166
startTime.setLabel("End Time");
6267
timerTitle.setText("Simple Count Up Timer");
6368
} else {
6469
startTime.setLabel("Start Time");
6570
timerTitle.setText("Simple Countdown Timer");
6671
}
72+
update();
6773
});
6874
final Button start = new Button("Start/Stop", e -> timer.start());
6975
final Button stop = new Button("Stop", e -> timer.pause());
@@ -115,4 +121,12 @@ public SimpletimerDemo() {
115121

116122
add(new VerticalLayout(topLayout, startTime, options, bottomLayout));
117123
}
124+
125+
private void update() {
126+
if (countUpMode) {
127+
timer.setEndTime(time);
128+
} else {
129+
timer.setStartTime(time);
130+
}
131+
}
118132
}

0 commit comments

Comments
 (0)