summaryrefslogtreecommitdiffstats
path: root/ui/src/components/create-community.tsx
blob: dbacd18df367ed81cbdc6eb3c09e7c181d4c6a32 (plain)
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
import { Component, linkEvent } from 'inferno';
import { Subscription } from "rxjs";
import { retryWhen, delay, take } from 'rxjs/operators';
import { CommunityForm, UserOperation } from '../interfaces';
import { WebSocketService, UserService } from '../services';
import { msgOp } from '../utils';

interface State {
  communityForm: CommunityForm;
}

let emptyState: State = {
  communityForm: {
    name: null,
  }
}

export class CreateCommunity extends Component<any, State> {
  private subscription: Subscription;

  constructor(props, context) {
    super(props, context);

    this.state = emptyState;

    this.subscription = WebSocketService.Instance.subject
      .pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
      .subscribe(
        (msg) => this.parseMessage(msg),
        (err) => console.error(err),
      );
  }

  componentWillUnmount() {
    this.subscription.unsubscribe();
  }

  render() {
    return (
      <div class="container">
        <div class="row">
          <div class="col-12 col-lg-6 mb-4">
            {this.communityForm()}
          </div>
        </div>
      </div>
    )
  }

  communityForm() {
    return (
      <div>
        <form onSubmit={linkEvent(this, this.handleCreateCommunitySubmit)}>
          <h3>Create Forum</h3>
          <div class="form-group row">
            <label class="col-sm-2 col-form-label">Name</label>
            <div class="col-sm-10">
              <input type="text" class="form-control" value={this.state.communityForm.name} onInput={linkEvent(this, this.handleCommunityNameChange)} required minLength={3} />
            </div>
          </div>
          <div class="form-group row">
            <div class="col-sm-10">
              <button type="submit" class="btn btn-secondary">Create</button>
            </div>
          </div>
        </form>
      </div>
    );
  }
  
  handleCreateCommunitySubmit(i: CreateCommunity, event) {
    event.preventDefault();
    WebSocketService.Instance.createCommunity(i.state.communityForm);
  }

  handleCommunityNameChange(i: CreateCommunity, event) {
    i.state.communityForm.name = event.target.value;
    i.setState(i.state);
  }

  parseMessage(msg: any) {
    let op: UserOperation = msgOp(msg);
    if (msg.error) {
      alert(msg.error);
      return;
    } else {
    }
  }

}