import { decl } from '../ast'
import type { DesignSystem } from '../design-system'
import { isPositiveInteger, isValidSpacingMultiplier } from '../utils/infer-data-type'
import { segment } from '../utils/segment'
export function registerLegacyUtilities(designSystem: DesignSystem) {
for (let [value, direction] of [
['t', 'top'],
['tr', 'top right'],
['r', 'right'],
['br', 'bottom right'],
['b', 'bottom'],
['bl', 'bottom left'],
['l', 'left'],
['tl', 'top left'],
]) {
designSystem.utilities.suggest(`bg-gradient-to-${value}`, () => [])
designSystem.utilities.static(`bg-gradient-to-${value}`, () => [
decl('--tw-gradient-position', `to ${direction} in oklab`),
decl('background-image', `linear-gradient(var(--tw-gradient-stops))`),
])
}
designSystem.utilities.suggest('bg-left-top', () => [])
designSystem.utilities.static('bg-left-top', () => [decl('background-position', 'left top')])
designSystem.utilities.suggest('bg-right-top', () => [])
designSystem.utilities.static('bg-right-top', () => [decl('background-position', 'right top')])
designSystem.utilities.suggest('bg-left-bottom', () => [])
designSystem.utilities.static('bg-left-bottom', () => [
decl('background-position', 'left bottom'),
])
designSystem.utilities.suggest('bg-right-bottom', () => [])
designSystem.utilities.static('bg-right-bottom', () => [
decl('background-position', 'right bottom'),
])
designSystem.utilities.suggest('object-left-top', () => [])
designSystem.utilities.static('object-left-top', () => [decl('object-position', 'left top')])
designSystem.utilities.suggest('object-right-top', () => [])
designSystem.utilities.static('object-right-top', () => [decl('object-position', 'right top')])
designSystem.utilities.suggest('object-left-bottom', () => [])
designSystem.utilities.static('object-left-bottom', () => [
decl('object-position', 'left bottom'),
])
designSystem.utilities.suggest('object-right-bottom', () => [])
designSystem.utilities.static('object-right-bottom', () => [
decl('object-position', 'right bottom'),
])
designSystem.utilities.suggest('max-w-screen', () => [])
designSystem.utilities.functional('max-w-screen', (candidate) => {
if (!candidate.value) return
if (candidate.value.kind === 'arbitrary') return
let value = designSystem.theme.resolve(candidate.value.value, ['--breakpoint'])
if (!value) return
return [decl('max-width', value)]
})
designSystem.utilities.suggest('overflow-ellipsis', () => [])
designSystem.utilities.static(`overflow-ellipsis`, () => [decl('text-overflow', `ellipsis`)])
designSystem.utilities.suggest('decoration-slice', () => [])
designSystem.utilities.static(`decoration-slice`, () => [
decl('-webkit-box-decoration-break', `slice`),
decl('box-decoration-break', `slice`),
])
designSystem.utilities.suggest('decoration-clone', () => [])
designSystem.utilities.static(`decoration-clone`, () => [
decl('-webkit-box-decoration-break', `clone`),
decl('box-decoration-break', `clone`),
])
designSystem.utilities.suggest('flex-shrink', () => [])
designSystem.utilities.functional('flex-shrink', (candidate) => {
if (candidate.modifier) return
if (!candidate.value) {
return [decl('flex-shrink', '1')]
}
if (candidate.value.kind === 'arbitrary') {
return [decl('flex-shrink', candidate.value.value)]
}
if (isPositiveInteger(candidate.value.value)) {
return [decl('flex-shrink', candidate.value.value)]
}
})
designSystem.utilities.suggest('flex-grow', () => [])
designSystem.utilities.functional('flex-grow', (candidate) => {
if (candidate.modifier) return
if (!candidate.value) {
return [decl('flex-grow', '1')]
}
if (candidate.value.kind === 'arbitrary') {
return [decl('flex-grow', candidate.value.value)]
}
if (isPositiveInteger(candidate.value.value)) {
return [decl('flex-grow', candidate.value.value)]
}
})
designSystem.utilities.suggest('order-none', () => [])
designSystem.utilities.static('order-none', () => [decl('order', '0')])
designSystem.utilities.suggest('break-words', () => [])
designSystem.utilities.static('break-words', () => [decl('overflow-wrap', 'break-word')])
for (let [name, property] of [
['start', 'inset-inline-start'],
['end', 'inset-inline-end'],
] as const) {
designSystem.utilities.static(`${name}-auto`, () => [decl(property, 'auto')])
designSystem.utilities.static(`${name}-full`, () => [decl(property, '100%')])
designSystem.utilities.static(`-${name}-full`, () => [decl(property, '-100%')])
designSystem.utilities.static(`${name}-px`, () => [decl(property, '1px')])
designSystem.utilities.static(`-${name}-px`, () => [decl(property, '-1px')])
function handleInset({ negative }: { negative: boolean }) {
return (candidate: Extract<import('../candidate').Candidate, { kind: 'functional' }>) => {
if (!candidate.value) {
if (candidate.modifier) return
let value = designSystem.theme.resolve(null, ['--inset', '--spacing'])
if (value === null) return
return [decl(property, negative ? `calc(${value} * -1)` : value)]
}
if (candidate.value.kind === 'arbitrary') {
if (candidate.modifier) return
let value = candidate.value.value
return [decl(property, negative ? `calc(${value} * -1)` : value)]
}
let value = designSystem.theme.resolve(candidate.value.fraction ?? candidate.value.value, [
'--inset',
'--spacing',
])
if (value === null && candidate.value.fraction) {
let [lhs, rhs] = segment(candidate.value.fraction, '/')
if (!isPositiveInteger(lhs) || !isPositiveInteger(rhs)) return
value = `calc(${candidate.value.fraction} * 100%)`
}
if (value === null && negative) {
let multiplier = designSystem.theme.resolve(null, ['--spacing'])
if (multiplier && isValidSpacingMultiplier(candidate.value.value)) {
value = `calc(${multiplier} * -${candidate.value.value})`
if (value !== null) return [decl(property, value)]
}
}
if (value === null) {
let multiplier = designSystem.theme.resolve(null, ['--spacing'])
if (multiplier && isValidSpacingMultiplier(candidate.value.value)) {
value = `calc(${multiplier} * ${candidate.value.value})`
}
}
if (value === null) return
return [decl(property, negative ? `calc(${value} * -1)` : value)]
}
}
designSystem.utilities.functional(`-${name}`, handleInset({ negative: true }))
designSystem.utilities.functional(name, handleInset({ negative: false }))
}
}