-
Notifications
You must be signed in to change notification settings - Fork 0
/
mixins.ts
508 lines (442 loc) · 12.7 KB
/
mixins.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
import { css, FlattenSimpleInterpolation } from 'styled-components';
export const mobile = (
styles: FlattenSimpleInterpolation
): FlattenSimpleInterpolation => css`
.mobile & {
${styles}
}
`;
export const desktop = (
styles: FlattenSimpleInterpolation
): FlattenSimpleInterpolation => css`
.desktop & {
${styles}
}
`;
export const ios = (
styles: FlattenSimpleInterpolation
): FlattenSimpleInterpolation => css`
.ios & {
${styles}
}
`;
export const android = (
styles: FlattenSimpleInterpolation
): FlattenSimpleInterpolation => css`
.android & {
${styles}
}
`;
export const mvk = (
styles: FlattenSimpleInterpolation
): FlattenSimpleInterpolation => css`
.mvk & {
${styles}
}
`;
export const odr = (
styles: FlattenSimpleInterpolation
): FlattenSimpleInterpolation => css`
.odr & {
${styles}
}
`;
export const minHeight = (
height: string,
content: FlattenSimpleInterpolation
): FlattenSimpleInterpolation => css`
@media (min-height: ${height}) {
${content};
}
`;
export const maxHeight = (
height: string,
content: FlattenSimpleInterpolation
): FlattenSimpleInterpolation => css`
@media (max-height: ${height}) {
${content};
}
`;
/**
* Миксин для устройств, у которых длина по крайней мере в 2 раза больше ширины.
* @param content
*/
export const longScreen = (
content: FlattenSimpleInterpolation
): FlattenSimpleInterpolation => css`
@media (max-aspect-ratio: 1/2) {
${content};
}
`;
export const portraitOrientation = (
content: FlattenSimpleInterpolation
): FlattenSimpleInterpolation => css`
@media (orientation: portrait) {
${content};
}
`;
export const landscapeOrientation = (
content: FlattenSimpleInterpolation
): FlattenSimpleInterpolation => css`
@media (orientation: landscape) {
${content};
}
`;
export const autoHover = (
styles: FlattenSimpleInterpolation
): FlattenSimpleInterpolation => css`
.desktop & {
&:hover {
cursor: pointer;
${styles}
}
}
.mobile & {
&:active {
${styles}
}
}
`;
// Для случая, когда стили ховера зависят от пропсов элемента (например, от темы
// кнопки). Если использовать autoHover, стили для одних пропсов будут
// перетирать стили для других, потому что они будут применяться ко всем
// элементам одного типа (ко всем кнопкам).
export const hover = (
isDesktop: boolean,
styles: FlattenSimpleInterpolation
): FlattenSimpleInterpolation =>
isDesktop
? css`
&:hover {
cursor: pointer;
${styles}
}
`
: css`
&:active {
${styles};
}
`;
/**
* Добавляет transition на указанные свойства.
* @param properties
* @param time
*/
export const animate = (
properties: string[] | string,
time = 0.2
): FlattenSimpleInterpolation => {
const array = typeof properties === 'string' ? [properties] : properties;
return css`
transition: ${array
.map((property) => `${property} ${time}s ease`)
.join(',')};
`;
};
export const square = (property: string): FlattenSimpleInterpolation => css`
height: ${property};
width: ${property};
`;
/**
* Центрирует элемент
*
* @param config Конфиг с настройками
* @param config.is3d Использовать ли translate3d() вместо translate(). Необязательный параметр
* @param config.axis Ось, относительно которой центрировать. Необязательный параметр. По умолчанию центрируется по обеим осям
* @param config.properties Дополнительные значения transform (rotate, scale и т.д.) Необязательный параметр
*/
export const centerPos = (config?: {
is3d?: boolean;
axis?: 'x' | 'y';
properties?: string;
}): FlattenSimpleInterpolation => {
const x = !config?.axis || config?.axis === 'x' ? '-50%' : '0';
const y = !config?.axis || config?.axis === 'y' ? '-50%' : '0';
const translate = config?.is3d
? `translate3d(${x}, ${y}, 0)`
: `translate(${x}, ${y})`;
return css`
${y === '-50%' &&
css`
top: 50%;
`};
${x === '-50%' &&
css`
left: 50%;
`};
transform: ${translate} ${config?.properties};
`;
};
export const backgroundImageCover = (
image?: string
): FlattenSimpleInterpolation => css`
background-repeat: no-repeat;
background-position: center;
background-size: cover;
${image ? `background-image: url(${image});` : ''}
`;
export const backgroundImageContain = (
image?: string
): FlattenSimpleInterpolation => css`
background-repeat: no-repeat;
background-position: center;
background-size: contain;
${image ? `background-image: url(${image});` : ''}
`;
const backgroundPosition = (zIndex = -1): FlattenSimpleInterpolation => css`
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: ${zIndex};
`;
export const absoluteBackgroundPosition = (
zIndex = -1
): FlattenSimpleInterpolation => css`
position: absolute;
${backgroundPosition(zIndex)};
`;
export const fixedBackgroundPosition = (
zIndex = -1
): FlattenSimpleInterpolation => css`
position: fixed;
${backgroundPosition(zIndex)};
`;
/**
* Обрезает длинный текст и добавляет многоточие.
*/
export const autoCropText = css`
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
`;
export const hideScrollbar = css`
&::-webkit-scrollbar {
display: none;
}
`;
/**
* Общие стили для инпута.
*/
export const inputStyles = css`
-webkit-appearance: none;
line-height: initial;
user-select: auto;
`;
/**
* Добавляет стили для плейсхолдера с приставками для всех браузеров.
* @param styles
*/
export const placeholderStyles = (
styles: FlattenSimpleInterpolation
): FlattenSimpleInterpolation => css`
&::-webkit-input-placeholder {
${styles};
}
&::-moz-placeholder {
${styles};
}
&:-moz-placeholder {
${styles};
}
&:-ms-input-placeholder {
${styles};
}
`;
export const sidePadding = (padding: string): FlattenSimpleInterpolation => css`
padding-left: ${padding};
padding-right: ${padding};
`;
export const contentWidth = (
sidePadding: string
): FlattenSimpleInterpolation => css`
width: calc(100vw - 2 * ${sidePadding});
`;
export const adaptiveSidePadding = (
mobilePadding: string,
desktopPadding: string
): FlattenSimpleInterpolation => css`
padding-left: ${mobilePadding};
padding-right: ${mobilePadding};
${desktop(css`
padding-left: ${desktopPadding};
padding-right: ${desktopPadding};
`)}
`;
export const adaptiveContentWidth = (
mobileSidePadding: string,
desktopSidePadding: string
): FlattenSimpleInterpolation => css`
width: calc(100vw - 2 * ${mobileSidePadding});
${desktop(css`
width: calc(100vw - 2 * ${desktopSidePadding});
`)}
`;
/** Умножает на один и тот же множитель переданные ширину и высоту */
export const scaleWidthHeight = (
width: string,
height: string,
factor = 1
): FlattenSimpleInterpolation => css`
width: calc(${width} * ${factor});
height: calc(${height} * ${factor});
`;
export const aspectRatio = (
width: number,
height: number
): FlattenSimpleInterpolation => {
const aspectRatioValue = width / height;
return css`
aspect-ratio: ${aspectRatioValue};
@supports not (aspect-ratio: ${aspectRatioValue}) {
&::after {
content: '';
display: block;
width: 100%;
padding-bottom: calc(100% * (${height} / ${width}));
}
}
`;
};
/**
* Фиксит в safari мерцание острых углов при overflow:hidden и border-radius
* Здесь data:image/png - это квадратное изображение 1x1 с черным фоном
* */
export const fixSafariRadiusOverflow = css`
-webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
`;
/**
* Кастомизирует нативный скролбар
*
* @param config - объект с настройками
* @param config.thumbColor Цвет ползунка
* @param config.bgColor Цвет фона области прокрутки
* @param config.size Размер скролбара. Для горизонтального это высота, для вертикального - ширина
* @param config.radius Скругление ползунка и фона. Необязательный параметр, по умолчанию без скругления
* @param config.orientation Значение overflow: all | y | x. Необязательный параметр, по умолчанию all
*/
export const customScrollbar = ({
thumbColor,
bgColor,
size,
radius = 0,
orientation = 'all',
}: {
thumbColor: string;
bgColor: string;
size: number;
radius?: number;
orientation?: string;
}): FlattenSimpleInterpolation => {
const commonStyles = css`
&::-webkit-scrollbar-track {
background-color: ${bgColor};
border-radius: ${radius}px;
}
&::-webkit-scrollbar-thumb {
border-radius: ${radius}px;
box-shadow: 0 0 20px 20px ${thumbColor} inset;
}
/* стилизация элементов прокрутки для Firefox */
scrollbar-color: ${thumbColor} ${bgColor};
scrollbar-width: ${size}px;
/* стилизация элементов прокрутки для IE и Edge */
-ms-overflow-style: none;
scrollbar-base-color: ${bgColor};
scrollbar-face-color: ${thumbColor};
scrollbar-arrow-color: ${bgColor};
`;
switch (orientation) {
case 'x':
return css`
overflow-x: auto;
overflow-y: hidden;
&::-webkit-scrollbar {
width: 0;
height: ${size}px;
}
${commonStyles};
`;
case 'y':
return css`
overflow-x: hidden;
overflow-y: auto;
&::-webkit-scrollbar {
width: ${size}px;
height: 0;
}
${commonStyles};
`;
default:
return css`
overflow: auto;
&::-webkit-scrollbar {
width: ${size}px;
height: ${size}px;
position: absolute;
right: 0;
top: 0;
}
${commonStyles};
`;
}
};
/**
* Проверка поддержки __flexbox gaps__ по наиболее близкому по поддержке свойству
* @link https://github.com/w3c/csswg-drafts/issues/3559#issuecomment-1758459996
*/
export const ifFlexGapNotSupported = (
styles: FlattenSimpleInterpolation
): FlattenSimpleInterpolation => css`
@supports not (inset: 0) {
${styles}
}
`;
/**
* Установка __flexbox gaps__ с простым вариантом fallback
*
* (!) В случае fallback'а на контейнере будут установлены отрицательные margin
*/
export const flexGap = (
row: string,
col: string
): FlattenSimpleInterpolation => css`
gap: ${row} ${col};
${ifFlexGapNotSupported(css`
margin: calc(-1 * ${row} / 2) calc(-1 * ${col} / 2);
& > * {
margin: calc(${row} / 2) calc(${col} / 2);
}
`)}
`;
export const pxToRem = (px: number, baseRemInPx = 16): number =>
px / baseRemInPx;
export const round = (number: number, decimals: number): number =>
Number(number.toFixed(decimals));
/**
* Задание адаптивного размера
* @link https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
*/
const MIN_BREAKPOINT = 320;
const MAX_BREAKPOINT = 1440;
export const fluid = (
minSize: number,
maxSize: number,
minBreakpoint = MIN_BREAKPOINT,
maxBreakpoint = MAX_BREAKPOINT,
unit = 'vw'
): string => {
const slope = (maxSize - minSize) / (maxBreakpoint - minBreakpoint);
const slopeToUnit = round(slope * 100, 3);
const interceptRem = round(pxToRem(minSize - slope * minBreakpoint), 3);
const minSizeRem = round(pxToRem(minSize), 3);
const maxSizeRem = round(pxToRem(maxSize), 3);
return `min(
max(${minSizeRem}rem, ${slopeToUnit}${unit} + ${interceptRem}rem),
${maxSizeRem}rem
)`;
};
export const safeTopValue = (value = '0px'): string =>
`calc(${value} + env(safe-area-inset-top))`;
export const safeBottomValue = (value = '0px'): string =>
`calc(${value} + env(safe-area-inset-bottom))`;