Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

App bar requirements #771

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ import com.microsoft.fluentui.theme.token.controlTokens.AppBarTokens
* @param centerAlignAppBar boolean indicating if the app bar should be center aligned. Default: [false]
* @param navigationIcon Navigate Back Icon to be placed at extreme left. Default: [null]
* @param appBarTokens Optional Tokens for App Bar to customize it. Default: [null]
* @param postTitleIcon2 Icon to be placed after title making the title clickable. Default: Empty [FluentIcon]
*/

// TAGS FOR TESTING
Expand Down Expand Up @@ -94,6 +95,7 @@ fun AppBar(
centerAlignAppBar: Boolean = false,
navigationIcon: FluentIcon? = null,
appBarTokens: AppBarTokens? = null,
postTitleIcon2: FluentIcon = FluentIcon(),
) {
val themeID =
FluentTheme.themeID //Adding This only for recomposition in case of Token Updates. Unused otherwise.
Expand Down Expand Up @@ -168,14 +170,15 @@ fun AppBar(
val titleAlignment: Alignment.Horizontal =
if (centerAlignAppBar) Alignment.CenterHorizontally else Alignment.Start

if (appBarSize != AppBarSize.Large && !subTitle.isNullOrBlank()) {
if (appBarSize != AppBarSize.Large) {
Column(
modifier = Modifier
.weight(1F)
.padding(token.textPadding(appBarInfo))
.testTag(APP_BAR_SUBTITLE),
horizontalAlignment = titleAlignment
) {
// title
Row(
modifier = Modifier
.then(
Expand Down Expand Up @@ -203,51 +206,63 @@ fun AppBar(
.size(token.titleIconSize(appBarInfo)),
tint = token.titleIconColor(appBarInfo),
)
}
Row(
modifier = Modifier
.then(
if (postSubtitleIcon.onClick != null)
Modifier.clickable(onClick = postSubtitleIcon.onClick!!)
else
Modifier
), verticalAlignment = Alignment.CenterVertically
) {
if (preSubtitleIcon.isIconAvailable())

if (postTitleIcon2.isIconAvailable() && appBarSize == AppBarSize.Small)
Icon(
preSubtitleIcon,
postTitleIcon2.value(),
postTitleIcon2.contentDescription,
modifier = Modifier
.size(
token.subtitleIconSize(
appBarInfo
)
),
tint = token.subtitleIconColor(appBarInfo)
.size(token.titleIconSize(appBarInfo)),
tint = token.titleIconColor(appBarInfo),
)
BasicText(
subTitle,
style = subtitleTextStyle.merge(
TextStyle(
color = token.subtitleTextColor(
appBarInfo
)
}
// subtitle
if (!subTitle.isNullOrBlank()) {
Row(
modifier = Modifier
.then(
if (postSubtitleIcon.onClick != null)
Modifier.clickable(onClick = postSubtitleIcon.onClick!!)
else
Modifier
), verticalAlignment = Alignment.CenterVertically
) {
if (preSubtitleIcon.isIconAvailable())
Icon(
preSubtitleIcon,
modifier = Modifier
.size(
token.subtitleIconSize(
appBarInfo
)
),
tint = token.subtitleIconColor(appBarInfo)
)
),
maxLines = 1,
overflow = TextOverflow.Ellipsis
)
if (postSubtitleIcon.isIconAvailable())
Icon(
postSubtitleIcon.value(),
contentDescription = postSubtitleIcon.contentDescription,
modifier = Modifier
.size(
token.subtitleIconSize(
BasicText(
subTitle,
style = subtitleTextStyle.merge(
TextStyle(
color = token.subtitleTextColor(
appBarInfo
)
),
tint = token.subtitleIconColor(appBarInfo)
)
),
maxLines = 1,
overflow = TextOverflow.Ellipsis
)
if (postSubtitleIcon.isIconAvailable())
Icon(
postSubtitleIcon.value(),
contentDescription = postSubtitleIcon.contentDescription,
modifier = Modifier
.size(
token.subtitleIconSize(
appBarInfo
)
),
tint = token.subtitleIconColor(appBarInfo)
)
}
}
}
} else {
Expand Down