Last active
July 12, 2023 13:00
-
-
Save jojojojojoj5564656465465/40ed7958e6aee8aff5f78824d7fe22c4 to your computer and use it in GitHub Desktop.
Flexbox Unocss Rule helper flex-col-5= center center flex-col-1= start start
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
[ | |
/^flex-(row|col)-([1-9])$/, | |
([, direction, number]) => { | |
type PositionProps = Readonly<'start' | 'center' | 'end'> | |
const positions = { | |
1: ['start', 'start'], | |
2: ['center', 'start'], | |
3: ['end', 'start'], | |
4: ['start', 'center'], | |
5: ['center', 'center'], | |
6: ['end', 'center'], | |
7: ['start', 'end'], | |
8: ['center', 'end'], | |
9: ['end', 'end'] | |
} as const satisfies Record< | |
number, | |
readonly [PositionProps, PositionProps] | |
> | |
//IIFE ==> | |
const direction2 = ((): 'row' | 'column' => { | |
const d = direction as Readonly<'row' | 'col'> | |
return d === 'row' ? 'row' : 'column' | |
})() | |
const [justify, align] = | |
positions[Number(number) as keyof typeof positions] | |
return { | |
display: 'flex', | |
'flex-direction': direction2, | |
'justify-content': justify, | |
'align-items': align | |
} | |
}, | |
{ autocomplete: 'flex-(col|row)-(1|2|3|4|5|6|7|8|9)' } | |
] |
Author
jojojojojoj5564656465465
commented
Feb 12, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment