Files
my_yuyin/TUIKit/TUIContact/BaseDataProvider/TUIGroupManageDataProvider.h
2025-09-22 18:48:29 +08:00

45 lines
1.4 KiB
Objective-C

//
// TUIGroupManageDataProvider.h
// TUIGroup
//
// Created by harvy on 2021/12/24.
// Copyright © 2023 Tencent. All rights reserved.
//
#import <Foundation/Foundation.h>
@class TUIUserModel;
NS_ASSUME_NONNULL_BEGIN
@protocol TUIGroupManageDataProviderDelegate <NSObject>
- (void)insertSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation;
- (void)reloadData;
- (void)showCoverViewWhenMuteAll:(BOOL)show;
- (void)insertRowsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;
- (void)reloadRowsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;
- (void)onError:(int)code desc:(NSString *)desc operate:(NSString *)operate;
@end
@interface TUIGroupManageDataProvider : NSObject
@property(nonatomic, assign) BOOL muteAll;
@property(nonatomic, copy) NSString *groupID;
@property(nonatomic, assign) BOOL currentGroupTypeSupportSettingAdmin;
@property(nonatomic, assign) BOOL currentGroupTypeSupportAddMemberOfBlocked;
@property(nonatomic, weak) id<TUIGroupManageDataProviderDelegate> delegate;
@property(nonatomic, strong, readonly) NSMutableArray *datas;
- (void)loadData;
- (void)mutedAll:(BOOL)mute completion:(void (^)(int, NSString *))completion;
- (void)mute:(BOOL)mute user:(TUIUserModel *)user;
- (void)updateMuteMembersFilterAdmins;
@end
NS_ASSUME_NONNULL_END