-
Notifications
You must be signed in to change notification settings - Fork 62
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
feat/tokenized-gradients: wip new gradient helper function #1071
Merged
8coon
merged 16 commits into
qurle/feat/android-tokenized-gradients
from
feat/tokenized-gradients
Oct 15, 2024
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
6eb7fc0
feat/tokenized-gradients: wip new gradient helper function
8coon 4624626
feat/tokenized-gradients: fix gradient token helper
8coon 9773038
feat/tokenized-gradients: fix tokens in vkontakteAndroid theme
8coon 63e464f
feat/tokenized-gradients: fix linter
8coon 334e5af
feat/tokenized-gradients: update snapshots
8coon 80fbcc1
feat/tokenized-gradients: fix struct compiler
8coon abba3f1
feat/tokenized-gradients: add tests
8coon bc27733
feat/tokenized-gradients: add article route to docs
8coon f69db4a
feat/tokenized-gradients: add tokens doc article layout
8coon b1f3779
feat/tokenized-gradients: add language toggler
8coon 01ee134
feat/tokenized-gradients: fix doc style
8coon b0f6cec
feat/tokenized-gradients: refactor code highlight widget
8coon 0775613
feat/tokenized-gradients: fix tab
8coon 99c470a
feat/tokenized-gradients: add more tests
8coon dbca8c7
feat/tokenized-gradients: add more info to gradient step json struct
8coon 25380a8
feat/tokenized-gradients: fix docs
8coon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,211 @@ | ||
# Хелпер-функции для токенов | ||
Значения токенов бывают разные. Большинство токенов можно выразить либо числом (размеры), либо строкой (цвета, шрифты и прочее). | ||
|
||
Но иногда для правильной записи значений базовых типов недостаточно. Бывавет так, что в значении токена нужно сослаться | ||
на другой токен, или сгенерировать значение токена по набору правил. | ||
|
||
Для этих целей в пакете `@vkontakte/vkui-tokens` предусмотрены **функции-хелперы**. Они выполняются на этапе | ||
сборки темы и позволяют управлять тем, какие значения попадут в итоговые файлы. | ||
|
||
| ||
|
||
## `alias` | ||
Функция выполняет подстановку значения другого токена. | ||
|
||
Будьте осторожны с указанием токенов, которые сами являются ссылками. | ||
Неправильно указанный токен может привезти к переполнению стека и крешу сборки! | ||
|
||
### Интерфейс | ||
```typescript | ||
function alias<T extends ThemeDescription>(token: string): TokenFunction<T>; | ||
``` | ||
|
||
### Параметры | ||
* **token** — Имя токена. Можно использовать токены из текущей темы либо из всех тем, от которой наследуется текущая. | ||
|
||
### Пример | ||
Исходный файл темы: | ||
|
||
```typescript | ||
import { ParadigmThemeDescription } from '@/interfaces/namespaces/paradigm'; | ||
import { lightTheme } from '@/themeDescriptions/base/paradigm'; | ||
import { alias } from '@/build/helpers/tokenHelpers'; | ||
|
||
export const myCustomTheme: ParadigmThemeDescription = { | ||
...lightTheme, | ||
sizeArrow: alias('sizeArrowPromo'), | ||
sizeArrowPromo: { | ||
regular: 8, | ||
}, | ||
}; | ||
``` | ||
|
||
Итоговый файл с темой: | ||
|
||
```css | ||
:root { | ||
/* ... */ | ||
--vkui--size_arrow--regular: 8px; | ||
--vkui--size_arrow_promo--regular: 8px; | ||
/* ... */ | ||
} | ||
``` | ||
|
||
| ||
|
||
## `namedAlias` | ||
Функция создаёт именованый алиас — runtime-ссылку на другой токен темы выполняет подстановку | ||
fallback-значения этого токена. | ||
|
||
Будьте осторожны с указанием токенов, которые сами являются ссылками. | ||
Неправильно указанный токен может привезти к переполнению стека и крешу сборки! | ||
|
||
### Интерфейс | ||
```typescript | ||
function namedAlias<T extends ThemeDescription>(token: string): NamedTokenFunction<T> | ||
``` | ||
|
||
### Параметры | ||
* **token** — Имя токена. Можно использовать токены из текущей темы либо из всех тем, от которой наследуется текущая. | ||
|
||
### Пример | ||
Исходный файл темы: | ||
|
||
```typescript | ||
import { ParadigmThemeDescription } from '@/interfaces/namespaces/paradigm'; | ||
import { lightTheme } from '@/themeDescriptions/base/paradigm'; | ||
import { namedAlias } from '@/build/helpers/tokenHelpers'; | ||
|
||
export const myCustomTheme: ParadigmThemeDescription = { | ||
...lightTheme, | ||
sizeArrow: namedAlias('sizeArrowPromo'), | ||
sizeArrowPromo: { | ||
regular: 8, | ||
}, | ||
}; | ||
``` | ||
|
||
Итоговый файл с темой: | ||
|
||
```css | ||
:root { | ||
/* ... */ | ||
--vkui--size_arrow--regular: var(--vkui--size_arrow_promo--regular, 8px); | ||
--vkui--size_arrow_promo--regular: 8px; | ||
/* ... */ | ||
} | ||
``` | ||
|
||
| ||
|
||
## `staticRef` | ||
Функция создаёт runtime-ссылку на другой токен темы. | ||
|
||
### Интерфейс | ||
```typescript | ||
function staticRef<T>(value: Token<T, any>): T; | ||
``` | ||
|
||
### Параметры | ||
* **token** — Имя токена. Можно использовать любые токены, которые находятся в контексте страницы. | ||
|
||
### Пример | ||
Исходный файл темы: | ||
|
||
```typescript | ||
import { ParadigmThemeDescription } from '@/interfaces/namespaces/paradigm'; | ||
import { lightTheme } from '@/themeDescriptions/base/paradigm'; | ||
import { staticRef } from '@/build/helpers/tokenHelpers'; | ||
|
||
export const myCustomTheme: ParadigmThemeDescription = { | ||
...lightTheme, | ||
sizeArrow: staticRef('sizeArrowPromo'), | ||
sizeArrowPromo: { | ||
regular: 8, | ||
}, | ||
}; | ||
``` | ||
|
||
Итоговый файл с темой: | ||
|
||
```css | ||
:root { | ||
/* ... */ | ||
--vkui--size_arrow--regular: var(--vkui--size_arrow_promo--regular); | ||
--vkui--size_arrow_promo--regular: 8px; | ||
/* ... */ | ||
} | ||
``` | ||
|
||
| ||
|
||
## `gradient` | ||
Функция создаёт градиент из одного или нескольких цветов. | ||
|
||
Если передан один цвет, система сборки сгенериурет градиент из указанного цвета в прозрачный. При этом | ||
градиент будет построен по точкам, указанным в файле `opacityMap.json`. | ||
|
||
Если передано два и более цветов, будет сгенерирован градиент между этими цветами с равномерной расстановкой точек. | ||
|
||
### Интерфейс | ||
```typescript | ||
export function gradient<T extends ThemeDescription> ( | ||
...stops: (Property.Color | NamedTokenFunction<T>)[] | ||
): TokenFunction<T>; | ||
``` | ||
|
||
### Параметры | ||
* **stops** — Список точек градиента. Можно использовать цвета в строковом формате (rgba, hex) и именованые | ||
алиасы, созданные с помощью хелпера `namedAlias`. | ||
|
||
### Пример | ||
Исходный файл темы: | ||
|
||
```typescript | ||
import { ParadigmThemeDescription } from '@/interfaces/namespaces/paradigm'; | ||
import { lightTheme } from '@/themeDescriptions/base/paradigm'; | ||
import { gradient, namedAlias } from '@/build/helpers/tokenHelpers'; | ||
|
||
export const myCustomTheme: ParadigmThemeDescription = { | ||
...lightTheme, | ||
colorIconPrimary: 'rgba(64, 64, 64, 1)', | ||
gradient: gradient(namedAlias('colorIconPrimary'), 'rgba(32, 32, 32, 1)'), | ||
}; | ||
``` | ||
|
||
Итоговый файл с темой: | ||
|
||
```css | ||
:root { | ||
/* ... */ | ||
--vkui--color_icon_primary: rgba(64, 64, 64, 1); | ||
--vkui--gradient: var(--vkui--color_icon_primary, rgba(64, 64, 64, 1)) 0%, rgba(32, 32, 32, 1) 100%; | ||
/* ... */ | ||
} | ||
``` | ||
|
||
```json | ||
{ | ||
"gradient": { | ||
"gradient": [ | ||
{ | ||
"color": "rgba(64, 64, 64, 1)", | ||
"token": "colorIconPrimary", | ||
"step": 0, | ||
"alpha": 1 | ||
}, | ||
{ | ||
"color": "rgba(32, 32, 32, 1)", | ||
"token": "colorIconPrimary", | ||
"step": 1, | ||
"alpha": 1 | ||
} | ||
] | ||
}, | ||
"other": { | ||
"colorIconPrimary": { | ||
"normal": "rgba(64, 64, 64, 1)" | ||
} | ||
} | ||
} | ||
``` |
48 changes: 48 additions & 0 deletions
48
docs/src/components/layouts/shared/AsideMenu/AsideMenu.tsx
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import { Card, Spacing, Title } from '@vkontakte/vkui'; | ||
import * as React from 'react'; | ||
import { Link } from 'react-router-dom'; | ||
|
||
export interface AsideMenuItem { | ||
slug?: string; | ||
title: string; | ||
} | ||
|
||
export interface AsideMenuProps { | ||
items?: AsideMenuItem[]; | ||
} | ||
|
||
const defaultItems: AsideMenuItem[] = []; | ||
|
||
export function AsideMenu(props: AsideMenuProps) { | ||
const items = props.items ?? defaultItems; | ||
|
||
return ( | ||
<aside className="aside-menu"> | ||
<Card mode="shadow" className="aside-menu_card"> | ||
<Title level="2" className="aside-menu_title">Разделы</Title> | ||
<Spacing size={8}/> | ||
|
||
{items.map((item) => { | ||
if (item.slug) { | ||
return ( | ||
<div className="aside-menu-item" key={item.title}> | ||
<Link to={`/articles/${item.slug}`}>{item.title}</Link> | ||
Comment on lines
+28
to
+29
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. а не хочешь выше сделать const {title} = item, че как редиска |
||
</div> | ||
); | ||
} else { | ||
return ( | ||
<React.Fragment key={item.title}> | ||
<Spacing size={20}/> | ||
<Title level="3">{item.title}</Title> | ||
<Spacing size={8}/> | ||
</React.Fragment> | ||
) | ||
} | ||
})} | ||
|
||
<Spacing size={32}/> | ||
<Link to="/">← К таблице токенов</Link> | ||
</Card> | ||
</aside> | ||
); | ||
} |
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
кмк спорно, я подумал бы над { title: string, topics: []} ошибиться в структуре меньше шансов
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Зато вложенную структуру рендерить сложнее, чем плоскую. Кажется что с двумя статьями смысла что-то сложное тут делать нет