-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
56 lines (47 loc) · 1.14 KB
/
main.go
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
// Copyright 2023 phelmkamp. All rights reserved.
// Use of this source code is governed by a MIT
// license that can be found in the LICENSE file.
package main
import (
"bufio"
"context"
"fmt"
"os"
"strings"
"github.com/phelmkamp/gocomps/component"
)
func read(ctx context.Context, done chan struct{}) component.Component {
type state struct {
email string
valid bool
}
emailState, setEmailState := component.UseState(ctx, state{})
if !emailState.valid {
if len(emailState.email) > 0 {
fmt.Println("invalid input:", emailState.email)
}
onChangeEmail := func(s string) {
setEmailState(state{email: s, valid: strings.Contains(s, "@")})
}
return component.New(input, onChangeEmail)
}
done <- struct{}{}
return component.Component{}
}
func input(ctx context.Context, onChange func(string)) component.Component {
go func() {
sc := bufio.NewScanner(os.Stdin)
sc.Split(bufio.ScanLines)
for sc.Scan() {
onChange(sc.Text())
return
}
}()
return component.Component{}
}
func main() {
fmt.Println("Enter email:")
done := make(chan struct{})
component.Run(context.Background(), component.New(read, done))
<-done
}