|
39 | 39 | @Route(value = "simple-timer/simple-timer", layout = SimpletimerDemoView.class)
|
40 | 40 | public class SimpletimerDemo extends Div {
|
41 | 41 |
|
| 42 | + private final SimpleTimer timer = new SimpleTimer(); |
| 43 | + |
| 44 | + private boolean countUpMode; |
| 45 | + private BigDecimal time = new BigDecimal(60); |
| 46 | + |
42 | 47 | public SimpletimerDemo() {
|
43 | 48 | setSizeFull();
|
44 |
| - final SimpleTimer timer = new SimpleTimer(); |
45 | 49 | timer.setWidth("100px");
|
46 | 50 | timer.setHeight("50px");
|
47 | 51 | timer.getStyle().set("font-size", "40px");
|
| 52 | + timer.setStartTime(60); |
48 | 53 |
|
49 | 54 | Span timerTitle = new Span("Simple Count Up Timer");
|
50 | 55 |
|
51 | 56 | final TextField startTime =
|
52 | 57 | 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(); |
55 | 60 | });
|
56 | 61 | final Checkbox countUp = new Checkbox("Count Up", false);
|
57 | 62 | countUp.addValueChangeListener(
|
58 | 63 | e -> {
|
59 |
| - timer.setCountUp(countUp.getValue()); |
60 |
| - if (e.getValue()) { |
| 64 | + countUpMode = countUp.getValue(); |
| 65 | + if (countUpMode) { |
61 | 66 | startTime.setLabel("End Time");
|
62 | 67 | timerTitle.setText("Simple Count Up Timer");
|
63 | 68 | } else {
|
64 | 69 | startTime.setLabel("Start Time");
|
65 | 70 | timerTitle.setText("Simple Countdown Timer");
|
66 | 71 | }
|
| 72 | + update(); |
67 | 73 | });
|
68 | 74 | final Button start = new Button("Start/Stop", e -> timer.start());
|
69 | 75 | final Button stop = new Button("Stop", e -> timer.pause());
|
@@ -115,4 +121,12 @@ public SimpletimerDemo() {
|
115 | 121 |
|
116 | 122 | add(new VerticalLayout(topLayout, startTime, options, bottomLayout));
|
117 | 123 | }
|
| 124 | + |
| 125 | + private void update() { |
| 126 | + if (countUpMode) { |
| 127 | + timer.setEndTime(time); |
| 128 | + } else { |
| 129 | + timer.setStartTime(time); |
| 130 | + } |
| 131 | + } |
118 | 132 | }
|
0 commit comments