- HomePage: replace inline styles with <Heading>, <Text>, <Box> - SearchBar: replace <input> with <TextField>, <ul> with <Surface>, <li> with <Box>+<Text>+<Chip>, hardcoded hex with theme tokens - ESLint no-restricted-imports respected via @mui/material/Box deep import - Logic unchanged, all 111 tests pass
1.3 KiB
1.3 KiB
Pilot Migration — Tasks
1. HomePage
- Заменить h1 на
<Heading level={1} size="display"> - Заменить p с text-secondary на
<Text tone="secondary"> - Заменить p с #888/#aaa на
<Text tone="muted"> - Заменить div-wrapper на
<Box textAlign="center" pt={30}> - Удалить все inline-стили
2. SearchBar
- Заменить
<input>на<TextField label="Поиск" hiddenLabel> - Заменить
<ul>на<Surface elevation="sm">с positioning styles - Заменить loading text на
<Text tone="muted"> - Заменить empty text на
<Text tone="muted"> - Заменить
<li>results на<Box>с flex layout - Заменить hardcoded hex на theme tokens
- Заменить JS hover handlers на MUI
sx={{ '&:hover': { bgcolor: 'action.hover' } }} - Заменить тип "Акция"/"Облигация" на
<Chip>
3. Verification
npm run test:frontend— 23 suites, 111 passednpm run lint -w apps/frontend— чист, 0 warningsnpm run build:frontend— проходит- ESLint
no-restricted-importsне нарушен (использован@mui/material/Boxdeep import)