diff --git a/14th-team5-iOS/App/Sources/Presentation/Camera/CameraDisplayViewController.swift b/14th-team5-iOS/App/Sources/Presentation/Camera/CameraDisplayViewController.swift index 9d2e26e59..86dbcdbfb 100644 --- a/14th-team5-iOS/App/Sources/Presentation/Camera/CameraDisplayViewController.swift +++ b/14th-team5-iOS/App/Sources/Presentation/Camera/CameraDisplayViewController.swift @@ -256,9 +256,9 @@ public final class CameraDisplayViewController: BaseViewController 8 } .distinctUntilChanged() + .debounce(RxInterval._600milliseconds, scheduler: RxScheduler.main) .map { _ in Reactor.Action.showInputTextError } .bind(to: reactor.action) .disposed(by: disposeBag) @@ -269,18 +269,9 @@ public final class CameraDisplayViewController: BaseViewController 8 } - .debounce(RxInterval._600milliseconds, scheduler: RxScheduler.main) - .map { _ in Reactor.Action.showInputTextError } - .bind(to: reactor.action) - .disposed(by: disposeBag) - displayEditTextField.rx .text.orEmpty .filter { !$0.contains(" ")} - .debounce(RxInterval._600milliseconds, scheduler: RxScheduler.main) .scan("") { previous, new -> String in if new.count > 8 { return previous diff --git a/14th-team5-iOS/App/Sources/Presentation/Camera/Reactor/CameraDisplayViewReactor.swift b/14th-team5-iOS/App/Sources/Presentation/Camera/Reactor/CameraDisplayViewReactor.swift index 739dbfa36..85eda3314 100644 --- a/14th-team5-iOS/App/Sources/Presentation/Camera/Reactor/CameraDisplayViewReactor.swift +++ b/14th-team5-iOS/App/Sources/Presentation/Camera/Reactor/CameraDisplayViewReactor.swift @@ -141,7 +141,7 @@ public final class CameraDisplayViewReactor: Reactor { } ) case .didTapArchiveButton: - let config = BBToastConfiguration(direction: .bottom(yOffset: -360), animationTime: 1.0) + let config = BBToastConfiguration(direction: .bottom(yOffset: -20), animationTime: 1.0) let viewConfig = BBToastViewConfiguration(minWidth: 207) provider.bbToastService.show( image:DesignSystemAsset.camera.image.withTintColor(DesignSystemAsset.gray300.color), diff --git a/14th-team5-iOS/Core/Sources/Bibbi/BBCommons/ShareView/BibbiMissionView.swift b/14th-team5-iOS/App/Sources/Presentation/Camera/View/BibbiMissionView.swift similarity index 93% rename from 14th-team5-iOS/Core/Sources/Bibbi/BBCommons/ShareView/BibbiMissionView.swift rename to 14th-team5-iOS/App/Sources/Presentation/Camera/View/BibbiMissionView.swift index 892f21503..01b12053b 100644 --- a/14th-team5-iOS/Core/Sources/Bibbi/BBCommons/ShareView/BibbiMissionView.swift +++ b/14th-team5-iOS/App/Sources/Presentation/Camera/View/BibbiMissionView.swift @@ -1,17 +1,18 @@ // // BibbiMissionView.swift -// Core +// App // -// Created by Kim dohyun on 5/1/24. +// Created by Kim dohyun on 10/9/24. // import UIKit +import Core import DesignSystem import SnapKit -public final class BibbiMissionView: UIView { +final class BibbiMissionView: UIView { public let missionBadgeView: UIImageView = UIImageView() public let missionTitleView: BBLabel = BBLabel(.body2Bold, textAlignment: .center, textColor: .mainYellow) diff --git a/14th-team5-iOS/App/Sources/Presentation/Content/WebContentViewController.swift b/14th-team5-iOS/App/Sources/Presentation/Content/WebContentViewController.swift index 59abea96c..05fc51cc1 100644 --- a/14th-team5-iOS/App/Sources/Presentation/Content/WebContentViewController.swift +++ b/14th-team5-iOS/App/Sources/Presentation/Content/WebContentViewController.swift @@ -71,13 +71,6 @@ public class WebContentViewController: BaseViewController { .bind(to: webView.rx.loadURL) .disposed(by: disposeBag) - reactor.state - .compactMap { $0.url?.lastPathComponent == "privacy" ? "개인정보처리방침" : "이용 약관" } - .distinctUntilChanged() - .withUnretained(self) - .bind(onNext: { $0.0.navigationBarView.setNavigationTitle(title: $0.1) }) - .disposed(by: disposeBag) - reactor.state .map { $0.isLoading } .distinctUntilChanged() diff --git a/14th-team5-iOS/App/Sources/Presentation/Management/ViewController/FamilyNameSettingViewController.swift b/14th-team5-iOS/App/Sources/Presentation/Management/ViewController/FamilyNameSettingViewController.swift index 9db1005bb..76211340f 100644 --- a/14th-team5-iOS/App/Sources/Presentation/Management/ViewController/FamilyNameSettingViewController.swift +++ b/14th-team5-iOS/App/Sources/Presentation/Management/ViewController/FamilyNameSettingViewController.swift @@ -36,12 +36,12 @@ final class FamilyNameSettingViewController: BBNavigationViewController