import './BlacklistForm.scss'; import AddButton from '../ui/AddButton'; import DeleteButton from '../ui/DeleteButton'; import React from 'react'; import Blacklist, { BlacklistItem } from '../../../shared/settings/Blacklist'; interface Props { value: Blacklist; onChange: (value: Blacklist) => void; onBlur: () => void; } class BlacklistForm extends React.Component { public static defaultProps: Props = { value: new Blacklist([]), onChange: () => {}, onBlur: () => {}, }; render() { return
{ this.props.value.items.map((item, index) => { if (item.partial) { return null; } return
; }) }
; } bindValue(e: any) { const name = e.target.name; const index = e.target.getAttribute('data-index'); const items = this.props.value.items; if (name === 'url') { items[index] = new BlacklistItem(e.target.value, false, []); } else if (name === 'add') { items.push(new BlacklistItem('', false, [])); } else if (name === 'delete') { items.splice(index, 1); } this.props.onChange(new Blacklist(items)); if (name === 'delete') { this.props.onBlur(); } } } export default BlacklistForm;