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

Correctly Aligned Grid Controls #6484

Merged
merged 4 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
26 changes: 21 additions & 5 deletions editor/src/components/canvas/controls/grid-controls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
printGridCSSNumber,
} from '../../../components/inspector/common/css-utils'
import { MetadataUtils } from '../../../core/model/element-metadata-utils'
import { mapDropNulls, stripNulls } from '../../../core/shared/array-utils'
import { mapDropNulls, range, stripNulls } from '../../../core/shared/array-utils'
import { defaultEither } from '../../../core/shared/either'
import * as EP from '../../../core/shared/element-path'
import type {
Expand Down Expand Up @@ -349,6 +349,8 @@ export interface GridResizingProps {
axis: Axis
gap: number | null
padding: Sides | null
justifyContent: string | null
alignContent: string | null
}

export const GridResizing = React.memo((props: GridResizingProps) => {
Expand Down Expand Up @@ -437,6 +439,16 @@ export const GridResizing = React.memo((props: GridResizingProps) => {
: undefined,
paddingTop:
props.axis === 'row' && props.padding != null ? `${props.padding.top}px` : undefined,
paddingRight:
props.axis === 'column' && props.padding != null
? `${props.padding.right}px`
: undefined,
paddingBottom:
props.axis === 'row' && props.padding != null
? `${props.padding.bottom}px`
: undefined,
justifyContent: props.justifyContent ?? undefined,
alignContent: props.alignContent ?? undefined,
}}
>
{dimensions.flatMap((dimension, dimensionIndex) => {
Expand Down Expand Up @@ -634,6 +646,8 @@ export const GridRowColumnResizingControls =
gap={grid.columnGap ?? grid.gap}
padding={grid.padding}
stripedAreaLength={getStripedAreaLength(grid.gridTemplateRows, grid.gap ?? 0)}
alignContent={grid.justifyContent}
justifyContent={grid.alignContent}
/>
)
})}
Expand All @@ -648,6 +662,8 @@ export const GridRowColumnResizingControls =
gap={grid.rowGap ?? grid.gap}
padding={grid.padding}
stripedAreaLength={getStripedAreaLength(grid.gridTemplateColumns, grid.gap ?? 0)}
alignContent={grid.alignContent}
justifyContent={grid.justifyContent}
/>
)
})}
Expand Down Expand Up @@ -892,19 +908,19 @@ export const GridControl = React.memo<GridControlProps>(({ grid }) => {
gridPath: gridPath,
})

const placeholders = Array.from(Array(grid.cells).keys())
const placeholders = range(0, grid.cells)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🪄

let style: CSSProperties = {
position: 'absolute',
top: grid.frame.y - 1, // account for border!
left: grid.frame.x - 1, // account for border!
top: grid.frame.y,
left: grid.frame.x,
width: grid.frame.width,
height: grid.frame.height,
display: 'grid',
gridTemplateColumns: getNullableAutoOrTemplateBaseString(grid.gridTemplateColumns),
gridTemplateRows: getNullableAutoOrTemplateBaseString(grid.gridTemplateRows),
backgroundColor:
activelyDraggingOrResizingCell != null ? colorTheme.primary10.value : 'transparent',
border: `1px solid ${
outline: `1px solid ${
activelyDraggingOrResizingCell != null ? colorTheme.primary.value : 'transparent'
}`,
justifyContent: grid.justifyContent ?? 'initial',
Expand Down
3 changes: 2 additions & 1 deletion editor/src/components/canvas/dom-walker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ import { fastForEach } from '../../core/shared/utils'
import type { EditorState, EditorStorePatched } from '../editor/store/editor-state'
import { shallowEqual } from '../../core/shared/equality-utils'
import {
getAlignContent,
getFlexAlignment,
getFlexJustifyContent,
getSelfAlignment,
Expand Down Expand Up @@ -723,7 +724,7 @@ function getSpecialMeasurements(
const parentTextDirection = eitherToMaybe(parseDirection(parentElementStyle?.direction, null))

const justifyContent = getFlexJustifyContent(elementStyle.justifyContent)
const alignContent = getFlexJustifyContent(elementStyle.alignContent)
const alignContent = getAlignContent(elementStyle.alignContent)
const alignItems = getFlexAlignment(elementStyle.alignItems)
const alignSelf = getSelfAlignment(elementStyle.alignSelf)
const justifySelf = getSelfAlignment(elementStyle.justifySelf)
Expand Down
69 changes: 69 additions & 0 deletions editor/src/components/inspector/inspector-common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,75 @@ export function getFlexJustifyContent(value: string | null): FlexJustifyContent
}
}

export type AlignContent =
| 'normal'
| 'start'
| 'center'
| 'end'
| 'flex-start'
| 'flex-end'
| 'baseline'
| 'first baseline'
| 'last baseline'
| 'space-between'
| 'space-around'
| 'space-evenly'
| 'stretch'
| 'safe center'
| 'unsafe center'
| 'inherit'
| 'initial'
| 'revert'
| 'revert-layer'
| 'unset'

export function getAlignContent(value: string | null): AlignContent | null {
switch (value) {
case 'normal':
return 'normal'
case 'start':
return 'start'
case 'center':
return 'center'
case 'end':
return 'end'
case 'flex-start':
return 'flex-start'
case 'flex-end':
return 'flex-end'
case 'baseline':
return 'baseline'
case 'first baseline':
return 'first baseline'
case 'last baseline':
return 'last baseline'
case 'space-between':
return 'space-between'
case 'space-around':
return 'space-around'
case 'space-evenly':
return 'space-evenly'
case 'stretch':
return 'stretch'
case 'safe center':
return 'safe center'
case 'unsafe center':
return 'unsafe center'
case 'inherit':
return 'inherit'
case 'initial':
return 'initial'
case 'revert':
return 'revert'
case 'revert-layer':
return 'revert-layer'
case 'unset':
return 'unset'
default:
return null
}
}

export type FlexAlignment = StartCenterEnd | 'auto' | 'stretch'
export type SelfAlignment = FlexAlignment | 'end' | 'start'

Expand Down
8 changes: 8 additions & 0 deletions editor/src/core/shared/array-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,14 @@ export function matrixGetter<T>(array: T[], width: number): (row: number, column
}
}

export function range(start: number, end: number): Array<number> {
let result: Array<number> = []
for (let i = start; i < end; i++) {
result.push(i)
}
return result
}

export function chunkArrayEqually<T>(
sortedArray: T[],
numberOfChunks: number,
Expand Down
5 changes: 3 additions & 2 deletions editor/src/core/shared/element-template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import { intrinsicHTMLElementNamesAsStrings } from './dom-utils'
import type { MapLike } from 'typescript'
import { forceNotNull } from './optional-utils'
import type {
AlignContent,
FlexAlignment,
FlexJustifyContent,
SelfAlignment,
Expand Down Expand Up @@ -2814,7 +2815,7 @@ export interface SpecialSizeMeasurements {
gap: number | null
flexDirection: FlexDirection | null
justifyContent: FlexJustifyContent | null
alignContent: FlexJustifyContent | null
alignContent: AlignContent | null
alignItems: FlexAlignment | null
alignSelf: SelfAlignment | null
justifySelf: SelfAlignment | null
Expand Down Expand Up @@ -2867,7 +2868,7 @@ export function specialSizeMeasurements(
gap: number | null,
flexDirection: FlexDirection | null,
justifyContent: FlexJustifyContent | null,
alignContent: FlexJustifyContent | null,
alignContent: AlignContent | null,
alignItems: FlexAlignment | null,
htmlElementName: string,
renderedChildrenCount: number,
Expand Down
Loading