mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
9b151d2a54
Новый подход с фолбеком размеров с match_parent на wrap_content constrained
111 lines
3.2 KiB
Swift
111 lines
3.2 KiB
Swift
import CoreFoundation
|
|
import CoreGraphics
|
|
import Foundation
|
|
|
|
import BaseUI
|
|
import CommonCore
|
|
import LayoutKit
|
|
|
|
extension DivInput: DivBlockModeling {
|
|
public func makeBlock(context: DivBlockModelingContext) throws -> Block {
|
|
try applyBaseProperties(
|
|
to: { try makeBaseBlock(context: context) },
|
|
context: context,
|
|
actions: nil,
|
|
actionAnimation: nil,
|
|
doubleTapActions: nil,
|
|
longTapActions: nil
|
|
)
|
|
}
|
|
|
|
private func makeBaseBlock(context: DivBlockModelingContext) throws -> Block {
|
|
let font = context.fontSpecifiers.font(
|
|
family: resolveFontFamily(context.expressionResolver).fontFamily,
|
|
weight: resolveFontWeight(context.expressionResolver).fontWeight,
|
|
size: resolveFontSizeUnit(context.expressionResolver)
|
|
.makeScaledValue(resolveFontSize(context.expressionResolver))
|
|
)
|
|
var typo = Typo(font: font).allowHeightOverrun
|
|
|
|
let kern = CGFloat(resolveLetterSpacing(context.expressionResolver))
|
|
if !kern.isApproximatelyEqualTo(0) {
|
|
typo = typo.kerned(kern)
|
|
}
|
|
|
|
if let lineHeight = resolveLineHeight(context.expressionResolver) {
|
|
typo = typo.with(height: CGFloat(lineHeight))
|
|
}
|
|
|
|
let resolvedHintColor: Color = resolveHintColor(context.expressionResolver)
|
|
let hintTypo = typo.with(color: resolvedHintColor)
|
|
let hintValue = resolveHintText(context.expressionResolver) ?? ""
|
|
|
|
let resolvedColor: Color = resolveTextColor(context.expressionResolver)
|
|
let textTypo = typo.with(color: resolvedColor)
|
|
|
|
let textValue = Binding<String>(context: context, name: textVariable)
|
|
|
|
let highlightColor = resolveHighlightColor(context.expressionResolver)
|
|
|
|
let keyboardType = resolveKeyboardType(context.expressionResolver)
|
|
|
|
let maxVisibleLines = resolveMaxVisibleLines(context.expressionResolver)
|
|
|
|
let selectAllOnFocus = resolveSelectAllOnFocus(context.expressionResolver)
|
|
|
|
let onFocusActions = (focus?.onFocus ?? []).map {
|
|
$0.uiAction(context: context.actionContext)
|
|
}
|
|
let onBlurActions = (focus?.onBlur ?? []).map {
|
|
$0.uiAction(context: context.actionContext)
|
|
}
|
|
|
|
return TextInputBlock(
|
|
widthTrait: makeContentWidthTrait(with: context),
|
|
heightTrait: makeContentHeightTrait(with: context),
|
|
hint: hintValue.with(typo: hintTypo),
|
|
textValue: textValue,
|
|
textTypo: textTypo,
|
|
multiLineMode: keyboardType == .multiLineText,
|
|
keyboardType: keyboardType.system,
|
|
highlightColor: highlightColor,
|
|
maxVisibleLines: maxVisibleLines,
|
|
selectAllOnFocus: selectAllOnFocus,
|
|
path: context.parentPath,
|
|
onFocusActions: onFocusActions,
|
|
onBlurActions: onBlurActions,
|
|
parentScrollView: context.parentScrollView
|
|
)
|
|
}
|
|
}
|
|
|
|
extension DivAlignmentHorizontal {
|
|
fileprivate var system: TextAlignment {
|
|
switch self {
|
|
case .left:
|
|
return .left
|
|
case .center:
|
|
return .center
|
|
case .right:
|
|
return .right
|
|
}
|
|
}
|
|
}
|
|
|
|
extension DivInput.KeyboardType {
|
|
fileprivate var system: TextInputBlock.KeyboardType {
|
|
switch self {
|
|
case .singleLineText, .multiLineText:
|
|
return .default
|
|
case .phone:
|
|
return .phonePad
|
|
case .number:
|
|
return .numbersAndPunctuation
|
|
case .email:
|
|
return .emailAddress
|
|
case .uri:
|
|
return .URL
|
|
}
|
|
}
|
|
}
|