cdts/xdts-ios 3/TreeHole/CYHResetCode/CYH/QMUIKit/QMUIComponents/ToastView/QMUIToastView.m

362 lines
11 KiB
Mathematica
Raw Normal View History

2023-07-27 09:20:00 +08:00
/**
* Tencent is pleased to support the open source community by making QMUI_iOS available.
* Copyright (C) 2016-2021 THL A29 Limited, a Tencent company. All rights reserved.
* Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
* http://opensource.org/licenses/MIT
* 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.
*/
//
// QMUIToastView.m
// qmui
//
// Created by QMUI Team on 2016/12/11.
//
#import "QMUIToastView.h"
#import "QMUICore.h"
#import "QMUIToastAnimator.h"
#import "QMUIToastContentView.h"
#import "QMUIToastBackgroundView.h"
#import "QMUIKeyboardManager.h"
#import "UIView+QMUI.h"
static NSMutableArray <QMUIToastView *> *kToastViews = nil;
@interface QMUIToastView ()
@property(nonatomic, weak) NSTimer *hideDelayTimer;
@end
@implementation QMUIToastView
#pragma mark -
- (instancetype)initWithFrame:(CGRect)frame {
NSAssert(NO, @"请使用initWithView:初始化");
return [self initWithView:[[UIView alloc] init]];
}
- (instancetype)initWithCoder:(NSCoder *)aDecoder {
NSAssert(NO, @"请使用initWithView:初始化");
return [self initWithView:[[UIView alloc] init]];
}
- (nonnull instancetype)initWithView:(nonnull UIView *)view {
NSAssert(view, @"view不能为空");
if (self = [super initWithFrame:view.bounds]) {
_parentView = view;
[self didInitialize];
}
return self;
}
- (void)dealloc {
[self removeNotifications];
if ([kToastViews containsObject:self]) {
[kToastViews removeObject:self];
}
}
- (void)didInitialize {
self.tintColor = UIColorWhite;
self.toastPosition = QMUIToastViewPositionCenter;
// backgroundViewcontentView
self.backgroundView = [self defaultBackgrondView];
self.contentView = [self defaultContentView];
self.opaque = NO;
self.alpha = 0.0;
self.backgroundColor = UIColorClear;
self.layer.allowsGroupOpacity = NO;
_maskView = [[UIView alloc] init];
self.maskView.backgroundColor = UIColorClear;
[self addSubview:self.maskView];
[self registerNotifications];
}
- (void)didMoveToSuperview {
if (!kToastViews) {
kToastViews = [[NSMutableArray alloc] init];
}
if (self.superview) {
// show
if (![kToastViews containsObject:self]) {
[kToastViews addObject:self];
}
} else {
// hide
if ([kToastViews containsObject:self]) {
[kToastViews removeObject:self];
}
}
}
- (void)removeFromSuperview {
[super removeFromSuperview];
_parentView = nil;
}
- (QMUIToastAnimator *)defaultAnimator {
QMUIToastAnimator *toastAnimator = [[QMUIToastAnimator alloc] initWithToastView:self];
return toastAnimator;
}
- (UIView *)defaultBackgrondView {
QMUIToastBackgroundView *backgroundView = [[QMUIToastBackgroundView alloc] init];
return backgroundView;
}
- (UIView *)defaultContentView {
QMUIToastContentView *contentView = [[QMUIToastContentView alloc] init];
return contentView;
}
- (void)setBackgroundView:(UIView *)backgroundView {
if (self.backgroundView) {
[self.backgroundView removeFromSuperview];
_backgroundView = nil;
}
_backgroundView = backgroundView;
self.backgroundView.alpha = 0.0;
[self addSubview:self.backgroundView];
[self setNeedsLayout];
}
- (void)setContentView:(UIView *)contentView {
if (self.contentView) {
[self.contentView removeFromSuperview];
_contentView = nil;
}
_contentView = contentView;
self.contentView.alpha = 0.0;
[self addSubview:self.contentView];
[self setNeedsLayout];
}
- (void)layoutSubviews {
[super layoutSubviews];
self.frame = self.parentView.bounds;
self.maskView.frame = self.bounds;
CGFloat contentWidth = CGRectGetWidth(self.parentView.bounds);
CGFloat contentHeight = CGRectGetHeight(self.parentView.bounds);
UIEdgeInsets marginInsets = UIEdgeInsetsConcat(self.marginInsets, self.parentView.safeAreaInsets);
CGFloat limitWidth = contentWidth - UIEdgeInsetsGetHorizontalValue(marginInsets);
CGFloat limitHeight = contentHeight - UIEdgeInsetsGetVerticalValue(marginInsets);
if ([QMUIKeyboardManager isKeyboardVisible]) {
// 使 Toast
CGRect keyboardFrame = [QMUIKeyboardManager currentKeyboardFrame];
CGRect parentViewRect = [[QMUIKeyboardManager keyboardWindow] convertRect:self.parentView.frame fromView:self.parentView.superview];
CGRect intersectionRect = CGRectIntersection(keyboardFrame, parentViewRect);
CGRect overlapRect = CGRectIsValidated(intersectionRect) ? CGRectFlatted(intersectionRect) : CGRectZero;
contentHeight -= CGRectGetHeight(overlapRect);
}
if (self.contentView) {
CGSize contentViewSize = [self.contentView sizeThatFits:CGSizeMake(limitWidth, limitHeight)];
contentViewSize.width = MIN(contentViewSize.width, limitWidth);
contentViewSize.height = MIN(contentViewSize.height, limitHeight);
CGFloat contentViewX = MAX(marginInsets.left, (contentWidth - contentViewSize.width) / 2) + self.offset.x;
CGFloat contentViewY = MAX(marginInsets.top, (contentHeight - contentViewSize.height) / 2) + self.offset.y;
if (self.toastPosition == QMUIToastViewPositionTop) {
contentViewY = marginInsets.top + self.offset.y;
} else if (self.toastPosition == QMUIToastViewPositionBottom) {
contentViewY = contentHeight - contentViewSize.height - marginInsets.bottom + self.offset.y;
}
CGRect contentRect = CGRectFlatMake(contentViewX, contentViewY, contentViewSize.width, contentViewSize.height);
self.contentView.qmui_frameApplyTransform = contentRect;
[self.contentView setNeedsLayout];
}
if (self.backgroundView) {
// backgroundViewframecontentViewcontentViewsubviewsbackgroundViewpaddingcontentView
self.backgroundView.frame = self.contentView.frame;
}
}
#pragma mark -
- (void)registerNotifications {
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(statusBarOrientationDidChange:) name:UIApplicationDidChangeStatusBarOrientationNotification object:nil];
}
- (void)removeNotifications {
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIApplicationDidChangeStatusBarOrientationNotification object:nil];
}
- (void)statusBarOrientationDidChange:(NSNotification *)notification {
if (!self.parentView) {
return;
}
[self setNeedsLayout];
[self layoutIfNeeded];
}
#pragma mark - Show and Hide
- (void)showAnimated:(BOOL)animated {
// showlayouttiplayout
[self setNeedsLayout];
[self.hideDelayTimer invalidate];
self.alpha = 1.0;
if (self.willShowBlock) {
self.willShowBlock(self.parentView, animated);
}
if (animated) {
if (!self.toastAnimator) {
self.toastAnimator = [self defaultAnimator];
}
if (self.toastAnimator) {
__weak __typeof(self)weakSelf = self;
[self.toastAnimator showWithCompletion:^(BOOL finished) {
if (weakSelf.didShowBlock) {
weakSelf.didShowBlock(weakSelf.parentView, animated);
}
}];
}
} else {
self.backgroundView.alpha = 1.0;
self.contentView.alpha = 1.0;
if (self.didShowBlock) {
self.didShowBlock(self.parentView, animated);
}
}
}
- (void)hideAnimated:(BOOL)animated {
if (self.willHideBlock) {
self.willHideBlock(self.parentView, animated);
}
if (animated) {
if (!self.toastAnimator) {
self.toastAnimator = [self defaultAnimator];
}
if (self.toastAnimator) {
__weak __typeof(self)weakSelf = self;
[self.toastAnimator hideWithCompletion:^(BOOL finished) {
[weakSelf didHideWithAnimated:animated];
}];
}
} else {
self.backgroundView.alpha = 0.0;
self.contentView.alpha = 0.0;
[self didHideWithAnimated:animated];
}
}
- (void)didHideWithAnimated:(BOOL)animated {
if (self.didHideBlock) {
self.didHideBlock(self.parentView, animated);
}
[self.hideDelayTimer invalidate];
self.alpha = 0.0;
if (self.removeFromSuperViewWhenHide) {
[self removeFromSuperview];
}
}
- (void)hideAnimated:(BOOL)animated afterDelay:(NSTimeInterval)delay {
NSTimer *timer = [NSTimer timerWithTimeInterval:delay target:self selector:@selector(handleHideTimer:) userInfo:@(animated) repeats:NO];
[[NSRunLoop currentRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];
self.hideDelayTimer = timer;
}
- (void)handleHideTimer:(NSTimer *)timer {
[self hideAnimated:[timer.userInfo boolValue]];
}
#pragma mark - UIAppearance
- (void)setOffset:(CGPoint)offset {
_offset = offset;
[self setNeedsLayout];
}
- (void)setMarginInsets:(UIEdgeInsets)marginInsets {
_marginInsets = marginInsets;
[self setNeedsLayout];
}
@end
@interface QMUIToastView (UIAppearance)
@end
@implementation QMUIToastView (UIAppearance)
+ (void)initialize {
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
[self setDefaultAppearance];
});
}
+ (void)setDefaultAppearance {
QMUIToastView *appearance = [QMUIToastView appearance];
appearance.offset = CGPointZero;
appearance.marginInsets = UIEdgeInsetsMake(20, 20, 20, 20);
}
@end
@implementation QMUIToastView (ToastTool)
+ (BOOL)hideAllToastInView:(UIView *)view animated:(BOOL)animated {
NSArray *toastViews = [self allToastInView:view];
BOOL result = NO;
for (QMUIToastView *toastView in toastViews) {
result = YES;
toastView.removeFromSuperViewWhenHide = YES;
[toastView hideAnimated:animated];
}
return result;
}
+ (nullable __kindof UIView *)toastInView:(UIView *)view {
if (kToastViews.count <= 0) {
return nil;
}
UIView *toastView = kToastViews.lastObject;
if ([toastView isKindOfClass:self]) {
return toastView;
}
return nil;
}
+ (nullable NSArray <QMUIToastView *> *)allToastInView:(UIView *)view {
if (!view) {
return kToastViews.count > 0 ? [kToastViews mutableCopy] : nil;
}
NSMutableArray *toastViews = [[NSMutableArray alloc] init];
for (UIView *toastView in kToastViews) {
if (toastView.superview == view && [toastView isKindOfClass:self]) {
[toastViews addObject:toastView];
}
}
return toastViews.count > 0 ? [toastViews mutableCopy] : nil;
}
@end