| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- //
- // DeviceNodePopupView.m
- // kneet2
- //
- // Created by Jason Lee on 11/5/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDObject.h"
- #import "RequestHandler.h"
- #import "JDJSONModel.h"
- #import "CustomLabel.h"
- #import "CustomTextField.h"
- #import "CustomTableView.h"
- #import "CustomImageView.h"
- #import "CustomButton.h"
- #import "CustomCheckBox.h"
- #import "ValidateUtil.h"
- #import "ImageUtil.h"
- #import "UIImageView+WebCache.h"
- #import "DeviceNodePopupView.h"
- #import "CustomRadioGroup.h"
- #import "CommandClassControlNodeView.h"
- @implementation DeviceNodePopupTableViewCell
- @end
- @interface DeviceNodePopupView () <UITableViewDataSource, UITableViewDelegate, CustomCheckBoxDelegate> {
- CustomRadioReusableGroup *_rgroup;
-
- BOOL _isNotFirstLoading;
- UIImage *_bgCellImage1, *_bgCellImage2;
-
- NSMutableArray<ItemModel> *_checkedItems;
- }
- @end
- @implementation DeviceNodePopupView
- - (id)initFromNib {
- for (UIView *view in [CommonUtil nibViews:@"DeviceNodePopupView"]) {
- if ([view isKindOfClass:[DeviceNodePopupView class]]) {
- self = (DeviceNodePopupView *)view;
- //XIB의 경우, 현재 화면 사이즈로 맞춰줘야 함.
- self.frame = [UIScreen mainScreen].bounds;
-
- [self initTableViewAsDefaultStyle:_tableView];
-
- UINib *nib = [UINib nibWithNibName:@"DeviceNodePopupTableViewCell" bundle:nil];
- [_tableView registerNib:nib forCellReuseIdentifier:@"NodeCellIdentifier"];
-
- //set radio group
- _rgroup = [[CustomRadioReusableGroup alloc] init];
- _rgroup.tableView = _tableView;
-
-
- //Localization
- [self.btnConfirm setTitle:NSLocalizedString(@"확인", @"확인") forState:UIControlStateNormal];
- [self.btnCancel setTitle:NSLocalizedString(@"취소", @"취소") forState:UIControlStateNormal];
-
- UIEdgeInsets insets = UIEdgeInsetsMake(4, 4, 4, 4);
- _bgCellImage1 = [ImageUtil resizableImageWithCapInsets:insets resizingMode:UIImageResizingModeStretch img:[UIImage imageNamed:@"tp_01_img_list_bg_01"]];
- _bgCellImage2 = [ImageUtil resizableImageWithCapInsets:insets resizingMode:UIImageResizingModeStretch img:[UIImage imageNamed:@"tp_01_img_list_bg_02"]];
- }
- }
- return self;
- }
- - (void)initTableViewAsDefaultStyle:(CustomTableView *)tableView {
- tableView.dataSource = self;
- tableView.delegate = self;
-
- tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
- tableView.backgroundColor = [UIColor clearColor];
-
- tableView.tableFooterView = [[UIView alloc] init]; //this call table events;
- }
- - (void)didMoveToSuperview {
- }
- - (void)setRefDevice:(ItemModel *)refDevice {
- _refDevice = refDevice;
-
- self.lblTitle.text = _refDevice.sourceName;
- [self.imgvDevice sd_setImageWithURL:[NSURL URLWithString:_refDevice.imageFileName] placeholderImage:nil options:SDWebImageRefreshCached];
-
- [_tableView reloadData];
- }
- - (NSArray<ItemModel> *)selectedItems {
- NSArray<ItemModel> *items = nil;
-
- if ([_typeCode isEqualToString:ksItemTypeCodeAction]) {
- items = _checkedItems;
- } else {
- items = (NSArray<ItemModel> *)@[_rgroup.valueForChecked];
- }
- return items;
- }
- - (ItemSubModel *)selectedNode {
- return _rgroup.valueForChecked;
- }
- #pragma mark - Main Logic
- #pragma mark - UITableView DataSource & Delegate
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
- return 1;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return _refDevice.subItems ? _refDevice.subItems.count : 0;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
- CGFloat height = 110.0f;
-
- return height;
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
-
- ItemSubModel *subItem = _refDevice.subItems[indexPath.row];
-
- DeviceNodePopupTableViewCell *tcell = (DeviceNodePopupTableViewCell *)[tableView dequeueReusableCellWithIdentifier:@"NodeCellIdentifier"];
-
- tcell.lblNodeName.text = subItem.sourceSubName;
-
- //1.set node
-
- //뷰를 초기화함.
- [[tcell.controlContainer subviews] enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
- UIView *subview = (UIView *)obj;
- [subview removeFromSuperview];
- }];
-
- CommandClassControlNodeView *controlView = [CommandClassControlNodeView viewForCommandClass:subItem.cmdclsType];
- controlView.subItem = subItem;
-
- tcell.controlContainer.hidden = !controlView;
- if (!tcell.controlContainer.hidden) {
- UIView *superview = tcell.controlContainer;
- [superview addSubview:controlView];
-
- [controlView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.size.mas_equalTo(controlView.frame.size);
- make.center.equalTo(superview);
- }];
- }
-
-
- if ([_typeCode isEqualToString:ksItemTypeCodeTrigger] || [_typeCode isEqualToString:ksItemTypeCodeCondition]) {//트리거 또는 컨디션
- tcell.chkSelect.hidden = YES;
-
- tcell.rdoSelect.value = subItem;
- if (indexPath.row == 0 && !_isNotFirstLoading) {
- _isNotFirstLoading = YES;
- tcell.rdoSelect.checked = YES;
- } else {
- tcell.rdoSelect.checked = [tcell.rdoSelect getRadioStatusFromValue];
- }
-
- if (!_isModifyMode) {
-
- }
- tcell.rdoSelect.enabled = _isModifyMode;
-
- [_rgroup addRadioButton:tcell.rdoSelect];
-
- } else if ([_typeCode isEqualToString:ksItemTypeCodeAction]) {//액션
- tcell.rdoSelect.hidden = YES;
-
- tcell.chkSelect.delegate = self;
- tcell.chkSelect.value = subItem;
- tcell.chkSelect.checked = [tcell.chkSelect getCheckStatusFromValue];
- }
-
- return tcell;
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- [tableView deselectRowAtIndexPath:indexPath animated:YES];
-
- DeviceNodePopupTableViewCell *tcell = (DeviceNodePopupTableViewCell *)[self tableView:tableView cellForRowAtIndexPath:indexPath];
-
- if ([_typeCode isEqualToString:ksItemTypeCodeTrigger] || [_typeCode isEqualToString:ksItemTypeCodeCondition]) {
- [_rgroup someRadioButtonTouched:tcell.rdoSelect];
-
- } else if ([_typeCode isEqualToString:ksItemTypeCodeAction]) {
- [tcell.chkSelect checkBoxClicked];
-
- }
- [_tableView reloadData];
- }
- - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
-
- // Remove seperator inset
- if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
- [cell setSeparatorInset:UIEdgeInsetsZero];
- }
-
- // Prevent the cell from inheriting the Table View's margin settings
- if ([cell respondsToSelector:@selector(setPreservesSuperviewLayoutMargins:)]) {
- [cell setPreservesSuperviewLayoutMargins:NO];
- }
-
- // Explictly set your cell's layout margins
- if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
- [cell setLayoutMargins:UIEdgeInsetsZero];
- }
- }
- #pragma mark - CustomCheckBox Delegate
- - (void)didCheckBoxClicked:(id)sender {
- [_tableView reloadData];
- }
- #pragma mark - UI Events
- - (IBAction)btnConfirmTouched:(id)sender {
-
- //validate
- if ([_typeCode isEqualToString:ksItemTypeCodeAction]) {//디바이스 멀티
-
- if ([_typeCode isEqualToString:ksItemTypeCodeAction]) {//디바이스 멀티 BOOL isSelected = NO;
-
- _checkedItems = (NSMutableArray<ItemModel> *)[_refDevice.subItems matchedArrayByObjectName:ksCustomCheckBoxStatus condition:YES];
- if (!_checkedItems || !_checkedItems.count) {
- [[JDFacade facade] alert:NSLocalizedString(@"선택된 항목이 없습니다", @"선택된 항목이 없습니다")];
- return;
- }
- }
- } else {//동일한 노드의 액션이 이미 선택되었는지 체크,
-
- ItemSubModel *subItem = _rgroup.valueForChecked;
-
- CmdClsValueModel *cmdclsValue = nil;
- for (cmdclsValue in subItem.cmdclsValueList) {
- if (!_isModifyMode && cmdclsValue.isSelected) {
- [[JDFacade facade] toast:@"이미 추가되어 있습니다"];
- return;
- }
-
- cmdclsValue.isSelected = [[JDFacade facade] getRadioButtonStatus:cmdclsValue];
- }
- }
-
- [super btnConfirmTouched:sender];
- }
- @end
|