[RxSwift] RxSwiftClone: UITableView & RxDataSources

Junyoung Park·2022년 12월 23일
0

RxSwift

목록 보기
11/25
post-thumbnail

[Part-3] Model View ViewModel(MVVM) pattern using RxSwift 2022 | RxDataSources with CRUD Operation

RxSwiftClone: UITableView & RxDataSources

구현 목표

  • RxDataSources를 통한 테이블 뷰 UI 구현

구현 태스크

  • RxDataSources을 통한 테이블 뷰 바인딩
  • 인덱스 패스를 통한 섹션 별 데이터 핸들링

핵심 코드

    private func bind() {
        tableView
            .rx
            .setDelegate(self)
            .disposed(by: disposeBag)
        let longPressGesture = UILongPressGestureRecognizer(target: self, action: #selector(didLongPressed(recognizer:)))
        tableView.addGestureRecognizer(longPressGesture)
        
        let dataSource = RxTableViewSectionedReloadDataSource<SectionModel<String, UserModel>> { _, tableView, indexPath, item in
            guard let cell = tableView.dequeueReusableCell(withIdentifier: UserTableViewCell.identifier, for: indexPath) as? UserTableViewCell else { fatalError() }
            cell.configure(with: item)
            return cell
        } titleForHeaderInSection: { dataSource, sectionIndex in
            return dataSource[sectionIndex].model
        }
        viewModel
            .users
            .bind(to: tableView.rx.items(dataSource: dataSource))
            .disposed(by: disposeBag)
        tableView
            .rx
            .itemDeleted
            .subscribe { [weak self] indexPath in
                self?.viewModel.delete(indexPath: indexPath)
            }
            .disposed(by: disposeBag)
    }
  • 기존의 bindto 대상이 tableView.rx.items를 커스텀 데이터 소스(RxTableViewSectionedReloadDataSource)를 통해 이니셜라이즈된 것으로 변경
    let users: BehaviorSubject = .init(value: [SectionModel(model: "", items: [UserModel]())])
  • 섹션 모델이 RxDataSources가 제공하는 SectionModel을 통해 구현
func edit(title: String, indexPath: IndexPath) {
        guard var sections = try? users.value() else { return }
        var currentSection = sections[indexPath.section]
        currentSection.items[indexPath.row].title = title
        sections[indexPath.section] = currentSection
        users.on(.next(sections))
    }
  • 데이터 변경 로직은 상동

구현 화면

Diffable DataSource와 UI를 그리는 로직이 비슷한 것처럼 보인다.

profile
JUST DO IT

0개의 댓글