mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-08-22 02:38:45 -04:00
87 lines
3.8 KiB
Objective-C
87 lines
3.8 KiB
Objective-C
#import "Headers/SponsorSegmentView.h"
|
|
#import "Headers/Localization.h"
|
|
|
|
@implementation SponsorSegmentView
|
|
- (instancetype)initWithFrame:(CGRect)frame sponsorSegment:(SponsorSegment *)segment editable:(BOOL)editable {
|
|
self = [super initWithFrame:frame];
|
|
if (self) {
|
|
self.sponsorSegment = segment;
|
|
self.editable = editable;
|
|
|
|
NSString *category;
|
|
if ([segment.category isEqualToString:@"sponsor"]) {
|
|
category = LOC(@"Sponsor");
|
|
}
|
|
else if ([segment.category isEqualToString:@"intro"]) {
|
|
category = LOC(@"Intermission");
|
|
}
|
|
else if ([segment.category isEqualToString:@"outro"]) {
|
|
category = LOC(@"Outro");
|
|
}
|
|
else if ([segment.category isEqualToString:@"interaction"]) {
|
|
category = LOC(@"Interaction");
|
|
}
|
|
else if ([segment.category isEqualToString:@"selfpromo"]) {
|
|
category = LOC(@"SelfPromo");
|
|
}
|
|
else if ([segment.category isEqualToString:@"music_offtopic"]) {
|
|
category = LOC(@"Non-Music");
|
|
}
|
|
self.categoryLabel = [[UILabel alloc] initWithFrame:self.frame];
|
|
self.segmentLabel = [[UILabel alloc] initWithFrame:self.frame];
|
|
self.categoryLabel.text = category;
|
|
|
|
NSInteger startSeconds = lroundf(segment.startTime);
|
|
NSInteger startHours = startSeconds / 3600;
|
|
NSInteger startMinutes = (startSeconds - (startHours * 3600)) / 60;
|
|
startSeconds = startSeconds %60;
|
|
NSString *startTime;
|
|
if (startHours >= 1) {
|
|
startTime = [NSString stringWithFormat:@"%ld:%02ld:%02ld", startHours, startMinutes, startSeconds];
|
|
}
|
|
else {
|
|
startTime = [NSString stringWithFormat:@"%ld:%02ld", startMinutes, startSeconds];
|
|
}
|
|
|
|
NSInteger endSeconds = lroundf(segment.endTime);
|
|
NSInteger endHours = endSeconds / 3600;
|
|
NSInteger endMinutes = (endSeconds - (endHours * 3600)) / 60;
|
|
endSeconds = endSeconds %60;
|
|
NSString *endTime;
|
|
if (endHours >= 1) {
|
|
endTime = [NSString stringWithFormat:@"%ld:%02ld:%02ld", endHours, endMinutes, endSeconds];
|
|
}
|
|
else {
|
|
endTime = [NSString stringWithFormat:@"%ld:%02ld", endMinutes, endSeconds];
|
|
}
|
|
|
|
self.segmentLabel.text = [NSString stringWithFormat:@"%@ %@ %@ %@", LOC(@"From"), startTime, LOC(@"to"), endTime];
|
|
|
|
[self addSubview:self.categoryLabel];
|
|
self.categoryLabel.adjustsFontSizeToFitWidth = YES;
|
|
self.categoryLabel.font = [UIFont systemFontOfSize:12];
|
|
self.categoryLabel.textAlignment = NSTextAlignmentCenter;
|
|
self.categoryLabel.translatesAutoresizingMaskIntoConstraints = NO;
|
|
|
|
[self addSubview:self.segmentLabel];
|
|
self.segmentLabel.adjustsFontSizeToFitWidth = YES;
|
|
self.segmentLabel.font = [UIFont systemFontOfSize:12];
|
|
self.segmentLabel.textAlignment = NSTextAlignmentCenter;
|
|
self.segmentLabel.translatesAutoresizingMaskIntoConstraints = NO;
|
|
|
|
[self.segmentLabel.widthAnchor constraintEqualToAnchor:self.widthAnchor].active = YES;
|
|
[self.segmentLabel.heightAnchor constraintEqualToConstant:self.frame.size.height/2].active = YES;
|
|
|
|
[self.categoryLabel.widthAnchor constraintEqualToAnchor:self.widthAnchor].active = YES;
|
|
[self.categoryLabel.heightAnchor constraintEqualToConstant:self.frame.size.height/2].active = YES;
|
|
[self.categoryLabel.topAnchor constraintEqualToAnchor:self.segmentLabel.bottomAnchor].active = YES;
|
|
|
|
self.backgroundColor = UIColor.systemGray4Color;
|
|
self.layer.cornerRadius = 10;
|
|
self.segmentLabel.layer.cornerRadius = 10;
|
|
self.categoryLabel.layer.cornerRadius = 10;
|
|
}
|
|
return self;
|
|
}
|
|
@end
|