This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-iOS/Pod/Classes/Shader/DoricTextNode.m

192 lines
7.9 KiB
Mathematica
Raw Normal View History

2019-12-04 13:29:26 +08:00
/*
* Copyright [2019] [Doric.Pub]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//
// DoricTextNode.m
// Doric
//
// Created by pengfei.zhou on 2019/7/31.
//
#import "DoricTextNode.h"
#import "DoricUtil.h"
#import "DoricGroupNode.h"
#import "Doric.h"
@interface DoricTextView : UILabel
@end
@implementation DoricTextView
- (void)drawTextInRect:(CGRect)rect {
2020-04-03 16:36:43 +08:00
[super drawTextInRect:UIEdgeInsetsInsetRect(
rect,
UIEdgeInsetsMake(
self.doricLayout.paddingTop,
self.doricLayout.paddingLeft,
self.doricLayout.paddingBottom,
self.doricLayout.paddingRight))];
}
@end
2020-03-24 11:06:30 +08:00
@interface DoricTextNode ()
@property(nonatomic, strong) NSMutableParagraphStyle *paragraphStyle;
2020-12-10 09:50:09 +08:00
@property(nonatomic, copy) NSNumber *underline;
@property(nonatomic, copy) NSNumber *strikethrough;
2020-03-24 11:06:30 +08:00
@end
2019-12-04 13:29:26 +08:00
@implementation DoricTextNode
- (UILabel *)build {
return [[[DoricTextView alloc] init] also:^(DoricTextView *it) {
2020-04-27 18:46:39 +08:00
[self ensureParagraphStyle];
2019-12-04 13:29:26 +08:00
}];
}
- (void)blendView:(UILabel *)view forPropName:(NSString *)name propValue:(id)prop {
if ([name isEqualToString:@"text"]) {
2020-04-13 17:41:17 +08:00
view.text = prop;
2020-03-24 11:06:30 +08:00
if (self.paragraphStyle) {
2020-04-13 17:41:17 +08:00
[self reloadParagraphStyle];
2020-03-24 11:06:30 +08:00
}
2019-12-04 13:29:26 +08:00
} else if ([name isEqualToString:@"textSize"]) {
2020-01-14 19:50:32 +08:00
UIFont *font = view.font;
if (font) {
view.font = [view.font fontWithSize:[(NSNumber *) prop floatValue]];
} else {
view.font = [UIFont systemFontOfSize:[(NSNumber *) prop floatValue]];
}
2019-12-04 13:29:26 +08:00
} else if ([name isEqualToString:@"textColor"]) {
view.textColor = DoricColor(prop);
} else if ([name isEqualToString:@"textAlignment"]) {
DoricGravity gravity = (DoricGravity) [(NSNumber *) prop integerValue];
NSTextAlignment alignment = NSTextAlignmentCenter;
2020-03-27 10:07:53 +08:00
if ((gravity & DoricGravityLeft) == DoricGravityLeft) {
2019-12-04 13:29:26 +08:00
alignment = NSTextAlignmentLeft;
2020-03-27 10:07:53 +08:00
} else if ((gravity & DoricGravityRight) == DoricGravityRight) {
2019-12-04 13:29:26 +08:00
alignment = NSTextAlignmentRight;
}
2020-03-24 11:06:30 +08:00
if (self.paragraphStyle) {
self.paragraphStyle.alignment = alignment;
2020-04-27 18:46:39 +08:00
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:view.text ?: @""];
2020-03-24 16:23:51 +08:00
[attributedString addAttribute:NSParagraphStyleAttributeName value:self.paragraphStyle range:NSMakeRange(0, [attributedString length])];
view.attributedText = attributedString;
2020-03-24 11:06:30 +08:00
} else {
view.textAlignment = alignment;
}
2019-12-10 14:37:04 +08:00
} else if ([name isEqualToString:@"maxLines"]) {
view.numberOfLines = [prop integerValue];
2020-01-14 19:50:32 +08:00
} else if ([name isEqualToString:@"fontStyle"]) {
UIFont *font = view.font;
if (!font) {
font = [UIFont systemFontOfSize:[UIFont systemFontSize]];
}
UIFontDescriptor *fontDescriptor = nil;
if ([@"bold" isEqualToString:prop]) {
fontDescriptor = [font.fontDescriptor fontDescriptorWithSymbolicTraits:UIFontDescriptorTraitBold];
} else if ([@"italic" isEqualToString:prop]) {
fontDescriptor = [font.fontDescriptor fontDescriptorWithSymbolicTraits:UIFontDescriptorTraitItalic];
} else if ([@"bold_italic" isEqualToString:prop]) {
fontDescriptor = [font.fontDescriptor fontDescriptorWithSymbolicTraits:UIFontDescriptorTraitBold | UIFontDescriptorTraitItalic];
}
if (fontDescriptor) {
font = [UIFont fontWithDescriptor:fontDescriptor size:0];
}
view.font = font;
} else if ([name isEqualToString:@"maxWidth"]) {
2020-04-03 17:28:55 +08:00
view.doricLayout.maxWidth = [prop floatValue];
} else if ([name isEqualToString:@"maxHeight"]) {
2020-04-03 17:28:55 +08:00
view.doricLayout.maxHeight = [prop floatValue];
2020-03-13 15:00:42 +08:00
} else if ([name isEqualToString:@"font"]) {
NSString *iconfont = prop;
UIFont *font = [UIFont fontWithName:[iconfont stringByReplacingOccurrencesOfString:@".ttf" withString:@""]
size:view.font.pointSize];
2020-03-13 15:00:42 +08:00
view.font = font;
2020-03-24 11:06:30 +08:00
} else if ([name isEqualToString:@"lineSpacing"]) {
2020-04-13 17:41:17 +08:00
[[self ensureParagraphStyle] also:^(NSMutableParagraphStyle *it) {
[it setLineSpacing:[prop floatValue]];
[self reloadParagraphStyle];
}];
} else if ([name isEqualToString:@"underline"]) {
[[self ensureParagraphStyle] also:^(NSMutableParagraphStyle *it) {
self.underline = prop;
[self reloadParagraphStyle];
}];
} else if ([name isEqualToString:@"strikethrough"]) {
[[self ensureParagraphStyle] also:^(NSMutableParagraphStyle *it) {
self.strikethrough = prop;
[self reloadParagraphStyle];
}];
2020-04-14 11:44:22 +08:00
} else if ([name isEqualToString:@"htmlText"]) {
NSAttributedString *attStr = [[NSAttributedString alloc] initWithData:[prop dataUsingEncoding:NSUnicodeStringEncoding]
options:@{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType}
documentAttributes:nil
error:nil];
view.attributedText = attStr;
2020-04-27 18:46:39 +08:00
} else if ([name isEqualToString:@"truncateAt"]) {
[prop also:^(NSNumber *truncateAt) {
[[self ensureParagraphStyle] also:^(NSMutableParagraphStyle *it) {
switch (truncateAt.integerValue) {
case 1:
it.lineBreakMode = NSLineBreakByTruncatingMiddle;
break;
case 2:
it.lineBreakMode = NSLineBreakByTruncatingHead;
break;
case 3:
it.lineBreakMode = NSLineBreakByClipping;
break;
default:
it.lineBreakMode = NSLineBreakByTruncatingTail;
break;
}
[self reloadParagraphStyle];
}];
}];
2019-12-04 13:29:26 +08:00
} else {
[super blendView:view forPropName:name propValue:prop];
}
}
2020-04-13 17:41:17 +08:00
- (NSMutableParagraphStyle *)ensureParagraphStyle {
if (self.paragraphStyle == nil) {
self.paragraphStyle = [NSMutableParagraphStyle new];
2020-05-06 15:11:01 +08:00
self.paragraphStyle.alignment = NSTextAlignmentCenter;
2020-04-27 18:46:39 +08:00
self.paragraphStyle.lineBreakMode = NSLineBreakByTruncatingTail;
2020-04-13 17:41:17 +08:00
}
return self.paragraphStyle;
}
- (void)reloadParagraphStyle {
NSString *labelText = self.view.text ?: @"";
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:labelText];
2020-04-14 11:44:22 +08:00
if (self.view.attributedText) {
[attributedString setAttributedString:self.view.attributedText];
}
2020-04-13 17:41:17 +08:00
[attributedString addAttribute:NSParagraphStyleAttributeName value:self.paragraphStyle range:NSMakeRange(0, [labelText length])];
if (self.underline) {
[attributedString addAttribute:NSUnderlineStyleAttributeName value:self.underline range:NSMakeRange(0, [labelText length])];
}
if (self.strikethrough) {
[attributedString addAttribute:NSStrikethroughStyleAttributeName value:self.strikethrough range:NSMakeRange(0, [labelText length])];
}
self.view.attributedText = attributedString;
}
2019-12-04 13:29:26 +08:00
- (void)blend:(NSDictionary *)props {
[super blend:props];
[self.view.superview setNeedsLayout];
}
@end