Skip to content

Commit bf4ee15

Browse files
committed
chore: unified textfield/textarea api to match config
1 parent a54f635 commit bf4ee15

25 files changed

+165
-138
lines changed

SDDSComponents/SDDSComponentsPreview/Components/SDDSTextArea/SDDSTextAreaAppearance+Extensions.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ public extension TextAreaAppearance {
5353
endContentColor: .surfaceInverseSolidPrimary.withOpacity(0.96),
5454
textColorReadOnly: .surfaceInverseSolidPrimary.withOpacity(0.96),
5555
captionColorReadOnly: .surfaceInverseSolidPrimary.withOpacity(0.56),
56-
placeholderColorReadOnly: .textDefaultSecondary
56+
counterColorReadOnly: .surfaceInverseSolidPrimary.withOpacity(0.56),
57+
placeholderColorReadOnly: .textDefaultSecondary,
58+
backgroundColorReadOnly: .surfaceDefaultTransparentPrimary
5759
)
5860
}
5961
}

SDDSComponents/SDDSComponentsPreview/Components/SDDSTextArea/SDDSTextAreaSize.swift

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import SwiftUI
33
import SDDSComponents
44

55
public enum SDDSTextAreaSize: String, TextAreaSizeConfiguration {
6+
67
case large
78
case medium
89
case small
@@ -34,6 +35,10 @@ public enum SDDSTextAreaSize: String, TextAreaSizeConfiguration {
3435
}
3536
}
3637

38+
public var chipsPadding: CGFloat {
39+
6
40+
}
41+
3742
public var textBeforeLeadingPadding: CGFloat {
3843
return 0
3944
}

SDDSComponents/SDDSComponentsPreview/Components/SDDSTextArea/TextAreaChipSize.swift

+15-11
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,23 @@ public enum TextAreaChipSize: String, ChipSizeConfiguration {
9090
}
9191
}
9292

93-
public var borderStyle: ChipBorderStyle {
94-
switch self {
95-
case .large:
96-
return .default(8)
97-
case .medium:
98-
return .default(6)
99-
case .small:
100-
return .default(4)
101-
case .extraSmall:
102-
return .default(2)
93+
public func cornerRadius(style: ComponentShapeStyle) -> CGFloat {
94+
switch style {
95+
case .cornered:
96+
switch self {
97+
case .large:
98+
return 8
99+
case .medium:
100+
return 6
101+
case .small:
102+
return 4
103+
case .extraSmall:
104+
return 2
105+
}
106+
case .pilled:
107+
return height / 2
103108
}
104109
}
105-
106110
}
107111

108112
#Preview {

SDDSComponents/SDDSComponentsPreview/Components/SDDSTextField/TextFieldChipSize.swift

+15-11
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,23 @@ public enum TextFieldChipSize: ChipSizeConfiguration {
9090
}
9191
}
9292

93-
public var borderStyle: ChipBorderStyle {
94-
switch self {
95-
case .large:
96-
return .default(8)
97-
case .medium:
98-
return .default(6)
99-
case .small:
100-
return .default(4)
101-
case .extraSmall:
102-
return .default(2)
93+
public func cornerRadius(style: SDDSComponents.ComponentShapeStyle) -> CGFloat {
94+
switch style {
95+
case .cornered:
96+
switch self {
97+
case .large:
98+
return 8
99+
case .medium:
100+
return 6
101+
case .small:
102+
return 4
103+
case .extraSmall:
104+
return 2
105+
}
106+
case .pilled:
107+
return height / 2
103108
}
104109
}
105-
106110
}
107111

108112
#Preview {

SDDSComponents/Sources/SDDSComponents/Common/ColorToken+Extensions.swift

+6
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,12 @@ public extension ColorToken {
105105
}
106106
}
107107

108+
public extension ShapeToken {
109+
static var `default`: ShapeToken {
110+
.default
111+
}
112+
}
113+
108114
public extension ColorToken {
109115
func withOpacity(_ opacity: Double) -> ColorToken {
110116
return ColorToken(

SDDSComponents/Sources/SDDSComponents/Components/SDDSButton/ButtonAppearance/ButtonAppearance.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ public struct ButtonAppearance {
2828
public let size: ButtonSizeConfiguration
2929

3030
/**
31-
Стиль формы кнопки (например, закругленная или овальная), определяемый `ButtonShapeStyle`.
31+
Стиль формы кнопки (например, закругленная или овальная), определяемый `ComponentShapeStyle`.
3232
*/
33-
public let shapeStyle: ButtonShapeStyle
33+
public let shapeStyle: ComponentShapeStyle
3434

3535
/**
3636
Типографика для текста заголовка кнопки, определяемая `TypographyConfiguration`.
@@ -95,7 +95,7 @@ public struct ButtonAppearance {
9595
*/
9696
public init(
9797
size: ButtonSizeConfiguration = DefaultButtonSize(),
98-
shapeStyle: ButtonShapeStyle = .default,
98+
shapeStyle: ComponentShapeStyle = .cornered,
9999
titleTypography: TypographyConfiguration = .default,
100100
titleColor: ButtonColor = ButtonColor(),
101101
subtitleTypography: TypographyConfiguration = .default,

SDDSComponents/Sources/SDDSComponents/Components/SDDSButton/ButtonAppearance/ButtonSize.swift

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public protocol ButtonSizeConfiguration: SizeConfiguration, CustomDebugStringCon
2222
/**
2323
Радиус скругления углов кнопки.
2424
*/
25-
var cornerRadius: CGFloat { get }
25+
func cornerRadius(style: ComponentShapeStyle) -> CGFloat
2626

2727
/**
2828
Внутренние отступы кнопки.
@@ -48,11 +48,12 @@ public protocol ButtonSizeConfiguration: SizeConfiguration, CustomDebugStringCon
4848
Горизонтальный промежуток между заголовком и подзаголовком кнопки.
4949
*/
5050
var titleHorizontalGap: CGFloat { get }
51+
5152
}
5253

5354
public struct DefaultButtonSize: ButtonSizeConfiguration {
5455
public var height: CGFloat = 0
55-
public var cornerRadius: CGFloat = 0
56+
public func cornerRadius(style: ComponentShapeStyle) -> CGFloat { 0 }
5657
public var paddings: EdgeInsets = .init()
5758
public var iconSize: CGSize = .zero
5859
public var spinnerSize: CGSize = .zero

SDDSComponents/Sources/SDDSComponents/Components/SDDSButton/Generated/ButtonAppearance+Extensions.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public extension ButtonAppearance {
1818
)
1919
}
2020

21-
func shapeStyle(_ shapeStyle: ButtonShapeStyle) -> ButtonAppearance {
21+
func shapeStyle(_ shapeStyle: ComponentShapeStyle) -> ButtonAppearance {
2222
return ButtonAppearance(
2323
size: self.size,
2424
shapeStyle: shapeStyle,

SDDSComponents/Sources/SDDSComponents/Components/SDDSButton/SDDSButton.swift

+1-6
Original file line numberDiff line numberDiff line change
@@ -174,12 +174,7 @@ public struct SDDSButton: View {
174174

175175
private extension SDDSButton {
176176
var cornerRadius: CGFloat {
177-
switch appearance.shapeStyle {
178-
case .default:
179-
return appearance.size.cornerRadius
180-
case .pilled:
181-
return appearance.size.height / 2
182-
}
177+
return appearance.size.cornerRadius(style: appearance.shapeStyle)
183178
}
184179

185180
func currentColor(for buttonColor: ButtonColor) -> Color {

SDDSComponents/Sources/SDDSComponents/Components/SDDSChip/ChipAppearance/ChipAppearance.swift

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public struct ChipAppearance: Hashable {
2121
public let imageTintColor: ColorToken
2222
public let buttonTintColor: ColorToken
2323
public let backgroundColor: ColorToken
24+
public let shapeStyle: ComponentShapeStyle
2425
public let disabledAlpha: CGFloat
2526

2627
public init(
@@ -30,6 +31,7 @@ public struct ChipAppearance: Hashable {
3031
imageTintColor: ColorToken = .clearColor,
3132
buttonTintColor: ColorToken = .clearColor,
3233
backgroundColor: ColorToken = .clearColor,
34+
shapeStyle: ComponentShapeStyle = .cornered,
3335
disabledAlpha: CGFloat = 0
3436
) {
3537
self.size = size
@@ -38,6 +40,7 @@ public struct ChipAppearance: Hashable {
3840
self.imageTintColor = imageTintColor
3941
self.buttonTintColor = buttonTintColor
4042
self.backgroundColor = backgroundColor
43+
self.shapeStyle = shapeStyle
4144
self.disabledAlpha = disabledAlpha
4245
}
4346

SDDSComponents/Sources/SDDSComponents/Components/SDDSChip/ChipAppearance/ChipBorderStyle.swift

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
import Foundation
22

33
/**
4-
`ChipBorderStyle` определяет стиль границы для чипа.
4+
`ComponentShapeStyle` определяет стиль границы для чипа.
55

6-
- `default`: Стиль по умолчанию с заданным радиусом скругления.
6+
- `cornered`: Стиль по умолчанию с заданным радиусом скругления.
77
- `pilled`: Закругленный стиль с максимальным радиусом скругления.
88
*/
9-
public enum ChipBorderStyle: Hashable {
10-
case `default`(_ cornerRadius: CGFloat)
9+
public enum ComponentShapeStyle: Hashable {
10+
case cornered
1111
case pilled
1212

1313
public func hash(into hasher: inout Hasher) {
1414
switch self {
15-
case .default(let cornerRadius):
16-
hasher.combine("default")
17-
hasher.combine(cornerRadius)
15+
case .cornered:
16+
hasher.combine("cornered")
1817
case .pilled:
1918
hasher.combine("pilled")
2019
}

SDDSComponents/Sources/SDDSComponents/Components/SDDSChip/ChipAppearance/ChipSizeConfiguration.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ public protocol ChipSizeConfiguration: SizeConfiguration, CustomDebugStringConve
1818
var leadingInset: CGFloat { get }
1919
var trailingInset: CGFloat { get }
2020
var spacing: CGFloat { get }
21-
var borderStyle: ChipBorderStyle { get }
2221
var height: CGFloat { get }
22+
func cornerRadius(style: ComponentShapeStyle) -> CGFloat
2323
}
2424

2525
public struct ZeroChipSize: ChipSizeConfiguration {
@@ -28,8 +28,8 @@ public struct ZeroChipSize: ChipSizeConfiguration {
2828
public var leadingInset: CGFloat { 0 }
2929
public var trailingInset: CGFloat { 0 }
3030
public var spacing: CGFloat { 0 }
31-
public var borderStyle: ChipBorderStyle { .default(0) }
3231
public var height: CGFloat { 0 }
32+
public func cornerRadius(style: ComponentShapeStyle) -> CGFloat { 0 }
3333
public var debugDescription: String { "ZeroChipSize" }
3434
public init() {}
3535
}

SDDSComponents/Sources/SDDSComponents/Components/SDDSChip/SDDSChip.swift

+1-6
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,7 @@ public struct SDDSChip: View {
123123
}
124124

125125
private var borderRadius: CGFloat {
126-
switch appearance.size.borderStyle {
127-
case .default(let cornerRadius):
128-
return cornerRadius
129-
case .pilled:
130-
return appearance.size.height / 2
131-
}
126+
return appearance.size.cornerRadius(style: appearance.shapeStyle)
132127
}
133128

134129
private func handleRemove() {

SDDSComponents/Sources/SDDSComponents/Components/SDDSTextArea/SDDSTextArea.swift

+2-7
Original file line numberDiff line numberDiff line change
@@ -792,15 +792,10 @@ public struct SDDSTextArea: View {
792792
case .single:
793793
return 0
794794
case .multiple(_, let chips):
795-
guard let chipSize = chips.first?.appearance.size else {
795+
guard let chipAppearance = chips.first?.appearance else {
796796
return 0
797797
}
798-
switch chipSize.borderStyle {
799-
case .default(let radius):
800-
return radius
801-
case .pilled:
802-
return chipSize.height / 2
803-
}
798+
return chipAppearance.size.cornerRadius(style: chipAppearance.shapeStyle)
804799
}
805800
}
806801

SDDSComponents/Sources/SDDSComponents/Components/SDDSTextField/SDDSTextField.swift

+2-7
Original file line numberDiff line numberDiff line change
@@ -779,15 +779,10 @@ public struct SDDSTextField: View {
779779
case .single:
780780
return 0
781781
case .multiple(_, let chips):
782-
guard let chipSize = chips.first?.appearance.size else {
782+
guard let chipAppearance = chips.first?.appearance else {
783783
return 0
784784
}
785-
switch chipSize.borderStyle {
786-
case .default(let radius):
787-
return radius
788-
case .pilled:
789-
return chipSize.height / 2
790-
}
785+
return chipAppearance.size.cornerRadius(style: chipAppearance.shapeStyle)
791786
}
792787
}
793788

SDDSThemeBuilder/SDDSThemeBuilderCore/Stencil/BasicButtonSize+ButtonSizeConfiguration.stencil

+11-6
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,17 @@ extension BasicButtonSize: ButtonSizeConfiguration {
1919
{%- endfor %}
2020
}
2121
}
22-
23-
public var cornerRadius: CGFloat {
24-
switch self {
25-
{%- for variation, config in variations.size %}
26-
case .{{ variation | sizeKey }}: return {{ config.shape.name | adjustedCornerRadius:config.shape.adjustment }}
27-
{%- endfor %}
22+
23+
public func cornerRadius(style: ComponentShapeStyle) -> CGFloat {
24+
switch style {
25+
case .cornered:
26+
switch self {
27+
{%- for variation, config in variations.size %}
28+
case .{{ variation | sizeKey }}: return {{ config.shape.name | adjustedCornerRadius:config.shape.adjustment }}
29+
{%- endfor %}
30+
}
31+
case .pilled:
32+
return height / 2
2833
}
2934
}
3035

SDDSThemeBuilder/SDDSThemeBuilderCore/Stencil/IconButtonSize+ButtonSizeConfiguration.stencil

+10-5
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,16 @@ extension IconButtonSize: ButtonSizeConfiguration {
2020
}
2121
}
2222

23-
public var cornerRadius: CGFloat {
24-
switch self {
25-
{%- for variation, config in variations.size %}
26-
case .{{ variation | sizeKey }}: return {{ config.shape.name | adjustedCornerRadius:config.shape.adjustment }}
27-
{%- endfor %}
23+
public func cornerRadius(style: ComponentShapeStyle) -> CGFloat {
24+
switch style {
25+
case .cornered:
26+
switch self {
27+
{%- for variation, config in variations.size %}
28+
case .{{ variation | sizeKey }}: return {{ config.shape.name | adjustedCornerRadius:config.shape.adjustment }}
29+
{%- endfor %}
30+
}
31+
case .pilled:
32+
return height / 2
2833
}
2934
}
3035

SDDSThemeBuilder/SDDSThemeBuilderCore/Stencil/LinkButtonSize+ButtonSizeConfiguration.stencil

+1-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ extension LinkButtonSize: ButtonSizeConfiguration {
2020
}
2121
}
2222

23-
public var cornerRadius: CGFloat {
24-
0
25-
}
23+
public func cornerRadius(style: ComponentShapeStyle) -> CGFloat { 0 }
2624

2725
public var paddings: EdgeInsets {
2826
switch self {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import Foundation
2+
import SwiftUI
3+
4+
public extension ColorToken {
5+
/// Применяет альфу к токену путем умножения альфы к исходной альфе токена
6+
func withAlpha(multipliedBy alpha: Double) {
7+
return ColorToken(
8+
darkColor: self.darkColor.opacity(alpha),
9+
lightColor: self.lightColor.opacity(alpha)
10+
)
11+
}
12+
}

0 commit comments

Comments
 (0)