File size: 1,227 Bytes
b694417
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
interface TextInputProps {
  value: string;
  disabled: boolean;
  onChange: (value: string) => void;
  onSubmit: () => void;
}

export function TextInput({
  value,
  disabled,
  onChange,
  onSubmit,
}: TextInputProps) {
  return (
    <section className="input-panel" aria-labelledby="input-heading">
      <div className="section-heading">
        <div>
          <p className="eyebrow">Source text</p>
          <h2 id="input-heading">Compose a graph from real text</h2>
        </div>
        <span className="character-count">{value.length} / 2,000</span>
      </div>
      <textarea
        aria-label="Text to extract"
        value={value}
        maxLength={2_000}
        onChange={(event) => onChange(event.target.value)}
        placeholder="Paste a short news sentence, biography, or company update…"
      />
      <div className="input-footer">
        <p>
          The graph appears only after the self-trained model processes your
          text.
        </p>
        <button
          type="button"
          disabled={disabled || !value.trim()}
          onClick={onSubmit}
        >
          {disabled ? "Extracting…" : "Build knowledge graph"}
        </button>
      </div>
    </section>
  );
}