-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Keycloak idp support (#356)
* feat: add Keycloak idp support Signed-off-by: Yixiang Zhao <seriouszyx@foxmail.com> * fix: fix the profile UI Signed-off-by: Yixiang Zhao <seriouszyx@foxmail.com>
- Loading branch information
1 parent
cf9e628
commit 4ca5f4b
Showing
8 changed files
with
88 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import React from "react"; | ||
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: [], | ||
}; | ||
} | ||
|
||
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> | ||
) | ||
} | ||
|
||
render() { | ||
return this.renderIdp(this.props.user, this.props.application, this.props.providerItem) | ||
} | ||
} | ||
|
||
export default SamlWidget; |