import * as React from "react"
import { Label, DefaultButton, TextField, Stack, PrimaryButton, DetailsList, Spinner, IColumn, SelectionMode, IRefObject, ITextField } from "@fluentui/react"
import { SourcesTabReduxProps } from "../../containers/settings/sources-container"
import { SourceState, RSSSource } from "../../scripts/models/source"
import { urlTest } from "../../scripts/utils"
type SourcesTabProps = SourcesTabReduxProps & {
sources: SourceState
}
type SourcesTabState = {
[formName: string]: string
}
const columns: IColumn[] = [
{
key: "favicon",
name: "图标",
fieldName: "name",
isIconOnly: true,
iconName: "ImagePixel",
minWidth: 16,
maxWidth: 16,
onRender: (s: RSSSource) => s.iconurl && (
)
},
{
key: "name",
name: "名称",
fieldName: "name",
minWidth: 200,
data: 'string',
isRowHeader: true
},
{
key: "url",
name: "URL",
fieldName: "url",
minWidth: 280,
data: 'string'
}
]
class SourcesTab extends React.Component {
constructor(props) {
super(props)
this.state = {
newUrl: ""
}
}
handleInputChange = (event) => {
const name: string = event.target.name
this.setState({[name]: event.target.value})
}
render = () => (
urlTest(v) ? "" : "请正确输入URL"}
validateOnLoad={false}
placeholder="输入URL"
value={this.state.newUrl}
name="newUrl"
onChange={this.handleInputChange} />
)
}
export default SourcesTab