From 6a9ce098d6fddb245fa0720f828cb0f98900857d Mon Sep 17 00:00:00 2001 From: simeng-li Date: Thu, 25 Jan 2024 11:09:54 +0800 Subject: [PATCH] feat(experience): auto expand the scopes list (#5291) feat(experience): auto expend the scopes list auto expend the scopes list if there is only user scopes or only one resource scopes are being requested --- .../src/pages/Consent/ScopesListCard/index.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/packages/experience/src/pages/Consent/ScopesListCard/index.tsx b/packages/experience/src/pages/Consent/ScopesListCard/index.tsx index e9cffae64..c434b62f9 100644 --- a/packages/experience/src/pages/Consent/ScopesListCard/index.tsx +++ b/packages/experience/src/pages/Consent/ScopesListCard/index.tsx @@ -14,6 +14,7 @@ import * as styles from './index.module.scss'; type ScopeGroupProps = { groupName: string; + isAutoExpand?: boolean; scopes: Array<{ id: string; name: string; @@ -21,8 +22,8 @@ type ScopeGroupProps = { }>; }; -const ScopeGroup = ({ groupName, scopes }: ScopeGroupProps) => { - const [expanded, setExpanded] = useState(false); +const ScopeGroup = ({ groupName, scopes, isAutoExpand = false }: ScopeGroupProps) => { + const [expanded, setExpanded] = useState(isAutoExpand); const toggle = useCallback(() => { setExpanded((previous) => !previous); @@ -110,7 +111,12 @@ const ScopesListCard = ({
{t('description.request_permission', { name: appName })}
{userScopesData && userScopesData.length > 0 && ( - + )} {resourceScopes?.map(({ resource, scopes }) => ( ))} {showTerms && (