mirror of
https://github.com/casdoor/casdoor.git
synced 2025-07-04 05:10:19 +08:00
feat(web): add lint (#875)
* feat: add lint * feat: fix lint error * chore: add ignore file * chore: close indent
This commit is contained in:
@ -3,43 +3,43 @@ import {Col, Row} from "antd";
|
||||
import * as Setting from "../Setting";
|
||||
|
||||
class SamlWidget extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.state = {
|
||||
classes: props,
|
||||
addressOptions: [],
|
||||
affiliationOptions: [],
|
||||
};
|
||||
}
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.state = {
|
||||
classes: props,
|
||||
addressOptions: [],
|
||||
affiliationOptions: [],
|
||||
};
|
||||
}
|
||||
|
||||
renderIdp(user, application, providerItem) {
|
||||
const provider = providerItem.provider;
|
||||
const name = user.name;
|
||||
renderIdp(user, application, providerItem) {
|
||||
const provider = providerItem.provider;
|
||||
const name = user.name;
|
||||
|
||||
return (
|
||||
<Row key={provider.name} style={{marginTop: '20px'}}>
|
||||
<Col style={{marginTop: '5px'}} span={this.props.labelSpan}>
|
||||
{
|
||||
Setting.getProviderLogo(provider)
|
||||
}
|
||||
<span style={{marginLeft: '5px'}}>
|
||||
{
|
||||
`${provider.type}:`
|
||||
}
|
||||
</span>
|
||||
</Col>
|
||||
<Col span={24 - this.props.labelSpan} style={{marginTop: '5px'}}>
|
||||
<span style={{
|
||||
width: this.props.labelSpan === 3 ? '300px' : '130px',
|
||||
display: (Setting.isMobile()) ? 'inline' : "inline-block"}}>{name}</span>
|
||||
</Col>
|
||||
</Row>
|
||||
)
|
||||
}
|
||||
return (
|
||||
<Row key={provider.name} style={{marginTop: "20px"}}>
|
||||
<Col style={{marginTop: "5px"}} span={this.props.labelSpan}>
|
||||
{
|
||||
Setting.getProviderLogo(provider)
|
||||
}
|
||||
<span style={{marginLeft: "5px"}}>
|
||||
{
|
||||
`${provider.type}:`
|
||||
}
|
||||
</span>
|
||||
</Col>
|
||||
<Col span={24 - this.props.labelSpan} style={{marginTop: "5px"}}>
|
||||
<span style={{
|
||||
width: this.props.labelSpan === 3 ? "300px" : "130px",
|
||||
display: (Setting.isMobile()) ? "inline" : "inline-block"}}>{name}</span>
|
||||
</Col>
|
||||
</Row>
|
||||
);
|
||||
}
|
||||
|
||||
render() {
|
||||
return this.renderIdp(this.props.user, this.props.application, this.props.providerItem)
|
||||
}
|
||||
render() {
|
||||
return this.renderIdp(this.props.user, this.props.application, this.props.providerItem);
|
||||
}
|
||||
}
|
||||
|
||||
export default SamlWidget;
|
||||
export default SamlWidget;
|
||||
|
Reference in New Issue
Block a user