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

chore: fix label migration and css shadow migration #9275

Merged
merged 1 commit into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all 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 @@ -82,13 +82,13 @@ export const DEPRECATED_VARS = {
'--tui-positive-night-hover': '--tui-status-positive',
'--tui-negative-night': '--tui-status-negative',
'--tui-negative-night-hover': '--tui-status-negative',
'--tui-shadow': 'var(--tui-shadow-small)',
'--tui-shadow-hover': 'var(--tui-shadow-small-hover)',
'--tui-shadow-dropdown': 'var(--tui-shadow-medium)',
'--tui-shadow-modal': 'var(--tui-shadow-popup)',
'--tui-shadow-sidebar': 'var(--tui-shadow-medium)',
'--tui-shadow-navigation': 'var(--tui-shadow-small)',
'--tui-shadow-sheet': 'var(--tui-shadow-popup)',
'--tui-shadow': '--tui-shadow-small',
'--tui-shadow-hover': '--tui-shadow-small-hover',
'--tui-shadow-dropdown': '--tui-shadow-medium',
'--tui-shadow-modal': '--tui-shadow-popup',
'--tui-shadow-sidebar': '--tui-shadow-medium',
'--tui-shadow-navigation': '--tui-shadow-small',
'--tui-shadow-sheet': '--tui-shadow-popup',
};

// warning: order is important
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,32 @@ export function renameCssVars(pattern = ALL_FILES): void {
});
}

const placeholders: Record<string, string> = {};

Object.keys(DEPRECATED_VARS).forEach((key, index) => {
placeholders[key] = `__PLACEHOLDER_${index}__`;
});

Object.entries(DEPRECATED_VARS)
.sort(([prev], [next]) => (prev.length < next.length ? 1 : -1))
.map(([from, to]) => ({
from: new RegExp(`${from}`, 'g'),
to,
}))
.forEach(({from, to}) => {
text = text.replaceAll(from, to);
.forEach(({from}) => {
text = text.replace(from, (matched) => placeholders[matched] ?? '');
});

const placeholderPattern = new RegExp(Object.values(placeholders).join('|'), 'g');

text = text.replaceAll(placeholderPattern, (matched) => {
const originalKey = Object.keys(placeholders).find(
(key) => placeholders[key] === matched,
);

return DEPRECATED_VARS[originalKey as keyof typeof DEPRECATED_VARS];
});

Object.entries(DEPRECATED_NUMERIC_VARS)
.map(([from, to]) => ({
from: new RegExp(`${from}`, 'g'),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type {UpdateRecorder} from '@angular-devkit/schematics';
import type {DevkitFileSystem} from 'ng-morph';
import type {Attribute, ElementLocation} from 'parse5/dist/common/token';
import type {ChildNode} from 'parse5/dist/tree-adapters/default';

import {findElementsByTagName} from '../../../../utils/templates/elements';
import {findAttr} from '../../../../utils/templates/inputs';
Expand All @@ -26,7 +27,7 @@ export function migrateLabel({
attrs.some(({name}) => name === 'tuilabel' || name === '[tuilabel]'),
);

labelElements.forEach(({attrs, sourceCodeLocation}) => {
labelElements.forEach(({attrs, sourceCodeLocation, childNodes}) => {
const labelAttr = findAttr(attrs, 'tuilabel');

if (!labelAttr || !sourceCodeLocation) {
Expand All @@ -38,6 +39,7 @@ export function migrateLabel({
sourceCodeLocation,
recorder,
templateOffset,
childNodes,
});
});
}
Expand All @@ -47,23 +49,36 @@ function migrateValue({
sourceCodeLocation,
recorder,
templateOffset,
childNodes,
}: {
valueAttr: Attribute;
sourceCodeLocation: ElementLocation;
recorder: UpdateRecorder;
templateOffset: number;
childNodes: ChildNode[];
}): void {
const attrValue = valueAttr?.value;
const insertTo = sourceCodeLocation?.startTag?.endOffset ?? 0;
const {startTag, endTag} = sourceCodeLocation;
const insertTo = startTag?.endOffset;

if (!attrValue || !insertTo) {
return;
}

recorder.insertRight(
insertTo + templateOffset,
valueAttr.name === 'tuilabel' ? attrValue : `{{ ${attrValue} }}`,
);
const onlyTextContent =
childNodes.length && childNodes.every((node) => node.nodeName === '#text');

if (onlyTextContent && startTag && endTag) {
const content = `<span tuiTitle><span tuiSubtitle>${valueAttr.name === 'tuilabel' ? attrValue : `{{ ${attrValue} }}`}</span>`;

recorder.insertRight(templateOffset + insertTo, content);
recorder.insertLeft(templateOffset + endTag.startOffset, '</span>');
} else {
recorder.insertRight(
insertTo + templateOffset,
valueAttr.name === 'tuilabel' ? attrValue : `{{ ${attrValue} }}`,
);
}

const attrOffset = sourceCodeLocation?.attrs?.[valueAttr.name];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,11 @@ export class Test {
const STYLES_BEFORE = `@import '@taiga-ui/core/styles/taiga-ui-local';

:host {
color: var(--tui-text-primary);
box-shadow: var(--tui-shadow-navigation);
color: var(--tui-text-01-night);
--tui-base-01: 'black';
--tui-info-bg-night: 'blue';
--tui-shadow-sidebar: #fff;

&_error {
color: var(--tui-error-fill);
Expand All @@ -66,10 +68,12 @@ const STYLES_BEFORE = `@import '@taiga-ui/core/styles/taiga-ui-local';
const STYLES_AFTER = `@import '@taiga-ui/core/styles/taiga-ui-local';

:host {
box-shadow: var(--tui-shadow-small);
color: var(--tui-text-primary);
--tui-background-base: 'black';
// TODO: use tuiTheme="dark" on an element to switch colors to dark theme
--tui-status-info-pale: 'blue';
--tui-shadow-medium: #fff;

&_error {
color: var(--tui-status-negative);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ const TEMPLATE_BEFORE = `
<label [tuiLabel]="label">
Some
</label>

<label tuiLabel="Foo">Bar</label>
`;

const TEMPLATE_AFTER = `
Expand All @@ -59,9 +61,11 @@ const TEMPLATE_AFTER = `
>
</label>

<label tuiLabel>{{ label }}
<label tuiLabel><span tuiTitle><span tuiSubtitle>{{ label }}</span>
Some
</label>
</span></label>

<label tuiLabel><span tuiTitle><span tuiSubtitle>Foo</span>Bar</span></label>
`;

describe('ng-update', () => {
Expand Down
Loading