blob: 13d52db889d126cc29fd9c34cd0f567fa94ec32b (
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
|
import { observer } from "mobx-react";
import React = require("react");
import "./KeyphraseQueryView.scss";
// tslint:disable-next-line: class-name
export interface KP_Props {
keyphrases: string;
}
@observer
export class KeyphraseQueryView extends React.Component<KP_Props>{
constructor(props: KP_Props) {
super(props);
}
render() {
const kps = this.props.keyphrases.toString();
const keyterms = this.props.keyphrases.split(',');
return (
<div>
<h5>Select queries to send:</h5>
<form>
{keyterms.map((kp: string) => {
//return (<p>{"-" + kp}</p>);
return (<p><label>
<input name="query" type="radio" />
<span>{kp}</span>
</label></p>);
})}
</form>
</div>
);
}
}
|