Skip to content

Commit

Permalink
Finish updating global focus styles (primer#2050)
Browse files Browse the repository at this point in the history
* updates focus styles that do not match the Primer CSS implementation

* updates ThemeSwitcher to render ActionMenu instead of DropdownMenu

* explicitly sets outline-offset in global focus styles instead of adding a new style that 'beats' the default 2px

* update snapshots

* fixes cross-browser issues for global focus styles

* fixes unintentional laggy focus style update on SubNav

* updates focus styles for UnderlineNav

* DRY button focus styles

* updates snapshots

* adds changeset

* fixes type error

* revert themePreval snapshot update
  • Loading branch information
mperrotti authored and PrinceSumberia committed Aug 1, 2022
1 parent 68a8630 commit 000fa72
Show file tree
Hide file tree
Showing 29 changed files with 643 additions and 322 deletions.
5 changes: 5 additions & 0 deletions .changeset/silent-falcons-exist.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@primer/react': patch
---

Finishes updating components with the global focus styles defined in Primer CSS ([this PR](https://github.com/primer/css/pull/1744))
4 changes: 2 additions & 2 deletions docs/content/SubNav.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ This ensures that the NavLink gets `activeClassName='selected'`
<SubNav.Link href="#support">Support</SubNav.Link>
</SubNav.Links>

<TextInput type="search" icon={SearchIcon} sx={{width: 320}} />
<TextInput type="search" leadingVisual={SearchIcon} sx={{width: 320}} />
</SubNav>
```

Expand All @@ -64,7 +64,7 @@ This ensures that the NavLink gets `activeClassName='selected'`
</ActionList>
</ActionMenu.Overlay>
</ActionMenu>
<TextInput type="search" icon={SearchIcon} width={320} />
<TextInput type="search" leadingVisual={SearchIcon} width={320} />
</FilteredSearch>
<SubNav.Links>
<SubNav.Link href="#home" selected>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,24 +1,33 @@
import {BaseStyles, Box, ThemeProvider, useTheme} from '@primer/react'
import {DropdownMenu, DropdownButton} from '@primer/react/deprecated'
import React from 'react'
import {ActionMenu, ActionList, BaseStyles, Box, ThemeProvider, useTheme} from '@primer/react'

function ThemeSwitcher() {
const {theme, dayScheme, setDayScheme} = useTheme()
const items = Object.keys(theme.colorSchemes).map(scheme => ({text: scheme.replace(/_/g, ' '), key: scheme}))
const items = Object.keys(theme.colorSchemes).map(scheme => ({name: scheme.replace(/_/g, ' '), key: scheme}))
const selectedItem = React.useMemo(() => items.find(item => item.key === dayScheme), [items, dayScheme])
const itemsKeys = items.map(item => item.key)
const [selectedIndex, setSelectedIndex] = React.useState(itemsKeys.indexOf(dayScheme))

return (
<DropdownMenu
renderAnchor={({children, ...anchorProps}) => (
<DropdownButton {...anchorProps} sx={{variant: 'small'}}>
{children}
</DropdownButton>
)}
items={items}
selectedItem={selectedItem}
onChange={item => {
setDayScheme(item.key)
}}
/>
<ActionMenu>
<ActionMenu.Button aria-label="Select field type">{selectedItem?.name}</ActionMenu.Button>
<ActionMenu.Overlay width="medium">
<ActionList selectionVariant="single">
{items.map((type, index) => (
<ActionList.Item
key={index}
selected={index === selectedIndex}
onSelect={() => {
setSelectedIndex(index)
setDayScheme(items[index].key)
}}
>
{type.name}
</ActionList.Item>
))}
</ActionList>
</ActionMenu.Overlay>
</ActionMenu>
)
}

Expand Down
36 changes: 1 addition & 35 deletions src/Button/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,6 @@ import {VariantType} from './types'
import {Theme} from '../ThemeProvider'

export const TEXT_ROW_HEIGHT = '20px' // custom value off the scale
const focusOutlineStyles = {
outline: '2px solid',
outlineColor: 'accent.fg',
outlineOffset: '-2px'
}
const fallbackFocus = {
...focusOutlineStyles,
':not(:focus-visible)': {
outline: 'solid 1px transparent'
}
}

export const getVariantStyles = (variant: VariantType = 'default', theme?: Theme) => {
const style = {
Expand All @@ -23,11 +12,6 @@ export const getVariantStyles = (variant: VariantType = 'default', theme?: Theme
'&:hover:not([disabled])': {
backgroundColor: 'btn.hoverBg'
},
// focus must come before :active so that the active box shadow overrides
'&:focus:not([disabled])': {
...fallbackFocus
},
'&:focus-visible:not([disabled])': focusOutlineStyles,
'&:active:not([disabled])': {
backgroundColor: 'btn.activeBg',
borderColor: 'btn.activeBorder'
Expand All @@ -52,13 +36,10 @@ export const getVariantStyles = (variant: VariantType = 'default', theme?: Theme
color: 'btn.primary.hoverText',
backgroundColor: 'btn.primary.hoverBg'
},
// focus must come before :active so that the active box shadow overrides
'&:focus:not([disabled])': {
boxShadow: 'inset 0 0 0 3px',
...fallbackFocus
boxShadow: 'inset 0 0 0 3px'
},
'&:focus-visible:not([disabled])': {
...focusOutlineStyles,
boxShadow: 'inset 0 0 0 3px'
},
'&:active:not([disabled])': {
Expand Down Expand Up @@ -95,11 +76,6 @@ export const getVariantStyles = (variant: VariantType = 'default', theme?: Theme
color: 'btn.danger.hoverText'
}
},
// focus must come before :active so that the active box shadow overrides
'&:focus:not([disabled])': {
...fallbackFocus
},
'&:focus-visible:not([disabled])': focusOutlineStyles,
'&:active:not([disabled])': {
color: 'btn.danger.selectedText',
backgroundColor: 'btn.danger.selectedBg',
Expand Down Expand Up @@ -134,11 +110,6 @@ export const getVariantStyles = (variant: VariantType = 'default', theme?: Theme
'&:hover:not([disabled])': {
backgroundColor: 'btn.hoverBg'
},
// focus must come before :active so that the active box shadow overrides
'&:focus:not([disabled])': {
...fallbackFocus
},
'&:focus-visible:not([disabled])': focusOutlineStyles,
'&:active:not([disabled])': {
backgroundColor: 'btn.selectedBg'
},
Expand Down Expand Up @@ -168,11 +139,6 @@ export const getVariantStyles = (variant: VariantType = 'default', theme?: Theme
color: 'inherit'
}
},
// focus must come before :active so that the active box shadow overrides
'&:focus:not([disabled])': {
...fallbackFocus
},
'&:focus-visible:not([disabled])': focusOutlineStyles,
'&:active:not([disabled])': {
color: 'btn.outline.selectedText',
backgroundColor: 'btn.outline.selectedBg',
Expand Down
6 changes: 5 additions & 1 deletion src/Button/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ import React, {HTMLAttributes, ComponentPropsWithRef} from 'react'
import styled from 'styled-components'
import {IconProps} from '@primer/octicons-react'
import sx, {SxProp} from '../sx'
import getGlobalFocusStyles from '../_getGlobalFocusStyles'

export const StyledButton = styled.button<SxProp>(sx)
export const StyledButton = styled.button<SxProp>`
${getGlobalFocusStyles('-2px')};
${sx};
`

export type VariantType = 'default' | 'primary' | 'invisible' | 'danger' | 'outline'

Expand Down
2 changes: 2 additions & 0 deletions src/Checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import React, {ChangeEventHandler, InputHTMLAttributes, ReactElement, useContext
import sx, {SxProp} from './sx'
import {FormValidationStatus} from './utils/types/FormValidationStatus'
import {CheckboxGroupContext} from './CheckboxGroup'
import getGlobalFocusStyles from './_getGlobalFocusStyles'

export type CheckboxProps = {
/**
Expand Down Expand Up @@ -38,6 +39,7 @@ const StyledCheckbox = styled.input`
cursor: pointer;
${props => props.disabled && `cursor: not-allowed;`}
${getGlobalFocusStyles(0)};
${sx}
`
Expand Down
3 changes: 3 additions & 0 deletions src/Pagination/Pagination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import styled from 'styled-components'
import Box from '../Box'
import {get} from '../constants'
import sx, {SxProp} from '../sx'
import getGlobalFocusStyles from '../_getGlobalFocusStyles'
import {buildComponentData, buildPaginationModel} from './model'

const Page = styled.a`
Expand Down Expand Up @@ -37,6 +38,8 @@ const Page = styled.a`
transition-duration: 0.1s;
}
${getGlobalFocusStyles(0)};
&:active {
border-color: ${get('colors.border.muted')};
}
Expand Down
2 changes: 2 additions & 0 deletions src/Radio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import React, {ChangeEventHandler, InputHTMLAttributes, ReactElement, useContext
import sx, {SxProp} from './sx'
import {FormValidationStatus} from './utils/types/FormValidationStatus'
import {RadioGroupContext} from './RadioGroup'
import getGlobalFocusStyles from './_getGlobalFocusStyles'

export type RadioProps = {
/**
Expand Down Expand Up @@ -41,6 +42,7 @@ const StyledRadio = styled.input`
cursor: pointer;
${props => props.disabled && `cursor: not-allowed;`}
${getGlobalFocusStyles(0)};
${sx}
`
Expand Down
2 changes: 1 addition & 1 deletion src/SubNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const SubNavLink = styled.a.attrs<StyledSubNavLinkProps>(props => ({
&:focus {
text-decoration: none;
background-color: ${get('colors.canvas.subtle')};
transition: 0.2s ease;
transition: background-color 0.2s ease;
.SubNav-octicon {
color: ${get('colors.fg.muted')};
Expand Down
3 changes: 3 additions & 0 deletions src/TabNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import styled from 'styled-components'
import {get} from './constants'
import sx, {SxProp} from './sx'
import {ComponentProps} from './utils/types'
import getGlobalFocusStyles from './_getGlobalFocusStyles'

const ITEM_CLASS = 'TabNav-item'
const SELECTED_CLASS = 'selected'
Expand Down Expand Up @@ -49,6 +50,8 @@ const TabNavLink = styled.a.attrs<StyledTabNavLinkProps>(props => ({
border: 1px solid transparent;
border-bottom: 0;
${getGlobalFocusStyles('-6px')};
&:hover,
&:focus {
color: ${get('colors.fg.default')};
Expand Down
5 changes: 4 additions & 1 deletion src/UnderlineNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import styled from 'styled-components'
import {get} from './constants'
import sx, {SxProp} from './sx'
import {ComponentProps} from './utils/types'
import getGlobalFocusStyles from './_getGlobalFocusStyles'

const ITEM_CLASS = 'PRC-UnderlineNav-item'
const SELECTED_CLASS = 'PRC-selected'
Expand Down Expand Up @@ -86,7 +87,7 @@ const UnderlineNavLink = styled.a.attrs<StyledUnderlineNavLinkProps>(props => ({
color: ${get('colors.fg.default')};
text-decoration: none;
border-bottom-color: ${get('colors.neutral.muted')};
transition: 0.2s ease;
transition: border-bottom-color 0.2s ease;
.PRC-UnderlineNav-octicon {
color: ${get('colors.fg.muted')};
Expand All @@ -102,6 +103,8 @@ const UnderlineNavLink = styled.a.attrs<StyledUnderlineNavLinkProps>(props => ({
}
}
${getGlobalFocusStyles('-8px')};
${sx};
`

Expand Down
48 changes: 10 additions & 38 deletions src/_TextInputWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,20 +65,22 @@ export type StyledWrapperProps = {
const textInputBasePadding = '12px'
export const textInputHorizPadding = textInputBasePadding

// TODO: figure out how to type a themed CSS function (e.g.: css`color: blue;`)
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const renderFocusStyles = (hasTrailingAction: boolean, isInputFocused: boolean, focusStyles: any) => {
const renderFocusStyles = (hasTrailingAction: boolean, isInputFocused: boolean) => {
if (hasTrailingAction) {
return (
isInputFocused &&
css`
${focusStyles}
border-color: ${get('colors.accent.fg')};
outline: none;
box-shadow: inset 0 0 0 1px ${get('colors.accent.fg')};
`
)
}
return css`
&:focus-within {
${focusStyles}
border-color: ${get('colors.accent.fg')};
outline: none;
box-shadow: inset 0 0 0 1px ${get('colors.accent.fg')};
}
`
}
Expand Down Expand Up @@ -110,15 +112,7 @@ export const TextInputBaseWrapper = styled.span<StyledBaseWrapperProps>`
color: ${get('colors.fg.subtle')};
}
${props =>
renderFocusStyles(
Boolean(props.hasTrailingAction),
Boolean(props.isInputFocused),
css`
border-color: ${get('colors.accent.emphasis')};
box-shadow: ${get('shadows.primer.shadow.focus')};
`
)}
${props => renderFocusStyles(Boolean(props.hasTrailingAction), Boolean(props.isInputFocused))}
> textarea {
padding: ${textInputBasePadding};
Expand Down Expand Up @@ -154,29 +148,14 @@ export const TextInputBaseWrapper = styled.span<StyledBaseWrapperProps>`
props.validationStatus === 'error' &&
css`
border-color: ${get('colors.danger.emphasis')};
${renderFocusStyles(
Boolean(props.hasTrailingAction),
Boolean(props.isInputFocused),
css`
border-color: ${get('colors.danger.emphasis')};
box-shadow: ${get('shadows.btn.danger.focusShadow')};
`
)}
${renderFocusStyles(Boolean(props.hasTrailingAction), Boolean(props.isInputFocused))}
`}
${props =>
props.validationStatus === 'success' &&
css`
border-color: ${get('colors.success.emphasis')};
${renderFocusStyles(
Boolean(props.hasTrailingAction),
Boolean(props.isInputFocused),
css`
border-color: ${get('colors.success.emphasis')};
box-shadow: 0 0 0 3px ${get('colors.success.muted')};
`
)}
`}
${props =>
Expand Down Expand Up @@ -230,14 +209,7 @@ const TextInputWrapper = styled(TextInputBaseWrapper)<StyledWrapperProps>`
props.validationStatus === 'warning' &&
css`
border-color: ${get('colors.attention.emphasis')};
${renderFocusStyles(
Boolean(props.hasTrailingAction),
Boolean(props.isInputFocused),
css`
border-color: ${get('colors.attention.emphasis')};
box-shadow: 0 0 0 3px ${get('colors.attention.muted')};
`
)}
${renderFocusStyles(Boolean(props.hasTrailingAction), Boolean(props.isInputFocused))}
`}
${sx};
Expand Down
16 changes: 16 additions & 0 deletions src/__tests__/Pagination/__snapshots__/Pagination.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,22 @@ exports[`Pagination renders consistently 1`] = `
transition-duration: 0.1s;
}
.c2:focus:not(:disabled) {
box-shadow: none;
outline: 2px solid #0969da;
outline-offset: 0;
}
.c2:focus:not(:disabled):not(:focus-visible) {
outline: solid 1px transparent;
}
.c2:focus-visible:not(:disabled) {
box-shadow: none;
outline: 2px solid #0969da;
outline-offset: 0;
}
.c2:active {
border-color: hsla(210,18%,87%,1);
}
Expand Down
Loading

0 comments on commit 000fa72

Please sign in to comment.