Compare commits
2 Commits
master
...
uikitcore_
| Author | SHA1 | Date |
|---|---|---|
|
|
84bb0f0d44 | |
|
|
2c36bb263c |
|
|
@ -1,2 +0,0 @@
|
||||||
---
|
|
||||||
BUNDLE_PATH: ".gem"
|
|
||||||
|
|
@ -1,96 +0,0 @@
|
||||||
#!/usr/bin/env python3
|
|
||||||
|
|
||||||
import sys, re, os
|
|
||||||
from subprocess import check_output
|
|
||||||
from sys import getdefaultencoding
|
|
||||||
|
|
||||||
getdefaultencoding() # utf-8
|
|
||||||
|
|
||||||
valid_commit_style = '^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style)(\(\S+\))?\!?: .+'
|
|
||||||
merge_commit_style = '^(m|M)erge .+'
|
|
||||||
|
|
||||||
success_title = 'SUCCESS'
|
|
||||||
success_color = '92m'
|
|
||||||
|
|
||||||
error_title = 'ERROR'
|
|
||||||
error_message = 'Incorrect commit message style!\nThe commit pattern:'
|
|
||||||
error_commit_pattern = ' type(scope): message | type: message \n'
|
|
||||||
error_color = '91m'
|
|
||||||
|
|
||||||
breaking_changes_message = 'If commit include Breaking changes use ! after type or scope:'
|
|
||||||
colored_breaking_changes_message = 'If commit include \033[91mBreaking changes\033[00m use \033[91m!\033[00m after type or scope:'
|
|
||||||
breaking_changes_commit_pattern = ' type(scope)!: message | type!: message \n'
|
|
||||||
|
|
||||||
available_types_message = 'Available commit types:'
|
|
||||||
available_commit_types = ['build: Changes that affect the build system or external dependencies',
|
|
||||||
'ci: Changes to our CI configuration files and scripts',
|
|
||||||
'docs: Documentation only changes',
|
|
||||||
'feat: A new feature. Correlates with MINOR in SemVer',
|
|
||||||
'fix: A bug fix. Correlates with PATCH in SemVer',
|
|
||||||
'perf: A code change that improves performance',
|
|
||||||
'refactor: A code change that neither fixes',
|
|
||||||
'revert: A revert to previous commit',
|
|
||||||
'style: Changes that do not affect the meaning of the code (white-space, formatting, etc)']
|
|
||||||
|
|
||||||
is_GUI_client = False
|
|
||||||
|
|
||||||
def print_result_header(result_title, color):
|
|
||||||
if not is_GUI_client:
|
|
||||||
print("[\033[96mcommit lint\033[00m] [\033[{}{}\033[00m]\n".format(color, result_title))
|
|
||||||
|
|
||||||
def print_pattern(pattern):
|
|
||||||
if is_GUI_client:
|
|
||||||
print(pattern)
|
|
||||||
else:
|
|
||||||
print("\033[96m{}\033[00m".format(pattern))
|
|
||||||
|
|
||||||
def print_error_message():
|
|
||||||
print_result_header(error_title, error_color)
|
|
||||||
|
|
||||||
print(error_message)
|
|
||||||
print_pattern(error_commit_pattern)
|
|
||||||
|
|
||||||
if is_GUI_client:
|
|
||||||
print(breaking_changes_message)
|
|
||||||
else:
|
|
||||||
print(colored_breaking_changes_message)
|
|
||||||
|
|
||||||
print_pattern(breaking_changes_commit_pattern)
|
|
||||||
print_available_commit_types()
|
|
||||||
|
|
||||||
def print_available_commit_types():
|
|
||||||
print(available_types_message)
|
|
||||||
|
|
||||||
for commit_type in available_commit_types:
|
|
||||||
print(" - %s" %commit_type)
|
|
||||||
|
|
||||||
def write_commit_message(fh, commit_msg):
|
|
||||||
fh.seek(0, 0)
|
|
||||||
fh.write(commit_msg)
|
|
||||||
|
|
||||||
def lint_commit_message(fh, commit_msg):
|
|
||||||
is_merge_commit = re.findall(merge_commit_style, commit_msg)
|
|
||||||
is_valid_commit = re.findall(valid_commit_style, commit_msg)
|
|
||||||
|
|
||||||
if is_valid_commit or is_merge_commit:
|
|
||||||
print_result_header(success_title, success_color)
|
|
||||||
write_commit_message(fh, commit_msg)
|
|
||||||
sys.exit(os.EX_OK)
|
|
||||||
else:
|
|
||||||
print_error_message()
|
|
||||||
sys.exit(os.EX_DATAERR)
|
|
||||||
|
|
||||||
def run_script():
|
|
||||||
commit_msg_filepath = sys.argv[1]
|
|
||||||
|
|
||||||
with open(commit_msg_filepath, 'r+') as fh:
|
|
||||||
commit_msg = fh.read()
|
|
||||||
lint_commit_message(fh, commit_msg)
|
|
||||||
|
|
||||||
try:
|
|
||||||
sys.stdin = open("/dev/tty", "r")
|
|
||||||
is_GUI_client = False
|
|
||||||
except:
|
|
||||||
is_GUI_client = True
|
|
||||||
|
|
||||||
run_script()
|
|
||||||
|
|
@ -1,18 +1,16 @@
|
||||||
|
# ================
|
||||||
|
# Swift.gitignore
|
||||||
|
# ================
|
||||||
|
|
||||||
# Xcode
|
# Xcode
|
||||||
#
|
#
|
||||||
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
||||||
|
|
||||||
## User settings
|
## Build generated
|
||||||
xcuserdata/
|
|
||||||
|
|
||||||
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
|
|
||||||
*.xcscmblueprint
|
|
||||||
*.xccheckout
|
|
||||||
|
|
||||||
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
|
|
||||||
build/
|
build/
|
||||||
DerivedData/
|
DerivedData
|
||||||
*.moved-aside
|
|
||||||
|
## Various settings
|
||||||
*.pbxuser
|
*.pbxuser
|
||||||
!default.pbxuser
|
!default.pbxuser
|
||||||
*.mode1v3
|
*.mode1v3
|
||||||
|
|
@ -21,14 +19,17 @@ DerivedData/
|
||||||
!default.mode2v3
|
!default.mode2v3
|
||||||
*.perspectivev3
|
*.perspectivev3
|
||||||
!default.perspectivev3
|
!default.perspectivev3
|
||||||
|
xcuserdata
|
||||||
|
|
||||||
|
## Other
|
||||||
|
*.xccheckout
|
||||||
|
*.moved-aside
|
||||||
|
*.xcuserstate
|
||||||
|
*.xcscmblueprint
|
||||||
|
|
||||||
## Obj-C/Swift specific
|
## Obj-C/Swift specific
|
||||||
*.hmap
|
*.hmap
|
||||||
|
|
||||||
## App packaging
|
|
||||||
*.ipa
|
*.ipa
|
||||||
*.dSYM.zip
|
|
||||||
*.dSYM
|
|
||||||
|
|
||||||
## Playgrounds
|
## Playgrounds
|
||||||
timeline.xctimeline
|
timeline.xctimeline
|
||||||
|
|
@ -38,14 +39,6 @@ playground.xcworkspace
|
||||||
#
|
#
|
||||||
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
|
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
|
||||||
# Packages/
|
# Packages/
|
||||||
# Package.pins
|
|
||||||
# Package.resolved
|
|
||||||
# *.xcodeproj
|
|
||||||
#
|
|
||||||
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
|
|
||||||
# hence it is not needed unless you have added a package configuration file to your project
|
|
||||||
.swiftpm
|
|
||||||
|
|
||||||
.build/
|
.build/
|
||||||
|
|
||||||
# CocoaPods
|
# CocoaPods
|
||||||
|
|
@ -55,56 +48,33 @@ playground.xcworkspace
|
||||||
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
||||||
#
|
#
|
||||||
Pods/
|
Pods/
|
||||||
#
|
|
||||||
# Add this line if you want to avoid checking in source code from the Xcode workspace
|
|
||||||
# *.xcworkspace
|
|
||||||
|
|
||||||
# Carthage
|
# Carthage
|
||||||
#
|
#
|
||||||
# Add this line if you want to avoid checking in source code from Carthage dependencies.
|
# Add this line if you want to avoid checking in source code from Carthage dependencies.
|
||||||
Carthage/Checkouts
|
Carthage/Checkouts
|
||||||
|
|
||||||
Carthage/Build/
|
Carthage/Build
|
||||||
|
|
||||||
# Accio dependency management
|
|
||||||
Dependencies/
|
|
||||||
.accio/
|
|
||||||
|
|
||||||
# fastlane
|
# fastlane
|
||||||
#
|
#
|
||||||
# It is recommended to not store the screenshots in the git repo.
|
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
|
||||||
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
|
# screenshots whenever they are needed.
|
||||||
# For more information about the recommended setup visit:
|
# For more information about the recommended setup visit:
|
||||||
# https://docs.fastlane.tools/best-practices/source-control/#source-control
|
# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md
|
||||||
|
|
||||||
fastlane/report.xml
|
fastlane/report.xml
|
||||||
fastlane/Preview.html
|
fastlane/screenshots
|
||||||
fastlane/screenshots/**/*.png
|
|
||||||
fastlane/test_output
|
|
||||||
|
|
||||||
# Code Injection
|
|
||||||
#
|
|
||||||
# After new code Injection tools there's a generated folder /iOSInjectionProject
|
|
||||||
# https://github.com/johnno1962/injectionforxcode
|
|
||||||
|
|
||||||
iOSInjectionProject/
|
# AppCode
|
||||||
|
# https://intellij-support.jetbrains.com/hc/en-us/articles/206544839-How-to-manage-projects-under-Version-Control-Systems
|
||||||
|
|
||||||
# homebrew-bundle
|
.idea/workspace.xml
|
||||||
Brewfile.lock.json
|
.idea/tasks.xml
|
||||||
|
|
||||||
# Node.js
|
cpd-output.xml
|
||||||
# Dependency directories
|
|
||||||
node_modules/
|
|
||||||
|
|
||||||
# Touch Instinct custom
|
# Touch Instinct custom
|
||||||
Downloads/
|
Downloads/
|
||||||
fastlane/README.md
|
|
||||||
Templates/
|
|
||||||
cpd-output.xml
|
|
||||||
*.swp
|
|
||||||
*IDEWorkspaceChecks.plist
|
|
||||||
|
|
||||||
# Gem
|
|
||||||
.gem/
|
|
||||||
|
|
||||||
.DS_Store
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
[submodule "build-scripts"]
|
[submodule "build-scripts"]
|
||||||
path = build-scripts
|
path = build-scripts
|
||||||
url = https://git.svc.touchin.ru/TouchInstinct/BuildScripts.git
|
url = https://github.com/TouchInstinct/BuildScripts.git
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
|
||||||
|
language: swift
|
||||||
|
osx_image: xcode10
|
||||||
|
|
||||||
|
env:
|
||||||
|
global:
|
||||||
|
- LC_CTYPE=en_US.UTF-8
|
||||||
|
- LANG=en_US.UTF-8
|
||||||
|
|
||||||
|
jdk:
|
||||||
|
- oraclejdk9
|
||||||
|
|
||||||
|
before_install:
|
||||||
|
- env
|
||||||
|
- locale
|
||||||
|
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
|
||||||
|
- xcpretty --version
|
||||||
|
- xcodebuild -version
|
||||||
|
- xcodebuild -showsdks
|
||||||
|
- pod install --repo-update
|
||||||
|
- brew install pmd
|
||||||
|
|
||||||
|
script:
|
||||||
|
- set -o pipefail
|
||||||
|
- xcodebuild -enableCodeCoverage YES CODE_SIGNING_ALLOWED=YES -workspace LeadKit.xcworkspace -scheme 'LeadKit iOS' -destination 'platform=iOS Simulator,OS=12.0,name=iPhone 7' build test | xcpretty -c
|
||||||
|
- xcodebuild -enableCodeCoverage YES CODE_SIGNING_ALLOWED=YES -workspace LeadKit.xcworkspace -scheme 'LeadKit iOS Extensions' -destination 'platform=iOS Simulator,OS=12.0,name=iPhone 7' build test | xcpretty -c
|
||||||
|
- xcodebuild -enableCodeCoverage YES CODE_SIGNING_ALLOWED=YES -workspace LeadKit.xcworkspace -scheme 'LeadKit tvOS' -destination 'platform=tvOS Simulator,name=Apple TV 4K' -sdk appletvsimulator build test | xcpretty -c
|
||||||
|
|
||||||
|
after_success:
|
||||||
|
- sleep 5
|
||||||
|
- bash < (curl -s https://codecov.io/bash)
|
||||||
456
CHANGELOG.md
456
CHANGELOG.md
|
|
@ -1,461 +1,5 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
### 1.56.0
|
|
||||||
- **Update**: `ViewSkeletonsConfiguration`. It's possible to enable or disable animation for specific skeletons now.
|
|
||||||
- **Added**: `HolderViewSkeletonsConfiguration` for skeleton root view configuration
|
|
||||||
- **Added**: `DashedBoundsLayer` can now be applied to `CALayer`
|
|
||||||
|
|
||||||
### 1.55.1
|
|
||||||
- **Update**: revert `TextSkeletonsConfiguration` line height calculation
|
|
||||||
|
|
||||||
### 1.55.0
|
|
||||||
|
|
||||||
- **Update**: use TouchInstinct `TableKit` fork instead of original one
|
|
||||||
- **Update**: remove default value from `BoolValueDefaultsStorage`
|
|
||||||
|
|
||||||
### 1.54.6
|
|
||||||
|
|
||||||
- **Added**: `xcprivacy` files
|
|
||||||
- **Update**: Correctly detect app reinstall in `AppInstallLifetimeSingleValueStorage`
|
|
||||||
- **Update**: use `xHeight` instead of `pointSize` for default skeleton line height calculation
|
|
||||||
- **Update**: update `linkTextAttributes` in `UITextView` when setting interactive url parts
|
|
||||||
|
|
||||||
|
|
||||||
### 1.54.5
|
|
||||||
|
|
||||||
- **Update**: Сhange `StatefulButton` event propogation avoidance method.
|
|
||||||
|
|
||||||
### 1.54.4
|
|
||||||
|
|
||||||
- **Update**: Fix `StatefulButton` state configuration for iOS 15+.
|
|
||||||
|
|
||||||
### 1.54.3
|
|
||||||
|
|
||||||
- **Update**: Set reasonable defaults for `SkeletonConfiguration`.
|
|
||||||
|
|
||||||
### 1.54.2
|
|
||||||
|
|
||||||
- **Update**: Changed access level from internal to public of title and subtitle view in `BaseTitleSubtitleView`.
|
|
||||||
|
|
||||||
### 1.54.1
|
|
||||||
|
|
||||||
- **Added**: `BaseTitleSubtitleView` which can be inherited for fine-tuning skeletons and other behavior.
|
|
||||||
- **Update**: Changed lines number calculation method in `TextSkeletonsConfiguration`.
|
|
||||||
|
|
||||||
|
|
||||||
### 1.54.0
|
|
||||||
|
|
||||||
- **Added**: `maxWidth` parameter to `BaseViewSkeletonsConfiguration`.
|
|
||||||
- **Added**: custom `SkeletonConfigurations` for nested `SkeletonPresenters`.
|
|
||||||
- **Update**: Many fixes and improvenments to `TextSkeletonsConfiguration`.
|
|
||||||
|
|
||||||
### 1.53.3
|
|
||||||
|
|
||||||
- **Update**: `Skeletonable` can now control custom geometry change notification.
|
|
||||||
- **Update**: Filter hidden views from skeletonable views by default.
|
|
||||||
|
|
||||||
### 1.53.2
|
|
||||||
|
|
||||||
- **Update**: `DefaultTitleSubtitleView` support for separated configuration of title and subtitle labels layout.
|
|
||||||
- **Update**: `BaseListItemView` fixed trailing insets when trailing view is hidden.
|
|
||||||
|
|
||||||
### 1.53.1
|
|
||||||
|
|
||||||
- **Update**: Insets layout heuristics for `WrappedViewHodler` implementations
|
|
||||||
|
|
||||||
### 1.53.0
|
|
||||||
|
|
||||||
- **Added**: Custom string attributes to `BaseTextAttributes`
|
|
||||||
- **Added**: Customizeable `UIViewBackground` and `UIViewBorder` for `UIView.Appearance`
|
|
||||||
- **Added**: Keychain single value storage for codable models -`CodableSingleValueKeychainStorage`
|
|
||||||
- **Update**: Renamed methods `startAnimation` and `stopAnimation` of `SkeletonPresenter`, so it won't conflict with `Animatable` protocol anymore
|
|
||||||
|
|
||||||
### 1.52.0
|
|
||||||
|
|
||||||
- **Added**: `TIApplication` module with core dependencies of main application and its extension targets
|
|
||||||
- **Added**: `DefaultHomogeneousItemsCollectionView` default collection view implementation with configurable identical-type cells
|
|
||||||
- **Update**: Changed implementation of `AppInstallLifetimeSingleValueStorage`. Now it uses `SingleValueStorage<Bool>` to be able to migrate stored UserDefaults values
|
|
||||||
- **Added**: `UserLocationFetcher.OnLocationFetchFailureCallback` and `ItemDistanceTo` in `TIMapUtils`
|
|
||||||
- **Added**: Tap handler closure to `DefaultConfigurableStatefulButton.ViewModel`
|
|
||||||
- **Added**: Universal DSL
|
|
||||||
|
|
||||||
|
|
||||||
### 1.51.0
|
|
||||||
|
|
||||||
- **Added**: `BaseModalViewController` implementing `PanModalPresentable` with additional functionality
|
|
||||||
- **Added**: `BaseModalWrapperViewController` for wrapping `UIViewController`s with `BaseModalViewController` functionality
|
|
||||||
|
|
||||||
### 1.50.0
|
|
||||||
|
|
||||||
- **Updated**: Fix activity indicator positioning for `StatefulButton` on iOS 15+ and disabled state touch handling
|
|
||||||
- **Added**: iOS 15+ activity indicator placement support in `StatefulButton`
|
|
||||||
- **Added**: `TICoreGraphicsUtils` module for drawing operations and other CoreGraphics related functionality
|
|
||||||
- **Update**: `MarkerIconFactory` can now return optional `UIImage`. In this case MapManagers will show the default marker icon.
|
|
||||||
|
|
||||||
### 1.49.0
|
|
||||||
|
|
||||||
- **Added**: `BaseMigratingSingleValueKeychainStorage` and `BaseMigratingSingleValueDefaultsStorage` implementations for migrating keys from one storage to another.
|
|
||||||
|
|
||||||
### 1.48.0
|
|
||||||
|
|
||||||
- **Added**: `BaseStackView` with configurable items appearance
|
|
||||||
- **Fixed**: `CollectionTableViewCell` self-sizing
|
|
||||||
- **Added**: `ViewAppearance.WrappedViewLayout` support for all `WrappedViewHolders`
|
|
||||||
- **Added**: `ViewCallbacks` support for all `BaseInitializeableViews`
|
|
||||||
|
|
||||||
### 1.47.0
|
|
||||||
|
|
||||||
- **Added**: `flatMap` operator for `AsyncOperation`
|
|
||||||
- **Update**: `CodableKeyValueStorage` now returns `Swift.Result` with typed errors.
|
|
||||||
- **Added**: `SingleValueExpirationStorage` for time aware entries (expirable api tokens, etc.)
|
|
||||||
- **Added**: `AsyncOperation` variants of process methods in NetworkServices.
|
|
||||||
|
|
||||||
### 1.46.0
|
|
||||||
|
|
||||||
- **Added**: `AsyncSingleValueStorage` and `SingleValueStorageAsyncWrapper<SingleValueStorage>` for async access to SingleValue storages wtih swift concurrency support
|
|
||||||
- **Added**: `BaseMapUISettings` used to configure map view of different providers + user location icon rendering for yandex maps
|
|
||||||
- **Added**: `UserLocationFetcher` helper that requests authorization and subscribes to user location updates
|
|
||||||
- **Update**: add `DEVELOPMENT_INSTALL` support for all podspecs and fix playground compilation issues
|
|
||||||
|
|
||||||
### 1.45.0
|
|
||||||
|
|
||||||
- **Added**: `SingleValueStorage` implementations + `AppInstallLifetimeSingleValueStorage` for automatically removing keychain items on app reinstall.
|
|
||||||
- **Added**: `TILogging` with error logging types
|
|
||||||
- **Update**: `DefaultRecoverableJsonNetworkService` supports iOS 12.
|
|
||||||
- **Update**: `DefaultFingerprintsProvider` now uses `SingleValueStorage`
|
|
||||||
|
|
||||||
### 1.44.0
|
|
||||||
|
|
||||||
- **Added**: HTTP status codes to `EndpointErrorResult.apiError` responses
|
|
||||||
- **Added**: SwiftLint pre-build SPM step to TINetworking module
|
|
||||||
|
|
||||||
### 1.43.1
|
|
||||||
|
|
||||||
- **Fixed**: build scripts submodule url
|
|
||||||
|
|
||||||
### 1.43.0
|
|
||||||
|
|
||||||
- **Added**: `TITextProcessing` for regex and text formatting added
|
|
||||||
|
|
||||||
### 1.42.1
|
|
||||||
|
|
||||||
- **Fixed**: Podspecs source and homepage urls
|
|
||||||
|
|
||||||
### 1.42.0
|
|
||||||
|
|
||||||
- **Added**: TIDeeplink to support deeplink API
|
|
||||||
|
|
||||||
### 1.41.0
|
|
||||||
|
|
||||||
- **Update**: added callbacks for views while skeletons change status to presented or hidden
|
|
||||||
|
|
||||||
### 1.40.0
|
|
||||||
|
|
||||||
- **Added**: `PlaceholderFactory` for creating `DefaultPlaceholderView` views
|
|
||||||
- **Added**: `DefaultPlaceholderImageView`
|
|
||||||
|
|
||||||
### 1.39.0
|
|
||||||
|
|
||||||
- **Added**: UIButton Appearance model
|
|
||||||
- **Added**: `SpacedWrappedViewLayout` for spacing configurations
|
|
||||||
- **Update**: UIView appearance model with border configurations
|
|
||||||
|
|
||||||
### 1.38.0
|
|
||||||
|
|
||||||
- **Added**: Placemarks states for icon updating
|
|
||||||
- **Added**: Selecting / deselecting markers through cluster manager
|
|
||||||
|
|
||||||
### 1.37.0
|
|
||||||
|
|
||||||
- **Added**: API for converting view hierarchy to skeletons
|
|
||||||
|
|
||||||
### 1.36.1
|
|
||||||
|
|
||||||
- **Update**: `YandexMapsMobile` version updated
|
|
||||||
- **Fix**: Map manager memory leak removed
|
|
||||||
|
|
||||||
### 1.36.0
|
|
||||||
|
|
||||||
- **Removed**: `TILogger`module
|
|
||||||
- **Updated**: moved `LoggingPresenter` to `TIDeveloperUtils` module.
|
|
||||||
|
|
||||||
### 1.35.1
|
|
||||||
|
|
||||||
- **Added**: Auto documentation generation for `TIFoundationUtils` playground and compile checks for playground before release
|
|
||||||
- **Updated**: `AsyncOperation` fixed ordering of chain operations execution
|
|
||||||
|
|
||||||
### 1.35.0
|
|
||||||
|
|
||||||
- **Added**: `TIDeveloperUtils` framework, that contains different utils for development
|
|
||||||
- **Added**: `UIView` and `UIViewController` extensions for showing SwiftUI previews
|
|
||||||
- **Added**: `DashedBoundsLayer` for debugging views' frames visually
|
|
||||||
|
|
||||||
### 1.34.0
|
|
||||||
|
|
||||||
- **Added**: `BaseListItemView` for displaying three views horizontally
|
|
||||||
- **Added**: `DefaultTitleSubtitleView` for displaying one or two labels vertically
|
|
||||||
- **Update**: `StatefulButton` now can be configured with `ViewAppearance` model for each state
|
|
||||||
|
|
||||||
### 1.33.0
|
|
||||||
|
|
||||||
- **Added**: `ViewAppearance` and `ViewLayout` models for setting up Views' appearance and layout
|
|
||||||
- **Added**: `TableKit.Row` extension for configuration inner View's appearance and layout
|
|
||||||
- **Added**: `WrappableView` with typealiases for creating wrapped in the container views
|
|
||||||
- **Added**: `CollectionTableViewCell` and `ContainerView`
|
|
||||||
- **Update**: Separator appearance configureation for table views
|
|
||||||
|
|
||||||
### 1.32.0
|
|
||||||
|
|
||||||
- **Added**: `BaseInitializableWebView` with navigation and error handling api.
|
|
||||||
|
|
||||||
### 1.31.0
|
|
||||||
|
|
||||||
- **Added**: `URLInteractiveTextView` for terms and conditions hints in login flow
|
|
||||||
|
|
||||||
### 1.30.0
|
|
||||||
|
|
||||||
- **Added**: Base classes for encryption and decryption user token with pin code or biometry
|
|
||||||
- **Added**: Pin code validators
|
|
||||||
|
|
||||||
### 1.29.1
|
|
||||||
|
|
||||||
- **Updated**: `BaseTextAttributes` correct detection of the necessity of using attributed string
|
|
||||||
|
|
||||||
### 1.29.0
|
|
||||||
|
|
||||||
- **Added**: `BaseTextAttributes`can now measure text size and provides paragraph style configuration API.
|
|
||||||
- **Removed**: `ViewText`. Was fully replaced with `BaseTextAttributes`
|
|
||||||
- **Fixed**: `Operation.flattenDependencies` used in `Operation.add(to:waitUntilFinished:)` now works correctly.
|
|
||||||
- **Added**: Now it's possible to add dependent operation to start of the queue.
|
|
||||||
|
|
||||||
### 1.28.0
|
|
||||||
|
|
||||||
- **Add**: `LoggingPresenter`to present list of logs with ability of sharing it
|
|
||||||
- **Add**: `TILogger` wrapper object to log events.
|
|
||||||
|
|
||||||
### 1.27.1
|
|
||||||
|
|
||||||
- **Fix**: Weak target reference in `RefreshControl`
|
|
||||||
|
|
||||||
### 1.27.0
|
|
||||||
|
|
||||||
- **Add**: Tag like filter collection view
|
|
||||||
- **Add**: List like filter table view
|
|
||||||
- **Add**: Range like filter view
|
|
||||||
|
|
||||||
### 1.26.3
|
|
||||||
- **Update**: Add @escaping in `RequestExecutor.ExecutionClosure`
|
|
||||||
|
|
||||||
### 1.26.2
|
|
||||||
- **Update**: Add failureCompletion in `RequestExecutor`
|
|
||||||
|
|
||||||
### 1.26.1
|
|
||||||
- **Fix**: Use OperationQueue instead of NSLock in `DefaultTokenInterceptor`
|
|
||||||
- **Update**: AsyncOperation refactoring
|
|
||||||
|
|
||||||
### 1.26.0
|
|
||||||
|
|
||||||
- **Add**: `TIEcommerce` module with Cart, products, promocodes, bonuses and other related actions.
|
|
||||||
|
|
||||||
### 1.25.0
|
|
||||||
|
|
||||||
- **Update**: `RequestError` cases now contain additional url assotiated value
|
|
||||||
- **Update**: Network requests error catching now throws `RequestError` with url
|
|
||||||
|
|
||||||
### 1.24.0
|
|
||||||
|
|
||||||
- **Add**: `AlertFactory` for presenting alerts in SwiftUI and UIKit.
|
|
||||||
|
|
||||||
### 1.23.0
|
|
||||||
|
|
||||||
- **Update**: `UITextView` now support configuration with `BaseTextAttributes`
|
|
||||||
- **Add**: `ReconfigurableView` & `ChangeableViewModel` for non-destructing state update
|
|
||||||
- **Add**: `WrappedViewHolder` protocol with table/collection view cell implementations
|
|
||||||
- **Add**: `UIViewPresenter` and `ReusableUIViewPresenter` protocols with default implementation for proper handling view/cells reuse
|
|
||||||
|
|
||||||
### 1.22.0
|
|
||||||
|
|
||||||
- **Update**: Asynchronous request preprocessing
|
|
||||||
|
|
||||||
### 1.21.0
|
|
||||||
|
|
||||||
- **Update**: `AsyncEventHandler` was replaced with `EndpointRequestRetrier`
|
|
||||||
- **Add**: `FingerprintsTrustEvaluator` and `FingerprintsProvider` for fingerprint-based host trust evaluation
|
|
||||||
- **Add**: `DefaultTokenInterceptor` for queue-based token refresh across all requests of single api interactor (network service).
|
|
||||||
- **Update**: `DefaultRecoverableJsonNetworkService` now returns collection of errors in result
|
|
||||||
- **Update**: `CancellableTask` was renamed to `Cancellable`. Cancellable implementations has been moved from `TIMoyaNetworking` to `TIFoundationUtils`.
|
|
||||||
- **Add**: `ApiInteractor` protocol with basic request/response methods
|
|
||||||
|
|
||||||
|
|
||||||
### 1.20.0
|
|
||||||
|
|
||||||
- **Add**: OpenAPI security schemes support for EndpointRequest's.
|
|
||||||
- **Update**: Replace `AdditionalHeadersPlugin` with `SecuritySchemePreprocessor` and `EndpointRequestPreprocessor` (with default implementations)
|
|
||||||
|
|
||||||
### 1.19.0
|
|
||||||
|
|
||||||
- **Add**: Add presenter protocols to `TISwiftUICore` and `TIUIKitCore` modules
|
|
||||||
- **Add**: `CodeConfirmPresenter` protocol and `DefaultCodeConfirmPresenter` implementation in `TIAuth` module
|
|
||||||
|
|
||||||
### 1.18.0
|
|
||||||
|
|
||||||
- **Add**: add MapManagers for routine maps configuration
|
|
||||||
|
|
||||||
### 1.17.0
|
|
||||||
|
|
||||||
- **Add**: add smooth CameraUpdate actions for supported maps
|
|
||||||
|
|
||||||
### 1.16.2
|
|
||||||
|
|
||||||
- **Update**: `DefaultRecoverableJsonNetworkService` now supports error forwarding from its error handlers to initial requests.
|
|
||||||
|
|
||||||
### 1.16.1
|
|
||||||
|
|
||||||
- **Update**: `DateFormattersReusePool` and `ISO8601DateFormattersReusePool` are now thread safe.
|
|
||||||
|
|
||||||
### 1.16.0
|
|
||||||
|
|
||||||
- **Add**: `TIMapUtils`, `TIAppleMapUtils`, `TIGoogleMapUtils` and `TIYandexMapUtils` modules for map items clustering and interacting with them.
|
|
||||||
|
|
||||||
### 1.15.0
|
|
||||||
|
|
||||||
- **Update**: Network services in TIMoyaNetworking now passes MoyaError in result of EnpointRequest execution.
|
|
||||||
- **Add**: `TINetworkingCache` module - caching results of EndpointRequests.
|
|
||||||
- **Important Note**: `TINetworkingCache` added via SPM may require you to add `DISABLE_DIAMOND_PROBLEM_DIAGNOSTIC=YES` flag to build settings of project target (see [probably related problem](https://forums.swift.org/t/adding-a-package-to-two-targets-in-one-projects-results-in-an-error/35007/18))
|
|
||||||
|
|
||||||
### 1.14.3
|
|
||||||
|
|
||||||
- **Fix**: Creating headerView and footerView when initializing a section with rows in `TITableKitUtils`.
|
|
||||||
- **Add**: Empty table section initialization method in `TITableKitUtils`.
|
|
||||||
|
|
||||||
### 1.14.2
|
|
||||||
|
|
||||||
- **Update**: DateFormatters properties preset in reuse pools
|
|
||||||
|
|
||||||
### 1.14.1
|
|
||||||
|
|
||||||
- **Fix**: Array encoding for `QueryStringParameterEncoding`
|
|
||||||
|
|
||||||
### 1.14.0
|
|
||||||
|
|
||||||
- **Add**: [Date] coding methods
|
|
||||||
|
|
||||||
### 1.13.0
|
|
||||||
|
|
||||||
- **Update**: Change access modifiers in `DefaultJsonNetworkService` from `public` to `open`, added additional Moya plugins processing
|
|
||||||
- **Add**: `DisplayDecodingErrorPlugin` for showing developer-frendly decoding error messages
|
|
||||||
- **Add**: Gemfile for cocoapods versioning
|
|
||||||
|
|
||||||
### 1.12.3
|
|
||||||
|
|
||||||
- **Fix**: Try parse date in ISO8601 format appending `.withFractionalSeconds` if `.withInternetDateTime` fails
|
|
||||||
|
|
||||||
### 1.12.2
|
|
||||||
|
|
||||||
- **Fix**: HeaderParameterEncoding encodes array correctly
|
|
||||||
|
|
||||||
### 1.12.1
|
|
||||||
|
|
||||||
- **Update**: DefaultRecoverableNetworkService `request` parameter was renamed to prevent ambgious reference
|
|
||||||
|
|
||||||
### 1.12.0
|
|
||||||
|
|
||||||
- **Update**: EndpointRequest Body can take a nil value
|
|
||||||
- **Update**: Parameter value can be nil as well
|
|
||||||
- **Update**: observe operator of AsyncOperation now accepts callback queue parameter
|
|
||||||
|
|
||||||
### 1.11.1
|
|
||||||
- **Fix**: `timeoutIntervalForRequest` parameter for `URLSessionConfiguration` in `NetworkServiceConfiguration` added.
|
|
||||||
|
|
||||||
### 1.11.0
|
|
||||||
- **Breaking changes**: many method signatures was changes in `TIMoyaNetworking`.
|
|
||||||
- **Add**: `ISO8601DateFormattersReusePool` and codable helpers for ISO8601 date (de)coding.
|
|
||||||
- **Add**: Moya plugin protocol for adding HTTP headers with default implementation.
|
|
||||||
|
|
||||||
### 1.10.0
|
|
||||||
- **Add**: `DefaultRecoverableJsonNetworkService` with error handling chain.
|
|
||||||
|
|
||||||
|
|
||||||
### 1.9.0
|
|
||||||
- **Add**: `TIMoyaNetworking` target - Moya + Swagger network service.
|
|
||||||
- **Update**: `TISwiftUtils` - added async closure typealiases.
|
|
||||||
- **Update**: `TIFoundationUtils` - added date formatting & decoding helpers.
|
|
||||||
|
|
||||||
### 1.8.0
|
|
||||||
- **Add**: `TIFoundationUtils.AsyncOperation` - generic subclass of Operation with chaining and result observation support
|
|
||||||
|
|
||||||
### 1.7.0
|
|
||||||
- **Add**: `TINetworking` - Swagger-frendly networking layer helpers
|
|
||||||
|
|
||||||
### 1.6.0
|
|
||||||
- **Add**: the pretty timer - TITimer.
|
|
||||||
|
|
||||||
### 1.5.0
|
|
||||||
- **Add**: `HeaderTransitionDelegate` - Helper for transition of TableView header and navigationBar title view
|
|
||||||
|
|
||||||
### 1.4.0
|
|
||||||
- **Update**: update minor dependencies.
|
|
||||||
- **Fix**: project's scripts.
|
|
||||||
|
|
||||||
### 1.3.0
|
|
||||||
- **Add**: `TIPaginator` - realisation of paginating items from a data source.
|
|
||||||
|
|
||||||
### 1.2.0
|
|
||||||
- **Add**: `TIKeychainUtils` - Set of helpers for Keychain classes.
|
|
||||||
|
|
||||||
### 1.1.1
|
|
||||||
- **Fix**: `StatefullButton` propagation
|
|
||||||
|
|
||||||
### 1.1.0
|
|
||||||
- **Add**: `BaseInitializeableViewController`, `BaseCustomViewController` and `BaseViewController` to TIUIKitCore.
|
|
||||||
- **Add**: `TableKitTableView` and `TableDirectorHolder` to TITableKitUtils.
|
|
||||||
|
|
||||||
### 1.0.0
|
|
||||||
- **API BreakingChanges**: up swift version to 5.1.
|
|
||||||
- **Update**: build scripts.
|
|
||||||
- **Update**: code with new swiftlint rules.
|
|
||||||
- **Update**: RxSwift to 6.0.0.
|
|
||||||
|
|
||||||
### 0.13.1
|
|
||||||
- **Fix**: LeadKit.podspec file.
|
|
||||||
|
|
||||||
### 0.13.0
|
|
||||||
- **Add**: Githook `prepare-commit-msg` to check commit's style.
|
|
||||||
- **Add**: Setup script.
|
|
||||||
|
|
||||||
### 0.12.0
|
|
||||||
- **Add**: StatefulButton & RoundedStatefulButton to TIUIElements.
|
|
||||||
- **Add**: added CACornerMask rounding extension to TIUIElements.
|
|
||||||
- **Add**: UIControl.State dictionary extensions to TIUIKitCore.
|
|
||||||
- **Add**: UIFont and CTFont extensions to TIUIKitCore.
|
|
||||||
- **Breaking change**: reworked BaseTextAttributes & ViewText. Removed ViewTextConfigurable protocol & conformances.
|
|
||||||
|
|
||||||
### 0.11.0
|
|
||||||
- **Add**: Cocoapods support for TI-family libraries.
|
|
||||||
- **Add**: `SeparatorConfigurable` and all helper types for separator configuration.
|
|
||||||
- **Add**: `BaseSeparatorCell` - `BaseInitializeableCell` subclass with separators support.
|
|
||||||
- **Add**: `TITableKitUtils` - set of helpers for TableKit classes.
|
|
||||||
- **Add**: `BaseTextAttributes` and `ViewText` implementation form LeadKit.
|
|
||||||
- **Update**: `BaseInitializableView` and `BaseInitializableControl` are moved to `TIUIElements` from `TIUIKitCore`.
|
|
||||||
|
|
||||||
### 0.10.9
|
|
||||||
- **Fix**: `change presentedOrTopViewController to open`.
|
|
||||||
|
|
||||||
### 0.10.8
|
|
||||||
- **Fix**: `Add presentedOrTopViewController`.
|
|
||||||
|
|
||||||
### 0.10.7
|
|
||||||
- **Fix**: `Add BaseOrientationController`.
|
|
||||||
- **Fix**: `Add videoOrientation extension`.
|
|
||||||
|
|
||||||
### 0.10.6
|
|
||||||
- **Fix**: `Add tvos exclude files`.
|
|
||||||
|
|
||||||
### 0.10.5
|
|
||||||
- **Add**: `OrientationNavigationController` .
|
|
||||||
- **Add**: `Forced Interface Orientation logic to BaseConfigurableController` .
|
|
||||||
- **Fix**: `Exclude files to watchos and tvos`.
|
|
||||||
|
|
||||||
### 0.10.4
|
### 0.10.4
|
||||||
- **Fix**: `noConnection` error.
|
- **Fix**: `noConnection` error.
|
||||||
|
|
||||||
|
|
|
||||||
6
Cartfile
6
Cartfile
|
|
@ -1,7 +1,7 @@
|
||||||
github "malcommac/SwiftDate"
|
github "malcommac/SwiftDate"
|
||||||
github "Alamofire/Alamofire"
|
github "Alamofire/Alamofire"
|
||||||
github "RxSwiftCommunity/RxAlamofire" ~> 6.1
|
github "RxSwiftCommunity/RxAlamofire" ~> 5.6.0
|
||||||
github "TouchInstinct/TableKit"
|
github "TouchInstinct/TableKit"
|
||||||
github "ReactiveX/RxSwift" ~> 6.2
|
github "ReactiveX/RxSwift" ~> 5.1.0
|
||||||
github "pronebird/UIScrollView-InfiniteScroll" "1.1.0"
|
github "pronebird/UIScrollView-InfiniteScroll"
|
||||||
github "SnapKit/SnapKit" ~> 5.0
|
github "SnapKit/SnapKit" ~> 5.0
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
github "Alamofire/Alamofire" "5.4.3"
|
github "Alamofire/Alamofire" "5.2.2"
|
||||||
github "ReactiveX/RxSwift" "6.2.0"
|
github "ReactiveX/RxSwift" "5.1.1"
|
||||||
github "RxSwiftCommunity/RxAlamofire" "v6.1.2"
|
github "RxSwiftCommunity/RxAlamofire" "v5.6.1"
|
||||||
github "SnapKit/SnapKit" "5.0.1"
|
github "SnapKit/SnapKit" "5.0.1"
|
||||||
github "TouchInstinct/TableKit" "2.10008.1"
|
github "TouchInstinct/TableKit" "2.10008.1"
|
||||||
github "malcommac/SwiftDate" "6.3.1"
|
github "malcommac/SwiftDate" "6.1.0"
|
||||||
github "pronebird/UIScrollView-InfiniteScroll" "1.1.0"
|
github "pronebird/UIScrollView-InfiniteScroll" "1.1.0"
|
||||||
|
|
|
||||||
5
Gemfile
5
Gemfile
|
|
@ -1,5 +0,0 @@
|
||||||
# frozen_string_literal: true
|
|
||||||
|
|
||||||
source "https://rubygems.org"
|
|
||||||
|
|
||||||
gem "cocoapods", "~> 1.11"
|
|
||||||
98
Gemfile.lock
98
Gemfile.lock
|
|
@ -1,98 +0,0 @@
|
||||||
GEM
|
|
||||||
remote: https://rubygems.org/
|
|
||||||
specs:
|
|
||||||
CFPropertyList (3.0.5)
|
|
||||||
rexml
|
|
||||||
activesupport (6.1.5)
|
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
||||||
i18n (>= 1.6, < 2)
|
|
||||||
minitest (>= 5.1)
|
|
||||||
tzinfo (~> 2.0)
|
|
||||||
zeitwerk (~> 2.3)
|
|
||||||
addressable (2.8.0)
|
|
||||||
public_suffix (>= 2.0.2, < 5.0)
|
|
||||||
algoliasearch (1.27.5)
|
|
||||||
httpclient (~> 2.8, >= 2.8.3)
|
|
||||||
json (>= 1.5.1)
|
|
||||||
atomos (0.1.3)
|
|
||||||
claide (1.1.0)
|
|
||||||
cocoapods (1.11.3)
|
|
||||||
addressable (~> 2.8)
|
|
||||||
claide (>= 1.0.2, < 2.0)
|
|
||||||
cocoapods-core (= 1.11.3)
|
|
||||||
cocoapods-deintegrate (>= 1.0.3, < 2.0)
|
|
||||||
cocoapods-downloader (>= 1.4.0, < 2.0)
|
|
||||||
cocoapods-plugins (>= 1.0.0, < 2.0)
|
|
||||||
cocoapods-search (>= 1.0.0, < 2.0)
|
|
||||||
cocoapods-trunk (>= 1.4.0, < 2.0)
|
|
||||||
cocoapods-try (>= 1.1.0, < 2.0)
|
|
||||||
colored2 (~> 3.1)
|
|
||||||
escape (~> 0.0.4)
|
|
||||||
fourflusher (>= 2.3.0, < 3.0)
|
|
||||||
gh_inspector (~> 1.0)
|
|
||||||
molinillo (~> 0.8.0)
|
|
||||||
nap (~> 1.0)
|
|
||||||
ruby-macho (>= 1.0, < 3.0)
|
|
||||||
xcodeproj (>= 1.21.0, < 2.0)
|
|
||||||
cocoapods-core (1.11.3)
|
|
||||||
activesupport (>= 5.0, < 7)
|
|
||||||
addressable (~> 2.8)
|
|
||||||
algoliasearch (~> 1.0)
|
|
||||||
concurrent-ruby (~> 1.1)
|
|
||||||
fuzzy_match (~> 2.0.4)
|
|
||||||
nap (~> 1.0)
|
|
||||||
netrc (~> 0.11)
|
|
||||||
public_suffix (~> 4.0)
|
|
||||||
typhoeus (~> 1.0)
|
|
||||||
cocoapods-deintegrate (1.0.5)
|
|
||||||
cocoapods-downloader (1.6.2)
|
|
||||||
cocoapods-plugins (1.0.0)
|
|
||||||
nap
|
|
||||||
cocoapods-search (1.0.1)
|
|
||||||
cocoapods-trunk (1.6.0)
|
|
||||||
nap (>= 0.8, < 2.0)
|
|
||||||
netrc (~> 0.11)
|
|
||||||
cocoapods-try (1.2.0)
|
|
||||||
colored2 (3.1.2)
|
|
||||||
concurrent-ruby (1.1.10)
|
|
||||||
escape (0.0.4)
|
|
||||||
ethon (0.15.0)
|
|
||||||
ffi (>= 1.15.0)
|
|
||||||
ffi (1.15.5)
|
|
||||||
fourflusher (2.3.1)
|
|
||||||
fuzzy_match (2.0.4)
|
|
||||||
gh_inspector (1.1.3)
|
|
||||||
httpclient (2.8.3)
|
|
||||||
i18n (1.10.0)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
json (2.6.1)
|
|
||||||
minitest (5.15.0)
|
|
||||||
molinillo (0.8.0)
|
|
||||||
nanaimo (0.3.0)
|
|
||||||
nap (1.1.0)
|
|
||||||
netrc (0.11.0)
|
|
||||||
public_suffix (4.0.6)
|
|
||||||
rexml (3.2.5)
|
|
||||||
ruby-macho (2.5.1)
|
|
||||||
typhoeus (1.4.0)
|
|
||||||
ethon (>= 0.9.0)
|
|
||||||
tzinfo (2.0.4)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
xcodeproj (1.21.0)
|
|
||||||
CFPropertyList (>= 2.3.3, < 4.0)
|
|
||||||
atomos (~> 0.1.3)
|
|
||||||
claide (>= 1.0.2, < 2.0)
|
|
||||||
colored2 (~> 3.1)
|
|
||||||
nanaimo (~> 0.3.0)
|
|
||||||
rexml (~> 3.2.4)
|
|
||||||
zeitwerk (2.5.4)
|
|
||||||
|
|
||||||
PLATFORMS
|
|
||||||
x86_64-darwin-20
|
|
||||||
x86_64-darwin-21
|
|
||||||
|
|
||||||
DEPENDENCIES
|
|
||||||
cocoapods (~> 1.11)
|
|
||||||
|
|
||||||
BUNDLED WITH
|
|
||||||
2.3.26
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = "LeadKit"
|
s.name = "LeadKit"
|
||||||
s.version = "1.35.0"
|
s.version = "0.10.4"
|
||||||
s.summary = "iOS framework with a bunch of tools for rapid development"
|
s.summary = "iOS framework with a bunch of tools for rapid development"
|
||||||
s.homepage = "https://git.svc.touchin.ru/TouchInstinct/LeadKit"
|
s.homepage = "https://github.com/TouchInstinct/LeadKit"
|
||||||
s.license = "Apache License, Version 2.0"
|
s.license = "Apache License, Version 2.0"
|
||||||
s.author = "Touch Instinct"
|
s.author = "Touch Instinct"
|
||||||
s.source = { :git => "https://git.svc.touchin.ru/TouchInstinct/LeadKit.git", :tag => s.version }
|
s.source = { :git => "https://github.com/TouchInstinct/LeadKit.git", :tag => s.version }
|
||||||
s.platform = :ios, '10.0'
|
s.platform = :ios, '10.0'
|
||||||
s.swift_versions = ['5.1']
|
s.swift_versions = ['5.0']
|
||||||
|
|
||||||
s.subspec 'UIColorHex' do |ss|
|
s.subspec 'UIColorHex' do |ss|
|
||||||
ss.ios.deployment_target = '10.0'
|
ss.ios.deployment_target = '8.0'
|
||||||
ss.tvos.deployment_target = '10.0'
|
ss.tvos.deployment_target = '9.0'
|
||||||
ss.watchos.deployment_target = '3.0'
|
ss.watchos.deployment_target = '2.0'
|
||||||
|
|
||||||
ss.source_files = "Sources/Extensions/UIColor/UIColor+Hex.swift"
|
ss.source_files = "Sources/Extensions/UIColor/UIColor+Hex.swift"
|
||||||
end
|
end
|
||||||
|
|
@ -26,8 +26,6 @@ Pod::Spec.new do |s|
|
||||||
ss.watchos.exclude_files = [
|
ss.watchos.exclude_files = [
|
||||||
"Sources/Classes/Controllers/**/*",
|
"Sources/Classes/Controllers/**/*",
|
||||||
"Sources/Classes/Views/SeparatorRowBox/*",
|
"Sources/Classes/Views/SeparatorRowBox/*",
|
||||||
"Sources/Classes/Views/BaseRxTableViewCell/*",
|
|
||||||
"Sources/Classes/Views/ContainerTableCell/*",
|
|
||||||
"Sources/Classes/Views/SeparatorCell/*",
|
"Sources/Classes/Views/SeparatorCell/*",
|
||||||
"Sources/Classes/Views/EmptyCell/*",
|
"Sources/Classes/Views/EmptyCell/*",
|
||||||
"Sources/Classes/Views/LabelTableViewCell/*",
|
"Sources/Classes/Views/LabelTableViewCell/*",
|
||||||
|
|
@ -68,21 +66,10 @@ Pod::Spec.new do |s|
|
||||||
"Sources/Structures/DrawingOperations/CALayerDrawingOperation.swift",
|
"Sources/Structures/DrawingOperations/CALayerDrawingOperation.swift",
|
||||||
"Sources/Structures/DrawingOperations/RoundDrawingOperation.swift",
|
"Sources/Structures/DrawingOperations/RoundDrawingOperation.swift",
|
||||||
"Sources/Structures/DrawingOperations/BorderDrawingOperation.swift",
|
"Sources/Structures/DrawingOperations/BorderDrawingOperation.swift",
|
||||||
"Sources/Structures/DataLoading/PaginationDataLoading/*",
|
"Sources/Structures/DataLoading/PaginationDataLoading/*"
|
||||||
"Sources/Extensions/UIInterfaceOrientation/*"
|
|
||||||
]
|
]
|
||||||
ss.tvos.exclude_files = [
|
ss.tvos.exclude_files = [
|
||||||
"Sources/Classes/Controllers/BaseConfigurableController.swift",
|
|
||||||
"Sources/Classes/Controllers/BaseCollectionContentController.swift",
|
|
||||||
"Sources/Classes/Views/TableViewWrapperView/TableViewWrapperView.swift",
|
|
||||||
"Sources/Classes/Views/CollectionViewWrapperView/CollectionViewWrapperView.swift",
|
|
||||||
"Sources/Classes/Controllers/BaseScrollContentController.swift",
|
|
||||||
"Sources/Classes/Controllers/BaseCustomViewController.swift",
|
|
||||||
"Sources/Classes/Controllers/BaseOrientationNavigationController.swift",
|
|
||||||
"Sources/Extensions/UIKit/UIDevice/UIDevice+ScreenOrientation.swift",
|
|
||||||
"Sources/Classes/Controllers/BaseTableContentController.swift",
|
"Sources/Classes/Controllers/BaseTableContentController.swift",
|
||||||
"Sources/Classes/Views/BaseRxTableViewCell/*",
|
|
||||||
"Sources/Classes/Views/ContainerTableCell/*",
|
|
||||||
"Sources/Classes/Views/SeparatorRowBox/*",
|
"Sources/Classes/Views/SeparatorRowBox/*",
|
||||||
"Sources/Classes/Views/SeparatorCell/*",
|
"Sources/Classes/Views/SeparatorCell/*",
|
||||||
"Sources/Classes/Views/EmptyCell/*",
|
"Sources/Classes/Views/EmptyCell/*",
|
||||||
|
|
@ -102,18 +89,16 @@ Pod::Spec.new do |s|
|
||||||
"Sources/Protocols/Views/SeparatorCell/*",
|
"Sources/Protocols/Views/SeparatorCell/*",
|
||||||
"Sources/Protocols/TableKit/**/*",
|
"Sources/Protocols/TableKit/**/*",
|
||||||
"Sources/Protocols/Controllers/SearchResultsViewController.swift",
|
"Sources/Protocols/Controllers/SearchResultsViewController.swift",
|
||||||
"Sources/Structures/DataLoading/PaginationDataLoading/*",
|
"Sources/Structures/DataLoading/PaginationDataLoading/*"
|
||||||
"Sources/Extensions/UIInterfaceOrientation/*",
|
|
||||||
"Sources/Classes/Controllers/BaseOrientationController.swift"
|
|
||||||
]
|
]
|
||||||
|
|
||||||
ss.dependency "RxSwift", '~> 6.2'
|
ss.dependency "RxSwift", '~> 5.1.0'
|
||||||
ss.dependency "RxCocoa", '~> 6.2'
|
ss.dependency "RxCocoa", '~> 5.1.0'
|
||||||
ss.dependency "RxAlamofire", '~> 6.1'
|
ss.dependency "RxAlamofire", '~> 5.6.0'
|
||||||
ss.dependency "SwiftDate", '~> 6'
|
ss.dependency "SwiftDate", '~> 6'
|
||||||
|
|
||||||
ss.ios.dependency "TableKit", '~> 2.11'
|
ss.ios.dependency "TableKit", '~> 2.8'
|
||||||
ss.ios.dependency "SnapKit", '~> 5.0.1'
|
ss.ios.dependency "SnapKit", '~> 5.0.0'
|
||||||
ss.ios.dependency "UIScrollView-InfiniteScroll", '~> 1.1.0'
|
ss.ios.dependency "UIScrollView-InfiniteScroll", '~> 1.1.0'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
archiveVersion = 1;
|
archiveVersion = 1;
|
||||||
classes = {
|
classes = {
|
||||||
};
|
};
|
||||||
objectVersion = 54;
|
objectVersion = 46;
|
||||||
objects = {
|
objects = {
|
||||||
|
|
||||||
/* Begin PBXBuildFile section */
|
/* Begin PBXBuildFile section */
|
||||||
|
|
@ -16,39 +16,6 @@
|
||||||
40F118471F8FEF97004AADAF /* AppearanceConfigurable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40F118461F8FEF97004AADAF /* AppearanceConfigurable.swift */; };
|
40F118471F8FEF97004AADAF /* AppearanceConfigurable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40F118461F8FEF97004AADAF /* AppearanceConfigurable.swift */; };
|
||||||
40F118491F8FF223004AADAF /* TableRow+AppearanceExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40F118481F8FF223004AADAF /* TableRow+AppearanceExtension.swift */; };
|
40F118491F8FF223004AADAF /* TableRow+AppearanceExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40F118481F8FF223004AADAF /* TableRow+AppearanceExtension.swift */; };
|
||||||
411073AF23466B41002DD9B9 /* UIViewController+PresentFullScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 411073AE23466B41002DD9B9 /* UIViewController+PresentFullScreen.swift */; };
|
411073AF23466B41002DD9B9 /* UIViewController+PresentFullScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 411073AE23466B41002DD9B9 /* UIViewController+PresentFullScreen.swift */; };
|
||||||
4C4C7B52267FE27E006F3C70 /* RxAlamofire.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B47267FE27E006F3C70 /* RxAlamofire.xcframework */; };
|
|
||||||
4C4C7B56267FE27E006F3C70 /* RxSwift.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B49267FE27E006F3C70 /* RxSwift.xcframework */; };
|
|
||||||
4C4C7B5C267FE27E006F3C70 /* RxRelay.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B4C267FE27E006F3C70 /* RxRelay.xcframework */; };
|
|
||||||
4C4C7B5E267FE27E006F3C70 /* Alamofire.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B4D267FE27E006F3C70 /* Alamofire.xcframework */; };
|
|
||||||
4C4C7B60267FE27E006F3C70 /* SwiftDate.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B4E267FE27E006F3C70 /* SwiftDate.xcframework */; };
|
|
||||||
4C4C7B62267FE27E006F3C70 /* RxBlocking.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B4F267FE27E006F3C70 /* RxBlocking.xcframework */; };
|
|
||||||
4C4C7B66267FE27F006F3C70 /* RxCocoa.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B51267FE27E006F3C70 /* RxCocoa.xcframework */; };
|
|
||||||
4C4C7B7F267FE319006F3C70 /* Decimal+Rounding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85A5D49422AA975000C7D254 /* Decimal+Rounding.swift */; };
|
|
||||||
4C4C7B83267FE32F006F3C70 /* Decimal+Values.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85A5D49B22AAB6B700C7D254 /* Decimal+Values.swift */; };
|
|
||||||
4C4C7B8A267FE364006F3C70 /* Alamofire.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B4D267FE27E006F3C70 /* Alamofire.xcframework */; };
|
|
||||||
4C4C7B8C267FE364006F3C70 /* RxAlamofire.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B47267FE27E006F3C70 /* RxAlamofire.xcframework */; };
|
|
||||||
4C4C7B8E267FE365006F3C70 /* RxBlocking.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B4F267FE27E006F3C70 /* RxBlocking.xcframework */; };
|
|
||||||
4C4C7B90267FE365006F3C70 /* RxCocoa.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B51267FE27E006F3C70 /* RxCocoa.xcframework */; };
|
|
||||||
4C4C7B92267FE365006F3C70 /* RxRelay.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B4C267FE27E006F3C70 /* RxRelay.xcframework */; };
|
|
||||||
4C4C7B94267FE365006F3C70 /* RxSwift.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B49267FE27E006F3C70 /* RxSwift.xcframework */; };
|
|
||||||
4C4C7B96267FE365006F3C70 /* RxTest.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B50267FE27E006F3C70 /* RxTest.xcframework */; };
|
|
||||||
4C4C7B98267FE365006F3C70 /* SnapKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B4B267FE27E006F3C70 /* SnapKit.xcframework */; };
|
|
||||||
4C4C7B9A267FE365006F3C70 /* SwiftDate.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B4E267FE27E006F3C70 /* SwiftDate.xcframework */; };
|
|
||||||
4C4C7BA7267FE3F6006F3C70 /* Decimal+Rounding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85A5D49422AA975000C7D254 /* Decimal+Rounding.swift */; };
|
|
||||||
4C4C7BA8267FE3F6006F3C70 /* Decimal+Values.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85A5D49B22AAB6B700C7D254 /* Decimal+Values.swift */; };
|
|
||||||
4C4C7BB7267FE4C9006F3C70 /* ButtonHolderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CF65D1724DD6C080006B001 /* ButtonHolderView.swift */; };
|
|
||||||
4C4C7BBA267FE4DD006F3C70 /* ButtonHolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CF65D1324DD684A0006B001 /* ButtonHolder.swift */; };
|
|
||||||
4C4C7BBF267FE508006F3C70 /* Alamofire.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B4D267FE27E006F3C70 /* Alamofire.xcframework */; };
|
|
||||||
4C4C7BC1267FE508006F3C70 /* RxAlamofire.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B47267FE27E006F3C70 /* RxAlamofire.xcframework */; };
|
|
||||||
4C4C7BC3267FE508006F3C70 /* RxBlocking.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B4F267FE27E006F3C70 /* RxBlocking.xcframework */; };
|
|
||||||
4C4C7BC5267FE508006F3C70 /* RxCocoa.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B51267FE27E006F3C70 /* RxCocoa.xcframework */; };
|
|
||||||
4C4C7BC7267FE509006F3C70 /* RxRelay.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B4C267FE27E006F3C70 /* RxRelay.xcframework */; };
|
|
||||||
4C4C7BC9267FE509006F3C70 /* RxSwift.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B49267FE27E006F3C70 /* RxSwift.xcframework */; };
|
|
||||||
4C4C7BCB267FE509006F3C70 /* RxTest.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B50267FE27E006F3C70 /* RxTest.xcframework */; };
|
|
||||||
4C4C7BCD267FE509006F3C70 /* SnapKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B4B267FE27E006F3C70 /* SnapKit.xcframework */; };
|
|
||||||
4C4C7BCF267FE509006F3C70 /* SwiftDate.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B4E267FE27E006F3C70 /* SwiftDate.xcframework */; };
|
|
||||||
4C4C7BD1267FE509006F3C70 /* TableKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B48267FE27E006F3C70 /* TableKit.xcframework */; };
|
|
||||||
4C4C7BD3267FE509006F3C70 /* UIScrollView_InfiniteScroll.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C4C7B4A267FE27E006F3C70 /* UIScrollView_InfiniteScroll.xcframework */; };
|
|
||||||
4CF65D1424DD684A0006B001 /* ButtonHolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CF65D1324DD684A0006B001 /* ButtonHolder.swift */; };
|
4CF65D1424DD684A0006B001 /* ButtonHolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CF65D1324DD684A0006B001 /* ButtonHolder.swift */; };
|
||||||
4CF65D1624DD69250006B001 /* UIButton+ButtonHolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CF65D1524DD69250006B001 /* UIButton+ButtonHolder.swift */; };
|
4CF65D1624DD69250006B001 /* UIButton+ButtonHolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CF65D1524DD69250006B001 /* UIButton+ButtonHolder.swift */; };
|
||||||
4CF65D1824DD6C080006B001 /* ButtonHolderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CF65D1724DD6C080006B001 /* ButtonHolderView.swift */; };
|
4CF65D1824DD6C080006B001 /* ButtonHolderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CF65D1724DD6C080006B001 /* ButtonHolderView.swift */; };
|
||||||
|
|
@ -56,10 +23,6 @@
|
||||||
52421F8F24EAB84900948DD1 /* BaseRxTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52421F8E24EAB84900948DD1 /* BaseRxTableViewCell.swift */; };
|
52421F8F24EAB84900948DD1 /* BaseRxTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52421F8E24EAB84900948DD1 /* BaseRxTableViewCell.swift */; };
|
||||||
52421F9424EBCFAE00948DD1 /* VoidTappableViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52421F9324EBCFAE00948DD1 /* VoidTappableViewModel.swift */; };
|
52421F9424EBCFAE00948DD1 /* VoidTappableViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52421F9324EBCFAE00948DD1 /* VoidTappableViewModel.swift */; };
|
||||||
52421F9624EBCFBB00948DD1 /* BaseTappableViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52421F9524EBCFBB00948DD1 /* BaseTappableViewModel.swift */; };
|
52421F9624EBCFBB00948DD1 /* BaseTappableViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52421F9524EBCFBB00948DD1 /* BaseTappableViewModel.swift */; };
|
||||||
5E23631F25263EFA00E2F96B /* BaseOrientationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E23631E25263EFA00E2F96B /* BaseOrientationController.swift */; };
|
|
||||||
5E2364182526489A00E2F96B /* UIInterfaceOrientation+ VideoOrientation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E2364172526489A00E2F96B /* UIInterfaceOrientation+ VideoOrientation.swift */; };
|
|
||||||
5ED2C0B2251A354E00D4E258 /* BaseOrientationNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5ED2C0B1251A354E00D4E258 /* BaseOrientationNavigationController.swift */; };
|
|
||||||
5ED2C0B5251A366700D4E258 /* UIDevice+ScreenOrientation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5ED2C0B4251A366700D4E258 /* UIDevice+ScreenOrientation.swift */; };
|
|
||||||
67051ADB1EBC7C36008EADC0 /* SpinnerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67051ADA1EBC7C36008EADC0 /* SpinnerView.swift */; };
|
67051ADB1EBC7C36008EADC0 /* SpinnerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67051ADA1EBC7C36008EADC0 /* SpinnerView.swift */; };
|
||||||
67051ADD1EBC7C36008EADC0 /* SpinnerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67051ADA1EBC7C36008EADC0 /* SpinnerView.swift */; };
|
67051ADD1EBC7C36008EADC0 /* SpinnerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67051ADA1EBC7C36008EADC0 /* SpinnerView.swift */; };
|
||||||
6713C23720AF0C4D00875921 /* NetworkOperationState.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6713C23620AF0C4D00875921 /* NetworkOperationState.swift */; };
|
6713C23720AF0C4D00875921 /* NetworkOperationState.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6713C23620AF0C4D00875921 /* NetworkOperationState.swift */; };
|
||||||
|
|
@ -306,7 +269,9 @@
|
||||||
6741CEC220E2430A00FEC4D9 /* UITableView+TableViewHolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6741CEC120E2430900FEC4D9 /* UITableView+TableViewHolder.swift */; };
|
6741CEC220E2430A00FEC4D9 /* UITableView+TableViewHolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6741CEC120E2430900FEC4D9 /* UITableView+TableViewHolder.swift */; };
|
||||||
6741CEC420E2430A00FEC4D9 /* UITableView+TableViewHolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6741CEC120E2430900FEC4D9 /* UITableView+TableViewHolder.swift */; };
|
6741CEC420E2430A00FEC4D9 /* UITableView+TableViewHolder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6741CEC120E2430900FEC4D9 /* UITableView+TableViewHolder.swift */; };
|
||||||
6741CECE20E243F800FEC4D9 /* BaseCustomViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6741CECC20E243F800FEC4D9 /* BaseCustomViewController.swift */; };
|
6741CECE20E243F800FEC4D9 /* BaseCustomViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6741CECC20E243F800FEC4D9 /* BaseCustomViewController.swift */; };
|
||||||
|
6741CED020E243F800FEC4D9 /* BaseCustomViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6741CECC20E243F800FEC4D9 /* BaseCustomViewController.swift */; };
|
||||||
6741CED120E243F800FEC4D9 /* BaseConfigurableController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6741CECD20E243F800FEC4D9 /* BaseConfigurableController.swift */; };
|
6741CED120E243F800FEC4D9 /* BaseConfigurableController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6741CECD20E243F800FEC4D9 /* BaseConfigurableController.swift */; };
|
||||||
|
6741CED320E243F800FEC4D9 /* BaseConfigurableController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6741CECD20E243F800FEC4D9 /* BaseConfigurableController.swift */; };
|
||||||
674303CF214FB8F700EF4160 /* GeneralDataLoadingHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 674303CE214FB8F700EF4160 /* GeneralDataLoadingHandler.swift */; };
|
674303CF214FB8F700EF4160 /* GeneralDataLoadingHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 674303CE214FB8F700EF4160 /* GeneralDataLoadingHandler.swift */; };
|
||||||
674303D1214FB8F700EF4160 /* GeneralDataLoadingHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 674303CE214FB8F700EF4160 /* GeneralDataLoadingHandler.swift */; };
|
674303D1214FB8F700EF4160 /* GeneralDataLoadingHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 674303CE214FB8F700EF4160 /* GeneralDataLoadingHandler.swift */; };
|
||||||
674303D2214FB8F700EF4160 /* GeneralDataLoadingHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 674303CE214FB8F700EF4160 /* GeneralDataLoadingHandler.swift */; };
|
674303D2214FB8F700EF4160 /* GeneralDataLoadingHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 674303CE214FB8F700EF4160 /* GeneralDataLoadingHandler.swift */; };
|
||||||
|
|
@ -318,6 +283,7 @@
|
||||||
675C1FB41F97CA32007D5249 /* AppearanceConfigurable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40F118461F8FEF97004AADAF /* AppearanceConfigurable.swift */; };
|
675C1FB41F97CA32007D5249 /* AppearanceConfigurable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40F118461F8FEF97004AADAF /* AppearanceConfigurable.swift */; };
|
||||||
675C1FB51F97CA33007D5249 /* AppearanceConfigurable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40F118461F8FEF97004AADAF /* AppearanceConfigurable.swift */; };
|
675C1FB51F97CA33007D5249 /* AppearanceConfigurable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40F118461F8FEF97004AADAF /* AppearanceConfigurable.swift */; };
|
||||||
675E0AA921072FF400CDC143 /* BaseScrollContentController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 675E0AA821072FF400CDC143 /* BaseScrollContentController.swift */; };
|
675E0AA921072FF400CDC143 /* BaseScrollContentController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 675E0AA821072FF400CDC143 /* BaseScrollContentController.swift */; };
|
||||||
|
675E0AAB21072FF400CDC143 /* BaseScrollContentController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 675E0AA821072FF400CDC143 /* BaseScrollContentController.swift */; };
|
||||||
6760DC4D212F351700020BAE /* UIView+AddSubviews.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6760DC4C212F351700020BAE /* UIView+AddSubviews.swift */; };
|
6760DC4D212F351700020BAE /* UIView+AddSubviews.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6760DC4C212F351700020BAE /* UIView+AddSubviews.swift */; };
|
||||||
6760DC4F212F351700020BAE /* UIView+AddSubviews.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6760DC4C212F351700020BAE /* UIView+AddSubviews.swift */; };
|
6760DC4F212F351700020BAE /* UIView+AddSubviews.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6760DC4C212F351700020BAE /* UIView+AddSubviews.swift */; };
|
||||||
6762131820A0BBA30034EEF1 /* TableSection+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6762131720A0BBA30034EEF1 /* TableSection+Extensions.swift */; };
|
6762131820A0BBA30034EEF1 /* TableSection+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6762131720A0BBA30034EEF1 /* TableSection+Extensions.swift */; };
|
||||||
|
|
@ -422,9 +388,12 @@
|
||||||
67CAF8C920652E2A00527085 /* TextFieldViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67CAF8C520652E2A00527085 /* TextFieldViewModel.swift */; };
|
67CAF8C920652E2A00527085 /* TextFieldViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67CAF8C520652E2A00527085 /* TextFieldViewModel.swift */; };
|
||||||
67CDEE401EB369BF00895905 /* ConfigurableController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 671462241EB3396E00EAB194 /* ConfigurableController.swift */; };
|
67CDEE401EB369BF00895905 /* ConfigurableController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 671462241EB3396E00EAB194 /* ConfigurableController.swift */; };
|
||||||
67DB7760210869D1001CB56B /* TableViewWrapperView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67DB775F210869D1001CB56B /* TableViewWrapperView.swift */; };
|
67DB7760210869D1001CB56B /* TableViewWrapperView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67DB775F210869D1001CB56B /* TableViewWrapperView.swift */; };
|
||||||
|
67DB7762210869D1001CB56B /* TableViewWrapperView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67DB775F210869D1001CB56B /* TableViewWrapperView.swift */; };
|
||||||
67DB776421086A12001CB56B /* BaseTableContentController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67DB776321086A12001CB56B /* BaseTableContentController.swift */; };
|
67DB776421086A12001CB56B /* BaseTableContentController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67DB776321086A12001CB56B /* BaseTableContentController.swift */; };
|
||||||
67DB776921087154001CB56B /* CollectionViewWrapperView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67DB776821087154001CB56B /* CollectionViewWrapperView.swift */; };
|
67DB776921087154001CB56B /* CollectionViewWrapperView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67DB776821087154001CB56B /* CollectionViewWrapperView.swift */; };
|
||||||
|
67DB776B21087154001CB56B /* CollectionViewWrapperView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67DB776821087154001CB56B /* CollectionViewWrapperView.swift */; };
|
||||||
67DB776D210871E8001CB56B /* BaseCollectionContentController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67DB776C210871E8001CB56B /* BaseCollectionContentController.swift */; };
|
67DB776D210871E8001CB56B /* BaseCollectionContentController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67DB776C210871E8001CB56B /* BaseCollectionContentController.swift */; };
|
||||||
|
67DB776F210871E8001CB56B /* BaseCollectionContentController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67DB776C210871E8001CB56B /* BaseCollectionContentController.swift */; };
|
||||||
67E3524E2119ABE40035BDDB /* UITextField+ViewTextConfigurable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67E3524D2119ABE40035BDDB /* UITextField+ViewTextConfigurable.swift */; };
|
67E3524E2119ABE40035BDDB /* UITextField+ViewTextConfigurable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67E3524D2119ABE40035BDDB /* UITextField+ViewTextConfigurable.swift */; };
|
||||||
67E352502119ABE40035BDDB /* UITextField+ViewTextConfigurable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67E3524D2119ABE40035BDDB /* UITextField+ViewTextConfigurable.swift */; };
|
67E352502119ABE40035BDDB /* UITextField+ViewTextConfigurable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67E3524D2119ABE40035BDDB /* UITextField+ViewTextConfigurable.swift */; };
|
||||||
67E352522119AC060035BDDB /* UIButton+ViewTextConfigurable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67E352512119AC060035BDDB /* UIButton+ViewTextConfigurable.swift */; };
|
67E352522119AC060035BDDB /* UIButton+ViewTextConfigurable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67E352512119AC060035BDDB /* UIButton+ViewTextConfigurable.swift */; };
|
||||||
|
|
@ -500,6 +469,25 @@
|
||||||
72AECC6C224A979D00D12E7C /* BaseSearchViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72AECC6A224A979D00D12E7C /* BaseSearchViewModel.swift */; };
|
72AECC6C224A979D00D12E7C /* BaseSearchViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72AECC6A224A979D00D12E7C /* BaseSearchViewModel.swift */; };
|
||||||
72AECC6F224A97B100D12E7C /* SearchResultsViewControllerState.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72AECC6E224A97B100D12E7C /* SearchResultsViewControllerState.swift */; };
|
72AECC6F224A97B100D12E7C /* SearchResultsViewControllerState.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72AECC6E224A97B100D12E7C /* SearchResultsViewControllerState.swift */; };
|
||||||
72AECC71224A97F100D12E7C /* SearchResultsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72AECC70224A97F000D12E7C /* SearchResultsViewController.swift */; };
|
72AECC71224A97F100D12E7C /* SearchResultsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72AECC70224A97F000D12E7C /* SearchResultsViewController.swift */; };
|
||||||
|
785EDF7C220072B500985ED4 /* SwiftDate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDF76220072B400985ED4 /* SwiftDate.framework */; };
|
||||||
|
785EDF7D220072B500985ED4 /* RxCocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDF77220072B400985ED4 /* RxCocoa.framework */; };
|
||||||
|
785EDF7E220072B500985ED4 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDF78220072B500985ED4 /* Alamofire.framework */; };
|
||||||
|
785EDF7F220072B500985ED4 /* RxAtomic.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDF79220072B500985ED4 /* RxAtomic.framework */; };
|
||||||
|
785EDF80220072B500985ED4 /* RxAlamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDF7A220072B500985ED4 /* RxAlamofire.framework */; };
|
||||||
|
785EDF81220072B500985ED4 /* RxSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDF7B220072B500985ED4 /* RxSwift.framework */; };
|
||||||
|
785EDF8322007DF900985ED4 /* TableKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDF8222007DF900985ED4 /* TableKit.framework */; };
|
||||||
|
785EDF8522007E5200985ED4 /* UIScrollView_InfiniteScroll.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDF8422007E5200985ED4 /* UIScrollView_InfiniteScroll.framework */; };
|
||||||
|
785EDFA1220081F200985ED4 /* RxCocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDF9C220081F100985ED4 /* RxCocoa.framework */; };
|
||||||
|
785EDFA2220081F200985ED4 /* SwiftDate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDF9D220081F100985ED4 /* SwiftDate.framework */; };
|
||||||
|
785EDFA3220081F200985ED4 /* RxSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDF9E220081F100985ED4 /* RxSwift.framework */; };
|
||||||
|
785EDFA4220081F200985ED4 /* RxAtomic.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDF9F220081F100985ED4 /* RxAtomic.framework */; };
|
||||||
|
785EDFA5220081F200985ED4 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDFA0220081F100985ED4 /* Alamofire.framework */; };
|
||||||
|
785EDFB22200833100985ED4 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDFA8220082E600985ED4 /* Alamofire.framework */; };
|
||||||
|
785EDFB32200833100985ED4 /* RxAlamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDFA9220082E600985ED4 /* RxAlamofire.framework */; };
|
||||||
|
785EDFB42200833100985ED4 /* RxAtomic.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDFAB220082E600985ED4 /* RxAtomic.framework */; };
|
||||||
|
785EDFB52200833100985ED4 /* RxCocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDFA7220082E500985ED4 /* RxCocoa.framework */; };
|
||||||
|
785EDFB62200833100985ED4 /* RxSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDFA6220082E500985ED4 /* RxSwift.framework */; };
|
||||||
|
785EDFB72200833100985ED4 /* SwiftDate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 785EDFAA220082E600985ED4 /* SwiftDate.framework */; };
|
||||||
78EC7B1322019F5A0007DCFD /* String+TelpromptURL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78EC7B1222019F5A0007DCFD /* String+TelpromptURL.swift */; };
|
78EC7B1322019F5A0007DCFD /* String+TelpromptURL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78EC7B1222019F5A0007DCFD /* String+TelpromptURL.swift */; };
|
||||||
78EC7B1422019F5A0007DCFD /* String+TelpromptURL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78EC7B1222019F5A0007DCFD /* String+TelpromptURL.swift */; };
|
78EC7B1422019F5A0007DCFD /* String+TelpromptURL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78EC7B1222019F5A0007DCFD /* String+TelpromptURL.swift */; };
|
||||||
78EC7B1522019F5A0007DCFD /* String+TelpromptURL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78EC7B1222019F5A0007DCFD /* String+TelpromptURL.swift */; };
|
78EC7B1522019F5A0007DCFD /* String+TelpromptURL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78EC7B1222019F5A0007DCFD /* String+TelpromptURL.swift */; };
|
||||||
|
|
@ -510,6 +498,7 @@
|
||||||
82B4F8DD223903B800F6708C /* Block.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82B4F8DA223903B800F6708C /* Block.swift */; };
|
82B4F8DD223903B800F6708C /* Block.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82B4F8DA223903B800F6708C /* Block.swift */; };
|
||||||
82D2966D2264B1790067735C /* LabelTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82D2966A2264B1790067735C /* LabelTableViewCell.swift */; };
|
82D2966D2264B1790067735C /* LabelTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82D2966A2264B1790067735C /* LabelTableViewCell.swift */; };
|
||||||
82D2966F2264B1790067735C /* LabelCellViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82D2966C2264B1790067735C /* LabelCellViewModel.swift */; };
|
82D2966F2264B1790067735C /* LabelCellViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82D2966C2264B1790067735C /* LabelCellViewModel.swift */; };
|
||||||
|
82D296712264B4C10067735C /* SnapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 82D296702264B4C10067735C /* SnapKit.framework */; };
|
||||||
82F8BB181F5DDED100C1061B /* Single+DeferredJust.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82F8BB171F5DDED100C1061B /* Single+DeferredJust.swift */; };
|
82F8BB181F5DDED100C1061B /* Single+DeferredJust.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82F8BB171F5DDED100C1061B /* Single+DeferredJust.swift */; };
|
||||||
8546C2E3224E86280059C255 /* ApiUploadRequestParameters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8546C2E2224E86280059C255 /* ApiUploadRequestParameters.swift */; };
|
8546C2E3224E86280059C255 /* ApiUploadRequestParameters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8546C2E2224E86280059C255 /* ApiUploadRequestParameters.swift */; };
|
||||||
8546C2E4224E86280059C255 /* ApiUploadRequestParameters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8546C2E2224E86280059C255 /* ApiUploadRequestParameters.swift */; };
|
8546C2E4224E86280059C255 /* ApiUploadRequestParameters.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8546C2E2224E86280059C255 /* ApiUploadRequestParameters.swift */; };
|
||||||
|
|
@ -565,18 +554,6 @@
|
||||||
40F118461F8FEF97004AADAF /* AppearanceConfigurable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppearanceConfigurable.swift; sourceTree = "<group>"; };
|
40F118461F8FEF97004AADAF /* AppearanceConfigurable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppearanceConfigurable.swift; sourceTree = "<group>"; };
|
||||||
40F118481F8FF223004AADAF /* TableRow+AppearanceExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TableRow+AppearanceExtension.swift"; sourceTree = "<group>"; };
|
40F118481F8FF223004AADAF /* TableRow+AppearanceExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TableRow+AppearanceExtension.swift"; sourceTree = "<group>"; };
|
||||||
411073AE23466B41002DD9B9 /* UIViewController+PresentFullScreen.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIViewController+PresentFullScreen.swift"; sourceTree = "<group>"; };
|
411073AE23466B41002DD9B9 /* UIViewController+PresentFullScreen.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIViewController+PresentFullScreen.swift"; sourceTree = "<group>"; };
|
||||||
4C4C7B46267FE275006F3C70 /* Build */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Build; path = Carthage/Build; sourceTree = "<group>"; };
|
|
||||||
4C4C7B47267FE27E006F3C70 /* RxAlamofire.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = RxAlamofire.xcframework; path = Carthage/Build/RxAlamofire.xcframework; sourceTree = "<group>"; };
|
|
||||||
4C4C7B48267FE27E006F3C70 /* TableKit.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = TableKit.xcframework; path = Carthage/Build/TableKit.xcframework; sourceTree = "<group>"; };
|
|
||||||
4C4C7B49267FE27E006F3C70 /* RxSwift.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = RxSwift.xcframework; path = Carthage/Build/RxSwift.xcframework; sourceTree = "<group>"; };
|
|
||||||
4C4C7B4A267FE27E006F3C70 /* UIScrollView_InfiniteScroll.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = UIScrollView_InfiniteScroll.xcframework; path = Carthage/Build/UIScrollView_InfiniteScroll.xcframework; sourceTree = "<group>"; };
|
|
||||||
4C4C7B4B267FE27E006F3C70 /* SnapKit.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = SnapKit.xcframework; path = Carthage/Build/SnapKit.xcframework; sourceTree = "<group>"; };
|
|
||||||
4C4C7B4C267FE27E006F3C70 /* RxRelay.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = RxRelay.xcframework; path = Carthage/Build/RxRelay.xcframework; sourceTree = "<group>"; };
|
|
||||||
4C4C7B4D267FE27E006F3C70 /* Alamofire.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Alamofire.xcframework; path = Carthage/Build/Alamofire.xcframework; sourceTree = "<group>"; };
|
|
||||||
4C4C7B4E267FE27E006F3C70 /* SwiftDate.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = SwiftDate.xcframework; path = Carthage/Build/SwiftDate.xcframework; sourceTree = "<group>"; };
|
|
||||||
4C4C7B4F267FE27E006F3C70 /* RxBlocking.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = RxBlocking.xcframework; path = Carthage/Build/RxBlocking.xcframework; sourceTree = "<group>"; };
|
|
||||||
4C4C7B50267FE27E006F3C70 /* RxTest.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = RxTest.xcframework; path = Carthage/Build/RxTest.xcframework; sourceTree = "<group>"; };
|
|
||||||
4C4C7B51267FE27E006F3C70 /* RxCocoa.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = RxCocoa.xcframework; path = Carthage/Build/RxCocoa.xcframework; sourceTree = "<group>"; };
|
|
||||||
4CF65D1324DD684A0006B001 /* ButtonHolder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ButtonHolder.swift; sourceTree = "<group>"; };
|
4CF65D1324DD684A0006B001 /* ButtonHolder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ButtonHolder.swift; sourceTree = "<group>"; };
|
||||||
4CF65D1524DD69250006B001 /* UIButton+ButtonHolder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIButton+ButtonHolder.swift"; sourceTree = "<group>"; };
|
4CF65D1524DD69250006B001 /* UIButton+ButtonHolder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIButton+ButtonHolder.swift"; sourceTree = "<group>"; };
|
||||||
4CF65D1724DD6C080006B001 /* ButtonHolderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ButtonHolderView.swift; sourceTree = "<group>"; };
|
4CF65D1724DD6C080006B001 /* ButtonHolderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ButtonHolderView.swift; sourceTree = "<group>"; };
|
||||||
|
|
@ -584,10 +561,6 @@
|
||||||
52421F8E24EAB84900948DD1 /* BaseRxTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseRxTableViewCell.swift; sourceTree = "<group>"; };
|
52421F8E24EAB84900948DD1 /* BaseRxTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseRxTableViewCell.swift; sourceTree = "<group>"; };
|
||||||
52421F9324EBCFAE00948DD1 /* VoidTappableViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VoidTappableViewModel.swift; sourceTree = "<group>"; };
|
52421F9324EBCFAE00948DD1 /* VoidTappableViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VoidTappableViewModel.swift; sourceTree = "<group>"; };
|
||||||
52421F9524EBCFBB00948DD1 /* BaseTappableViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseTappableViewModel.swift; sourceTree = "<group>"; };
|
52421F9524EBCFBB00948DD1 /* BaseTappableViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseTappableViewModel.swift; sourceTree = "<group>"; };
|
||||||
5E23631E25263EFA00E2F96B /* BaseOrientationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseOrientationController.swift; sourceTree = "<group>"; };
|
|
||||||
5E2364172526489A00E2F96B /* UIInterfaceOrientation+ VideoOrientation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIInterfaceOrientation+ VideoOrientation.swift"; sourceTree = "<group>"; };
|
|
||||||
5ED2C0B1251A354E00D4E258 /* BaseOrientationNavigationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseOrientationNavigationController.swift; sourceTree = "<group>"; };
|
|
||||||
5ED2C0B4251A366700D4E258 /* UIDevice+ScreenOrientation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIDevice+ScreenOrientation.swift"; sourceTree = "<group>"; };
|
|
||||||
67051ADA1EBC7C36008EADC0 /* SpinnerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SpinnerView.swift; sourceTree = "<group>"; };
|
67051ADA1EBC7C36008EADC0 /* SpinnerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SpinnerView.swift; sourceTree = "<group>"; };
|
||||||
6713C23620AF0C4D00875921 /* NetworkOperationState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NetworkOperationState.swift; sourceTree = "<group>"; };
|
6713C23620AF0C4D00875921 /* NetworkOperationState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NetworkOperationState.swift; sourceTree = "<group>"; };
|
||||||
6713C23B20AF0D5900875921 /* NetworkOperationModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NetworkOperationModel.swift; sourceTree = "<group>"; };
|
6713C23B20AF0D5900875921 /* NetworkOperationModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NetworkOperationModel.swift; sourceTree = "<group>"; };
|
||||||
|
|
@ -846,17 +819,15 @@
|
||||||
isa = PBXFrameworksBuildPhase;
|
isa = PBXFrameworksBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
4C4C7BCB267FE509006F3C70 /* RxTest.xcframework in Frameworks */,
|
785EDF7E220072B500985ED4 /* Alamofire.framework in Frameworks */,
|
||||||
4C4C7BC1267FE508006F3C70 /* RxAlamofire.xcframework in Frameworks */,
|
785EDF81220072B500985ED4 /* RxSwift.framework in Frameworks */,
|
||||||
4C4C7BC5267FE508006F3C70 /* RxCocoa.xcframework in Frameworks */,
|
785EDF7F220072B500985ED4 /* RxAtomic.framework in Frameworks */,
|
||||||
4C4C7BCF267FE509006F3C70 /* SwiftDate.xcframework in Frameworks */,
|
785EDF7D220072B500985ED4 /* RxCocoa.framework in Frameworks */,
|
||||||
4C4C7BC3267FE508006F3C70 /* RxBlocking.xcframework in Frameworks */,
|
785EDF80220072B500985ED4 /* RxAlamofire.framework in Frameworks */,
|
||||||
4C4C7BCD267FE509006F3C70 /* SnapKit.xcframework in Frameworks */,
|
82D296712264B4C10067735C /* SnapKit.framework in Frameworks */,
|
||||||
4C4C7BC9267FE509006F3C70 /* RxSwift.xcframework in Frameworks */,
|
785EDF7C220072B500985ED4 /* SwiftDate.framework in Frameworks */,
|
||||||
4C4C7BD1267FE509006F3C70 /* TableKit.xcframework in Frameworks */,
|
785EDF8322007DF900985ED4 /* TableKit.framework in Frameworks */,
|
||||||
4C4C7BD3267FE509006F3C70 /* UIScrollView_InfiniteScroll.xcframework in Frameworks */,
|
785EDF8522007E5200985ED4 /* UIScrollView_InfiniteScroll.framework in Frameworks */,
|
||||||
4C4C7BC7267FE509006F3C70 /* RxRelay.xcframework in Frameworks */,
|
|
||||||
4C4C7BBF267FE508006F3C70 /* Alamofire.xcframework in Frameworks */,
|
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
|
|
@ -864,13 +835,11 @@
|
||||||
isa = PBXFrameworksBuildPhase;
|
isa = PBXFrameworksBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
4C4C7B56267FE27E006F3C70 /* RxSwift.xcframework in Frameworks */,
|
785EDFA5220081F200985ED4 /* Alamofire.framework in Frameworks */,
|
||||||
4C4C7B62267FE27E006F3C70 /* RxBlocking.xcframework in Frameworks */,
|
785EDFA4220081F200985ED4 /* RxAtomic.framework in Frameworks */,
|
||||||
4C4C7B52267FE27E006F3C70 /* RxAlamofire.xcframework in Frameworks */,
|
785EDFA1220081F200985ED4 /* RxCocoa.framework in Frameworks */,
|
||||||
4C4C7B66267FE27F006F3C70 /* RxCocoa.xcframework in Frameworks */,
|
785EDFA2220081F200985ED4 /* SwiftDate.framework in Frameworks */,
|
||||||
4C4C7B5C267FE27E006F3C70 /* RxRelay.xcframework in Frameworks */,
|
785EDFA3220081F200985ED4 /* RxSwift.framework in Frameworks */,
|
||||||
4C4C7B5E267FE27E006F3C70 /* Alamofire.xcframework in Frameworks */,
|
|
||||||
4C4C7B60267FE27E006F3C70 /* SwiftDate.xcframework in Frameworks */,
|
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
|
|
@ -878,15 +847,12 @@
|
||||||
isa = PBXFrameworksBuildPhase;
|
isa = PBXFrameworksBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
4C4C7B96267FE365006F3C70 /* RxTest.xcframework in Frameworks */,
|
785EDFB22200833100985ED4 /* Alamofire.framework in Frameworks */,
|
||||||
4C4C7B8C267FE364006F3C70 /* RxAlamofire.xcframework in Frameworks */,
|
785EDFB42200833100985ED4 /* RxAtomic.framework in Frameworks */,
|
||||||
4C4C7B90267FE365006F3C70 /* RxCocoa.xcframework in Frameworks */,
|
785EDFB62200833100985ED4 /* RxSwift.framework in Frameworks */,
|
||||||
4C4C7B9A267FE365006F3C70 /* SwiftDate.xcframework in Frameworks */,
|
785EDFB52200833100985ED4 /* RxCocoa.framework in Frameworks */,
|
||||||
4C4C7B8E267FE365006F3C70 /* RxBlocking.xcframework in Frameworks */,
|
785EDFB32200833100985ED4 /* RxAlamofire.framework in Frameworks */,
|
||||||
4C4C7B98267FE365006F3C70 /* SnapKit.xcframework in Frameworks */,
|
785EDFB72200833100985ED4 /* SwiftDate.framework in Frameworks */,
|
||||||
4C4C7B94267FE365006F3C70 /* RxSwift.xcframework in Frameworks */,
|
|
||||||
4C4C7B92267FE365006F3C70 /* RxRelay.xcframework in Frameworks */,
|
|
||||||
4C4C7B8A267FE364006F3C70 /* Alamofire.xcframework in Frameworks */,
|
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
|
|
@ -944,22 +910,6 @@
|
||||||
path = TappableViewModel;
|
path = TappableViewModel;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
5E2364162526488300E2F96B /* UIInterfaceOrientation */ = {
|
|
||||||
isa = PBXGroup;
|
|
||||||
children = (
|
|
||||||
5E2364172526489A00E2F96B /* UIInterfaceOrientation+ VideoOrientation.swift */,
|
|
||||||
);
|
|
||||||
path = UIInterfaceOrientation;
|
|
||||||
sourceTree = "<group>";
|
|
||||||
};
|
|
||||||
5ED2C0B3251A365800D4E258 /* UIDevice */ = {
|
|
||||||
isa = PBXGroup;
|
|
||||||
children = (
|
|
||||||
5ED2C0B4251A366700D4E258 /* UIDevice+ScreenOrientation.swift */,
|
|
||||||
);
|
|
||||||
path = UIDevice;
|
|
||||||
sourceTree = "<group>";
|
|
||||||
};
|
|
||||||
671461C41EB3396E00EAB194 /* Classes */ = {
|
671461C41EB3396E00EAB194 /* Classes */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
|
|
@ -1042,7 +992,6 @@
|
||||||
671461DA1EB3396E00EAB194 /* Extensions */ = {
|
671461DA1EB3396E00EAB194 /* Extensions */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
5E2364162526488300E2F96B /* UIInterfaceOrientation */,
|
|
||||||
6732F23C214C09DF00B446F2 /* Foundation */,
|
6732F23C214C09DF00B446F2 /* Foundation */,
|
||||||
671461DB1EB3396E00EAB194 /* Alamofire */,
|
671461DB1EB3396E00EAB194 /* Alamofire */,
|
||||||
EFBE57CE1EC35ED90040E00A /* Array */,
|
EFBE57CE1EC35ED90040E00A /* Array */,
|
||||||
|
|
@ -1426,7 +1375,6 @@
|
||||||
672947E0206EA36B00AC6B6B /* UIKit */ = {
|
672947E0206EA36B00AC6B6B /* UIKit */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
5ED2C0B3251A365800D4E258 /* UIDevice */,
|
|
||||||
6741CEB220E242B600FEC4D9 /* CollectionViewHolder */,
|
6741CEB220E242B600FEC4D9 /* CollectionViewHolder */,
|
||||||
6741CEAD20E2428A00FEC4D9 /* TableViewHolder */,
|
6741CEAD20E2428A00FEC4D9 /* TableViewHolder */,
|
||||||
674AF55A1EC45B1600038A8F /* UIActivityIndicatorView */,
|
674AF55A1EC45B1600038A8F /* UIActivityIndicatorView */,
|
||||||
|
|
@ -1587,8 +1535,6 @@
|
||||||
6741CECC20E243F800FEC4D9 /* BaseCustomViewController.swift */,
|
6741CECC20E243F800FEC4D9 /* BaseCustomViewController.swift */,
|
||||||
675E0AA821072FF400CDC143 /* BaseScrollContentController.swift */,
|
675E0AA821072FF400CDC143 /* BaseScrollContentController.swift */,
|
||||||
67DB776321086A12001CB56B /* BaseTableContentController.swift */,
|
67DB776321086A12001CB56B /* BaseTableContentController.swift */,
|
||||||
5ED2C0B1251A354E00D4E258 /* BaseOrientationNavigationController.swift */,
|
|
||||||
5E23631E25263EFA00E2F96B /* BaseOrientationController.swift */,
|
|
||||||
);
|
);
|
||||||
path = Controllers;
|
path = Controllers;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
|
|
@ -2063,18 +2009,6 @@
|
||||||
785EDF75220072B400985ED4 /* Frameworks */ = {
|
785EDF75220072B400985ED4 /* Frameworks */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
4C4C7B4D267FE27E006F3C70 /* Alamofire.xcframework */,
|
|
||||||
4C4C7B47267FE27E006F3C70 /* RxAlamofire.xcframework */,
|
|
||||||
4C4C7B4F267FE27E006F3C70 /* RxBlocking.xcframework */,
|
|
||||||
4C4C7B51267FE27E006F3C70 /* RxCocoa.xcframework */,
|
|
||||||
4C4C7B4C267FE27E006F3C70 /* RxRelay.xcframework */,
|
|
||||||
4C4C7B49267FE27E006F3C70 /* RxSwift.xcframework */,
|
|
||||||
4C4C7B50267FE27E006F3C70 /* RxTest.xcframework */,
|
|
||||||
4C4C7B4B267FE27E006F3C70 /* SnapKit.xcframework */,
|
|
||||||
4C4C7B4E267FE27E006F3C70 /* SwiftDate.xcframework */,
|
|
||||||
4C4C7B48267FE27E006F3C70 /* TableKit.xcframework */,
|
|
||||||
4C4C7B4A267FE27E006F3C70 /* UIScrollView_InfiniteScroll.xcframework */,
|
|
||||||
4C4C7B46267FE275006F3C70 /* Build */,
|
|
||||||
82D296702264B4C10067735C /* SnapKit.framework */,
|
82D296702264B4C10067735C /* SnapKit.framework */,
|
||||||
785EDFA0220081F100985ED4 /* Alamofire.framework */,
|
785EDFA0220081F100985ED4 /* Alamofire.framework */,
|
||||||
785EDF9F220081F100985ED4 /* RxAtomic.framework */,
|
785EDF9F220081F100985ED4 /* RxAtomic.framework */,
|
||||||
|
|
@ -2340,7 +2274,7 @@
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
LastSwiftUpdateCheck = 0830;
|
LastSwiftUpdateCheck = 0830;
|
||||||
LastUpgradeCheck = 1230;
|
LastUpgradeCheck = 1020;
|
||||||
ORGANIZATIONNAME = "Touch Instinct";
|
ORGANIZATIONNAME = "Touch Instinct";
|
||||||
TargetAttributes = {
|
TargetAttributes = {
|
||||||
67186B271EB248F100CFAFFB = {
|
67186B271EB248F100CFAFFB = {
|
||||||
|
|
@ -2364,7 +2298,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
buildConfigurationList = 78CFEE241C5C456B00F50370 /* Build configuration list for PBXProject "LeadKit" */;
|
buildConfigurationList = 78CFEE241C5C456B00F50370 /* Build configuration list for PBXProject "LeadKit" */;
|
||||||
compatibilityVersion = "Xcode 12.0";
|
compatibilityVersion = "Xcode 3.2";
|
||||||
developmentRegion = en;
|
developmentRegion = en;
|
||||||
hasScannedForEncodings = 0;
|
hasScannedForEncodings = 0;
|
||||||
knownRegions = (
|
knownRegions = (
|
||||||
|
|
@ -2550,7 +2484,6 @@
|
||||||
6774528D20625C9E0024EEEF /* GeneralDataLoadingState.swift in Sources */,
|
6774528D20625C9E0024EEEF /* GeneralDataLoadingState.swift in Sources */,
|
||||||
72005A1F2266226800ECE090 /* CustomizableButtonViewModel.swift in Sources */,
|
72005A1F2266226800ECE090 /* CustomizableButtonViewModel.swift in Sources */,
|
||||||
677B06C4211884F3006C947D /* BaseTextAttributes.swift in Sources */,
|
677B06C4211884F3006C947D /* BaseTextAttributes.swift in Sources */,
|
||||||
5ED2C0B2251A354E00D4E258 /* BaseOrientationNavigationController.swift in Sources */,
|
|
||||||
675E0AA921072FF400CDC143 /* BaseScrollContentController.swift in Sources */,
|
675E0AA921072FF400CDC143 /* BaseScrollContentController.swift in Sources */,
|
||||||
671463901EB3396E00EAB194 /* TemplateDrawingOperation.swift in Sources */,
|
671463901EB3396E00EAB194 /* TemplateDrawingOperation.swift in Sources */,
|
||||||
A658E54D1F8CD7790093527A /* TableRow+SeparatorsExtensions.swift in Sources */,
|
A658E54D1F8CD7790093527A /* TableRow+SeparatorsExtensions.swift in Sources */,
|
||||||
|
|
@ -2564,7 +2497,6 @@
|
||||||
82D2966D2264B1790067735C /* LabelTableViewCell.swift in Sources */,
|
82D2966D2264B1790067735C /* LabelTableViewCell.swift in Sources */,
|
||||||
671463301EB3396E00EAB194 /* CursorType.swift in Sources */,
|
671463301EB3396E00EAB194 /* CursorType.swift in Sources */,
|
||||||
67FDC25F1FA310EA00C76A77 /* RequestError.swift in Sources */,
|
67FDC25F1FA310EA00C76A77 /* RequestError.swift in Sources */,
|
||||||
5E2364182526489A00E2F96B /* UIInterfaceOrientation+ VideoOrientation.swift in Sources */,
|
|
||||||
677B06A021186A69006C947D /* SharedSequence+Extensions.swift in Sources */,
|
677B06A021186A69006C947D /* SharedSequence+Extensions.swift in Sources */,
|
||||||
6760DC4D212F351700020BAE /* UIView+AddSubviews.swift in Sources */,
|
6760DC4D212F351700020BAE /* UIView+AddSubviews.swift in Sources */,
|
||||||
67745268206249360024EEEF /* UITableView+PaginationWrappable.swift in Sources */,
|
67745268206249360024EEEF /* UITableView+PaginationWrappable.swift in Sources */,
|
||||||
|
|
@ -2593,7 +2525,6 @@
|
||||||
67E902572125B66E008EDF45 /* UIImageView+ExpandCollapseDisclosure.swift in Sources */,
|
67E902572125B66E008EDF45 /* UIImageView+ExpandCollapseDisclosure.swift in Sources */,
|
||||||
671462781EB3396E00EAB194 /* ResizeMode.swift in Sources */,
|
671462781EB3396E00EAB194 /* ResizeMode.swift in Sources */,
|
||||||
67E902512125B064008EDF45 /* BuildInNumberTypes+NSNumberConvertible.swift in Sources */,
|
67E902512125B064008EDF45 /* BuildInNumberTypes+NSNumberConvertible.swift in Sources */,
|
||||||
5ED2C0B5251A366700D4E258 /* UIDevice+ScreenOrientation.swift in Sources */,
|
|
||||||
A676AE551F98112E001F9214 /* ObservableMappable.swift in Sources */,
|
A676AE551F98112E001F9214 /* ObservableMappable.swift in Sources */,
|
||||||
6741CEA520E2418200FEC4D9 /* TableViewHolder.swift in Sources */,
|
6741CEA520E2418200FEC4D9 /* TableViewHolder.swift in Sources */,
|
||||||
8546C2E3224E86280059C255 /* ApiUploadRequestParameters.swift in Sources */,
|
8546C2E3224E86280059C255 /* ApiUploadRequestParameters.swift in Sources */,
|
||||||
|
|
@ -2639,7 +2570,6 @@
|
||||||
671463081EB3396E00EAB194 /* UIView+Rotation.swift in Sources */,
|
671463081EB3396E00EAB194 /* UIView+Rotation.swift in Sources */,
|
||||||
6714626C1EB3396E00EAB194 /* XibView.swift in Sources */,
|
6714626C1EB3396E00EAB194 /* XibView.swift in Sources */,
|
||||||
67274778206CD0B500725163 /* UILabel+ViewTextConfigurable.swift in Sources */,
|
67274778206CD0B500725163 /* UILabel+ViewTextConfigurable.swift in Sources */,
|
||||||
5E23631F25263EFA00E2F96B /* BaseOrientationController.swift in Sources */,
|
|
||||||
67ED2BE520B44F4300508B3E /* InitializableView+DefaultImplementation.swift in Sources */,
|
67ED2BE520B44F4300508B3E /* InitializableView+DefaultImplementation.swift in Sources */,
|
||||||
36FE777020F669E300284C09 /* String+ConvertToHost.swift in Sources */,
|
36FE777020F669E300284C09 /* String+ConvertToHost.swift in Sources */,
|
||||||
6774529220625D170024EEEF /* GeneralDataLoadingModel.swift in Sources */,
|
6774529220625D170024EEEF /* GeneralDataLoadingModel.swift in Sources */,
|
||||||
|
|
@ -2729,8 +2659,6 @@
|
||||||
isa = PBXSourcesBuildPhase;
|
isa = PBXSourcesBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
4C4C7B83267FE32F006F3C70 /* Decimal+Values.swift in Sources */,
|
|
||||||
4C4C7B7F267FE319006F3C70 /* Decimal+Rounding.swift in Sources */,
|
|
||||||
67EB7FE620615DE000BDD9FB /* DataSource.swift in Sources */,
|
67EB7FE620615DE000BDD9FB /* DataSource.swift in Sources */,
|
||||||
6714634A1EB3396E00EAB194 /* ResettableType.swift in Sources */,
|
6714634A1EB3396E00EAB194 /* ResettableType.swift in Sources */,
|
||||||
6713C23E20AF0D5900875921 /* NetworkOperationModel.swift in Sources */,
|
6713C23E20AF0D5900875921 /* NetworkOperationModel.swift in Sources */,
|
||||||
|
|
@ -2857,10 +2785,6 @@
|
||||||
isa = PBXSourcesBuildPhase;
|
isa = PBXSourcesBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
4C4C7BBA267FE4DD006F3C70 /* ButtonHolder.swift in Sources */,
|
|
||||||
4C4C7BB7267FE4C9006F3C70 /* ButtonHolderView.swift in Sources */,
|
|
||||||
4C4C7BA7267FE3F6006F3C70 /* Decimal+Rounding.swift in Sources */,
|
|
||||||
4C4C7BA8267FE3F6006F3C70 /* Decimal+Values.swift in Sources */,
|
|
||||||
6714634B1EB3396E00EAB194 /* ResettableType.swift in Sources */,
|
6714634B1EB3396E00EAB194 /* ResettableType.swift in Sources */,
|
||||||
82B4F8DD223903B800F6708C /* Block.swift in Sources */,
|
82B4F8DD223903B800F6708C /* Block.swift in Sources */,
|
||||||
671462E71EB3396E00EAB194 /* UIColor+Hex.swift in Sources */,
|
671462E71EB3396E00EAB194 /* UIColor+Hex.swift in Sources */,
|
||||||
|
|
@ -2902,6 +2826,7 @@
|
||||||
671463A51EB33FF600EAB194 /* Animatable.swift in Sources */,
|
671463A51EB33FF600EAB194 /* Animatable.swift in Sources */,
|
||||||
67CAF8C920652E2A00527085 /* TextFieldViewModel.swift in Sources */,
|
67CAF8C920652E2A00527085 /* TextFieldViewModel.swift in Sources */,
|
||||||
67E352592119ACF30035BDDB /* ViewTextConfigurable+Extensions.swift in Sources */,
|
67E352592119ACF30035BDDB /* ViewTextConfigurable+Extensions.swift in Sources */,
|
||||||
|
675E0AAB21072FF400CDC143 /* BaseScrollContentController.swift in Sources */,
|
||||||
6714629B1EB3396E00EAB194 /* CGSize+Resize.swift in Sources */,
|
6714629B1EB3396E00EAB194 /* CGSize+Resize.swift in Sources */,
|
||||||
677B06C221187559006C947D /* ViewTextConfigurable.swift in Sources */,
|
677B06C221187559006C947D /* ViewTextConfigurable.swift in Sources */,
|
||||||
671463331EB3396E00EAB194 /* CursorType.swift in Sources */,
|
671463331EB3396E00EAB194 /* CursorType.swift in Sources */,
|
||||||
|
|
@ -2924,6 +2849,7 @@
|
||||||
6714632B1EB3396E00EAB194 /* BaseViewModel.swift in Sources */,
|
6714632B1EB3396E00EAB194 /* BaseViewModel.swift in Sources */,
|
||||||
673564F42068C2AD00F0CBED /* NumberFormattingService+DefaultImplementation.swift in Sources */,
|
673564F42068C2AD00F0CBED /* NumberFormattingService+DefaultImplementation.swift in Sources */,
|
||||||
677452A220625EEE0024EEEF /* PaginationDataLoadingModel.swift in Sources */,
|
677452A220625EEE0024EEEF /* PaginationDataLoadingModel.swift in Sources */,
|
||||||
|
67DB776F210871E8001CB56B /* BaseCollectionContentController.swift in Sources */,
|
||||||
673CF4362063E29B00C329F6 /* TextWithButtonPlaceholder.swift in Sources */,
|
673CF4362063E29B00C329F6 /* TextWithButtonPlaceholder.swift in Sources */,
|
||||||
A6F32C0C1F6EBE5C00AC08EE /* String+LocalizedComponent.swift in Sources */,
|
A6F32C0C1F6EBE5C00AC08EE /* String+LocalizedComponent.swift in Sources */,
|
||||||
6741CEB620E242C100FEC4D9 /* CollectionViewHolder+ScrollViewHolder.swift in Sources */,
|
6741CEB620E242C100FEC4D9 /* CollectionViewHolder+ScrollViewHolder.swift in Sources */,
|
||||||
|
|
@ -2940,6 +2866,7 @@
|
||||||
67745289206259CF0024EEEF /* Rx+RxDataSourceProtocol.swift in Sources */,
|
67745289206259CF0024EEEF /* Rx+RxDataSourceProtocol.swift in Sources */,
|
||||||
67386A8F206CF3F6004EDA6C /* DateFormattingService+DefaultImplementation.swift in Sources */,
|
67386A8F206CF3F6004EDA6C /* DateFormattingService+DefaultImplementation.swift in Sources */,
|
||||||
671463071EB3396E00EAB194 /* UIView+LoadingIndicator.swift in Sources */,
|
671463071EB3396E00EAB194 /* UIView+LoadingIndicator.swift in Sources */,
|
||||||
|
67DB7762210869D1001CB56B /* TableViewWrapperView.swift in Sources */,
|
||||||
6774526E206249E30024EEEF /* UICollectionView+BackgroundViewHolder.swift in Sources */,
|
6774526E206249E30024EEEF /* UICollectionView+BackgroundViewHolder.swift in Sources */,
|
||||||
671463A91EB340C000EAB194 /* UIViewController+ConfigurableController.swift in Sources */,
|
671463A91EB340C000EAB194 /* UIViewController+ConfigurableController.swift in Sources */,
|
||||||
673564F92068C68D00F0CBED /* NumberFormat.swift in Sources */,
|
673564F92068C68D00F0CBED /* NumberFormat.swift in Sources */,
|
||||||
|
|
@ -2962,12 +2889,14 @@
|
||||||
67EB7FD720615D1700BDD9FB /* ResettableCursorType.swift in Sources */,
|
67EB7FD720615D1700BDD9FB /* ResettableCursorType.swift in Sources */,
|
||||||
671463371EB3396E00EAB194 /* DrawingOperation.swift in Sources */,
|
671463371EB3396E00EAB194 /* DrawingOperation.swift in Sources */,
|
||||||
67153E3D207DFADA0049D8C0 /* RotateDrawingOperation.swift in Sources */,
|
67153E3D207DFADA0049D8C0 /* RotateDrawingOperation.swift in Sources */,
|
||||||
|
6741CED320E243F800FEC4D9 /* BaseConfigurableController.swift in Sources */,
|
||||||
67274782206CD3BD00725163 /* ViewText+Extensions.swift in Sources */,
|
67274782206CD3BD00725163 /* ViewText+Extensions.swift in Sources */,
|
||||||
673CF42E2063DE5900C329F6 /* TextPlaceholderView.swift in Sources */,
|
673CF42E2063DE5900C329F6 /* TextPlaceholderView.swift in Sources */,
|
||||||
6741CEB120E242A500FEC4D9 /* TableViewHolder+ScrollViewHolder.swift in Sources */,
|
6741CEB120E242A500FEC4D9 /* TableViewHolder+ScrollViewHolder.swift in Sources */,
|
||||||
6741CEA320E2416C00FEC4D9 /* ScrollViewHolder.swift in Sources */,
|
6741CEA320E2416C00FEC4D9 /* ScrollViewHolder.swift in Sources */,
|
||||||
B84CB06B20B702260090DB91 /* Encodable+Extensions.swift in Sources */,
|
B84CB06B20B702260090DB91 /* Encodable+Extensions.swift in Sources */,
|
||||||
671462731EB3396E00EAB194 /* CursorError.swift in Sources */,
|
671462731EB3396E00EAB194 /* CursorError.swift in Sources */,
|
||||||
|
6741CED020E243F800FEC4D9 /* BaseCustomViewController.swift in Sources */,
|
||||||
6732F242214C09F900B446F2 /* UserDefaults+Codable.swift in Sources */,
|
6732F242214C09F900B446F2 /* UserDefaults+Codable.swift in Sources */,
|
||||||
677B06B521186C14006C947D /* Completable+DeferredJust.swift in Sources */,
|
677B06B521186C14006C947D /* Completable+DeferredJust.swift in Sources */,
|
||||||
6727478D206CD83600725163 /* DateFormat.swift in Sources */,
|
6727478D206CD83600725163 /* DateFormat.swift in Sources */,
|
||||||
|
|
@ -3003,6 +2932,7 @@
|
||||||
6714637B1EB3396E00EAB194 /* CALayerDrawingOperation.swift in Sources */,
|
6714637B1EB3396E00EAB194 /* CALayerDrawingOperation.swift in Sources */,
|
||||||
67E902592125B66E008EDF45 /* UIImageView+ExpandCollapseDisclosure.swift in Sources */,
|
67E902592125B66E008EDF45 /* UIImageView+ExpandCollapseDisclosure.swift in Sources */,
|
||||||
6741CEA720E2418200FEC4D9 /* TableViewHolder.swift in Sources */,
|
6741CEA720E2418200FEC4D9 /* TableViewHolder.swift in Sources */,
|
||||||
|
67DB776B21087154001CB56B /* CollectionViewWrapperView.swift in Sources */,
|
||||||
6774529520625D170024EEEF /* GeneralDataLoadingModel.swift in Sources */,
|
6774529520625D170024EEEF /* GeneralDataLoadingModel.swift in Sources */,
|
||||||
6713C23A20AF0C4D00875921 /* NetworkOperationState.swift in Sources */,
|
6713C23A20AF0C4D00875921 /* NetworkOperationState.swift in Sources */,
|
||||||
6774529D20625E5B0024EEEF /* PaginationDataLoadingState.swift in Sources */,
|
6774529D20625E5B0024EEEF /* PaginationDataLoadingState.swift in Sources */,
|
||||||
|
|
@ -3057,12 +2987,8 @@
|
||||||
);
|
);
|
||||||
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info-iOS.plist";
|
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info-iOS.plist";
|
||||||
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
||||||
LD_RUNPATH_SEARCH_PATHS = (
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
||||||
"$(inherited)",
|
|
||||||
"@executable_path/Frameworks",
|
|
||||||
"@loader_path/Frameworks",
|
|
||||||
);
|
|
||||||
OTHER_SWIFT_FLAGS = "$(inherited) -Xfrontend -warn-long-expression-type-checking=200 -Xfrontend -warn-long-function-bodies=200 -Xfrontend -debug-time-function-bodies";
|
OTHER_SWIFT_FLAGS = "$(inherited) -Xfrontend -warn-long-expression-type-checking=200 -Xfrontend -warn-long-function-bodies=200 -Xfrontend -debug-time-function-bodies";
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = "ru.touchin.LeadKit-iOS";
|
PRODUCT_BUNDLE_IDENTIFIER = "ru.touchin.LeadKit-iOS";
|
||||||
PRODUCT_NAME = LeadKit;
|
PRODUCT_NAME = LeadKit;
|
||||||
|
|
@ -3091,12 +3017,8 @@
|
||||||
);
|
);
|
||||||
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info-iOS.plist";
|
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info-iOS.plist";
|
||||||
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
||||||
LD_RUNPATH_SEARCH_PATHS = (
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
||||||
"$(inherited)",
|
|
||||||
"@executable_path/Frameworks",
|
|
||||||
"@loader_path/Frameworks",
|
|
||||||
);
|
|
||||||
OTHER_SWIFT_FLAGS = "$(inherited) -Xfrontend -warn-long-expression-type-checking=200 -Xfrontend -warn-long-function-bodies=200 -Xfrontend -debug-time-function-bodies";
|
OTHER_SWIFT_FLAGS = "$(inherited) -Xfrontend -warn-long-expression-type-checking=200 -Xfrontend -warn-long-function-bodies=200 -Xfrontend -debug-time-function-bodies";
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = "ru.touchin.LeadKit-iOS";
|
PRODUCT_BUNDLE_IDENTIFIER = "ru.touchin.LeadKit-iOS";
|
||||||
PRODUCT_NAME = LeadKit;
|
PRODUCT_NAME = LeadKit;
|
||||||
|
|
@ -3124,11 +3046,7 @@
|
||||||
);
|
);
|
||||||
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info-watchOS.plist";
|
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info-watchOS.plist";
|
||||||
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
||||||
LD_RUNPATH_SEARCH_PATHS = (
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
||||||
"$(inherited)",
|
|
||||||
"@executable_path/Frameworks",
|
|
||||||
"@loader_path/Frameworks",
|
|
||||||
);
|
|
||||||
OTHER_SWIFT_FLAGS = "$(inherited) -Xfrontend -warn-long-expression-type-checking=200 -Xfrontend -warn-long-function-bodies=200 -Xfrontend -debug-time-function-bodies";
|
OTHER_SWIFT_FLAGS = "$(inherited) -Xfrontend -warn-long-expression-type-checking=200 -Xfrontend -warn-long-function-bodies=200 -Xfrontend -debug-time-function-bodies";
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = "ru.touchin.LeadKit-watchOS";
|
PRODUCT_BUNDLE_IDENTIFIER = "ru.touchin.LeadKit-watchOS";
|
||||||
PRODUCT_NAME = LeadKit;
|
PRODUCT_NAME = LeadKit;
|
||||||
|
|
@ -3160,11 +3078,7 @@
|
||||||
);
|
);
|
||||||
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info-watchOS.plist";
|
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info-watchOS.plist";
|
||||||
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
||||||
LD_RUNPATH_SEARCH_PATHS = (
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
||||||
"$(inherited)",
|
|
||||||
"@executable_path/Frameworks",
|
|
||||||
"@loader_path/Frameworks",
|
|
||||||
);
|
|
||||||
OTHER_SWIFT_FLAGS = "$(inherited) -Xfrontend -warn-long-expression-type-checking=200 -Xfrontend -warn-long-function-bodies=200 -Xfrontend -debug-time-function-bodies";
|
OTHER_SWIFT_FLAGS = "$(inherited) -Xfrontend -warn-long-expression-type-checking=200 -Xfrontend -warn-long-function-bodies=200 -Xfrontend -debug-time-function-bodies";
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = "ru.touchin.LeadKit-watchOS";
|
PRODUCT_BUNDLE_IDENTIFIER = "ru.touchin.LeadKit-watchOS";
|
||||||
PRODUCT_NAME = LeadKit;
|
PRODUCT_NAME = LeadKit;
|
||||||
|
|
@ -3194,11 +3108,7 @@
|
||||||
);
|
);
|
||||||
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info-tvOS.plist";
|
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info-tvOS.plist";
|
||||||
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
||||||
LD_RUNPATH_SEARCH_PATHS = (
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
||||||
"$(inherited)",
|
|
||||||
"@executable_path/Frameworks",
|
|
||||||
"@loader_path/Frameworks",
|
|
||||||
);
|
|
||||||
OTHER_SWIFT_FLAGS = "$(inherited) -Xfrontend -warn-long-expression-type-checking=200 -Xfrontend -warn-long-function-bodies=200 -Xfrontend -debug-time-function-bodies";
|
OTHER_SWIFT_FLAGS = "$(inherited) -Xfrontend -warn-long-expression-type-checking=200 -Xfrontend -warn-long-function-bodies=200 -Xfrontend -debug-time-function-bodies";
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = "ru.touchin.LeadKit-tvOS";
|
PRODUCT_BUNDLE_IDENTIFIER = "ru.touchin.LeadKit-tvOS";
|
||||||
PRODUCT_NAME = LeadKit;
|
PRODUCT_NAME = LeadKit;
|
||||||
|
|
@ -3207,7 +3117,7 @@
|
||||||
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
||||||
SWIFT_VERSION = 4.2;
|
SWIFT_VERSION = 4.2;
|
||||||
TARGETED_DEVICE_FAMILY = 3;
|
TARGETED_DEVICE_FAMILY = 3;
|
||||||
TVOS_DEPLOYMENT_TARGET = 10.0;
|
TVOS_DEPLOYMENT_TARGET = 9.0;
|
||||||
};
|
};
|
||||||
name = Debug;
|
name = Debug;
|
||||||
};
|
};
|
||||||
|
|
@ -3229,11 +3139,7 @@
|
||||||
);
|
);
|
||||||
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info-tvOS.plist";
|
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info-tvOS.plist";
|
||||||
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
||||||
LD_RUNPATH_SEARCH_PATHS = (
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
||||||
"$(inherited)",
|
|
||||||
"@executable_path/Frameworks",
|
|
||||||
"@loader_path/Frameworks",
|
|
||||||
);
|
|
||||||
OTHER_SWIFT_FLAGS = "$(inherited) -Xfrontend -warn-long-expression-type-checking=200 -Xfrontend -warn-long-function-bodies=200 -Xfrontend -debug-time-function-bodies";
|
OTHER_SWIFT_FLAGS = "$(inherited) -Xfrontend -warn-long-expression-type-checking=200 -Xfrontend -warn-long-function-bodies=200 -Xfrontend -debug-time-function-bodies";
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = "ru.touchin.LeadKit-tvOS";
|
PRODUCT_BUNDLE_IDENTIFIER = "ru.touchin.LeadKit-tvOS";
|
||||||
PRODUCT_NAME = LeadKit;
|
PRODUCT_NAME = LeadKit;
|
||||||
|
|
@ -3241,7 +3147,7 @@
|
||||||
SKIP_INSTALL = YES;
|
SKIP_INSTALL = YES;
|
||||||
SWIFT_VERSION = 4.2;
|
SWIFT_VERSION = 4.2;
|
||||||
TARGETED_DEVICE_FAMILY = 3;
|
TARGETED_DEVICE_FAMILY = 3;
|
||||||
TVOS_DEPLOYMENT_TARGET = 10.0;
|
TVOS_DEPLOYMENT_TARGET = 9.0;
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
|
@ -3268,7 +3174,6 @@
|
||||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
||||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||||
|
|
@ -3294,7 +3199,7 @@
|
||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
||||||
MTL_ENABLE_DEBUG_INFO = YES;
|
MTL_ENABLE_DEBUG_INFO = YES;
|
||||||
ONLY_ACTIVE_ARCH = YES;
|
ONLY_ACTIVE_ARCH = YES;
|
||||||
SDKROOT = iphoneos;
|
SDKROOT = iphoneos;
|
||||||
|
|
@ -3328,7 +3233,6 @@
|
||||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
||||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||||
|
|
@ -3348,11 +3252,10 @@
|
||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
||||||
MTL_ENABLE_DEBUG_INFO = NO;
|
MTL_ENABLE_DEBUG_INFO = NO;
|
||||||
SDKROOT = iphoneos;
|
SDKROOT = iphoneos;
|
||||||
SWIFT_COMPILATION_MODE = wholemodule;
|
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
|
||||||
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
||||||
TARGETED_DEVICE_FAMILY = "1,2";
|
TARGETED_DEVICE_FAMILY = "1,2";
|
||||||
VALIDATE_PRODUCT = YES;
|
VALIDATE_PRODUCT = YES;
|
||||||
VERSIONING_SYSTEM = "apple-generic";
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1230"
|
LastUpgradeVersion = "1020"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
@ -27,15 +27,6 @@
|
||||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||||
<MacroExpansion>
|
|
||||||
<BuildableReference
|
|
||||||
BuildableIdentifier = "primary"
|
|
||||||
BlueprintIdentifier = "67186B271EB248F100CFAFFB"
|
|
||||||
BuildableName = "LeadKit.framework"
|
|
||||||
BlueprintName = "LeadKit iOS"
|
|
||||||
ReferencedContainer = "container:LeadKit.xcodeproj">
|
|
||||||
</BuildableReference>
|
|
||||||
</MacroExpansion>
|
|
||||||
<Testables>
|
<Testables>
|
||||||
<TestableReference
|
<TestableReference
|
||||||
skipped = "NO">
|
skipped = "NO">
|
||||||
|
|
@ -48,6 +39,17 @@
|
||||||
</BuildableReference>
|
</BuildableReference>
|
||||||
</TestableReference>
|
</TestableReference>
|
||||||
</Testables>
|
</Testables>
|
||||||
|
<MacroExpansion>
|
||||||
|
<BuildableReference
|
||||||
|
BuildableIdentifier = "primary"
|
||||||
|
BlueprintIdentifier = "67186B271EB248F100CFAFFB"
|
||||||
|
BuildableName = "LeadKit.framework"
|
||||||
|
BlueprintName = "LeadKit iOS"
|
||||||
|
ReferencedContainer = "container:LeadKit.xcodeproj">
|
||||||
|
</BuildableReference>
|
||||||
|
</MacroExpansion>
|
||||||
|
<AdditionalOptions>
|
||||||
|
</AdditionalOptions>
|
||||||
</TestAction>
|
</TestAction>
|
||||||
<LaunchAction
|
<LaunchAction
|
||||||
buildConfiguration = "Debug"
|
buildConfiguration = "Debug"
|
||||||
|
|
@ -68,6 +70,8 @@
|
||||||
ReferencedContainer = "container:LeadKit.xcodeproj">
|
ReferencedContainer = "container:LeadKit.xcodeproj">
|
||||||
</BuildableReference>
|
</BuildableReference>
|
||||||
</MacroExpansion>
|
</MacroExpansion>
|
||||||
|
<AdditionalOptions>
|
||||||
|
</AdditionalOptions>
|
||||||
</LaunchAction>
|
</LaunchAction>
|
||||||
<ProfileAction
|
<ProfileAction
|
||||||
buildConfiguration = "Release"
|
buildConfiguration = "Release"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1230"
|
LastUpgradeVersion = "1020"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
@ -27,15 +27,6 @@
|
||||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||||
<MacroExpansion>
|
|
||||||
<BuildableReference
|
|
||||||
BuildableIdentifier = "primary"
|
|
||||||
BlueprintIdentifier = "6782BB9F1EB31D590086E0B8"
|
|
||||||
BuildableName = "LeadKit.framework"
|
|
||||||
BlueprintName = "LeadKit tvOS"
|
|
||||||
ReferencedContainer = "container:LeadKit.xcodeproj">
|
|
||||||
</BuildableReference>
|
|
||||||
</MacroExpansion>
|
|
||||||
<Testables>
|
<Testables>
|
||||||
<TestableReference
|
<TestableReference
|
||||||
skipped = "NO">
|
skipped = "NO">
|
||||||
|
|
@ -48,6 +39,17 @@
|
||||||
</BuildableReference>
|
</BuildableReference>
|
||||||
</TestableReference>
|
</TestableReference>
|
||||||
</Testables>
|
</Testables>
|
||||||
|
<MacroExpansion>
|
||||||
|
<BuildableReference
|
||||||
|
BuildableIdentifier = "primary"
|
||||||
|
BlueprintIdentifier = "6782BB9F1EB31D590086E0B8"
|
||||||
|
BuildableName = "LeadKit.framework"
|
||||||
|
BlueprintName = "LeadKit tvOS"
|
||||||
|
ReferencedContainer = "container:LeadKit.xcodeproj">
|
||||||
|
</BuildableReference>
|
||||||
|
</MacroExpansion>
|
||||||
|
<AdditionalOptions>
|
||||||
|
</AdditionalOptions>
|
||||||
</TestAction>
|
</TestAction>
|
||||||
<LaunchAction
|
<LaunchAction
|
||||||
buildConfiguration = "Debug"
|
buildConfiguration = "Debug"
|
||||||
|
|
@ -68,6 +70,8 @@
|
||||||
ReferencedContainer = "container:LeadKit.xcodeproj">
|
ReferencedContainer = "container:LeadKit.xcodeproj">
|
||||||
</BuildableReference>
|
</BuildableReference>
|
||||||
</MacroExpansion>
|
</MacroExpansion>
|
||||||
|
<AdditionalOptions>
|
||||||
|
</AdditionalOptions>
|
||||||
</LaunchAction>
|
</LaunchAction>
|
||||||
<ProfileAction
|
<ProfileAction
|
||||||
buildConfiguration = "Release"
|
buildConfiguration = "Release"
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,8 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Workspace
|
<Workspace
|
||||||
version = "1.0">
|
version = "1.0">
|
||||||
<FileRef location = "group:TIUIElements.playground"></FileRef>
|
<FileRef
|
||||||
<FileRef
|
location = "group:LeadKit.xcodeproj">
|
||||||
location = "group:TIUIElements.xcodeproj">
|
|
||||||
</FileRef>
|
</FileRef>
|
||||||
<FileRef
|
<FileRef
|
||||||
location = "group:Pods/Pods.xcodeproj">
|
location = "group:Pods/Pods.xcodeproj">
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>IDEDidComputeMac32BitWarning</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
107
Makefile
107
Makefile
|
|
@ -1,107 +0,0 @@
|
||||||
export SRCROOT := $(shell pwd)
|
|
||||||
|
|
||||||
push_to_podspecs: TISwiftUtils.target TIFoundationUtils.target TICoreGraphicsUtils.target TIKeychainUtils.target TIUIKitCore.target TIUIElements.target TIWebView.target TIBottomSheet.target TISwiftUICore.target TITableKitUtils.target TIDeeplink.target TIDeveloperUtils.target TILogging.target TINetworking.target TIMoyaNetworking.target TINetworkingCache.target TIMapUtils.target TIAppleMapUtils.target TIGoogleMapUtils.target TIPagination.target TIAuth.target TIEcommerce.target TITextProcessing.target TIApplication.target
|
|
||||||
$(call clean)
|
|
||||||
|
|
||||||
TISwiftUtils.target:
|
|
||||||
MODULE_NAME="TISwiftUtils" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TISwiftUtils.target
|
|
||||||
|
|
||||||
TIFoundationUtils.target: TISwiftUtils.target TILogging.target
|
|
||||||
MODULE_NAME="TIFoundationUtils" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIFoundationUtils.target
|
|
||||||
|
|
||||||
TICoreGraphicsUtils.target:
|
|
||||||
MODULE_NAME="TICoreGraphicsUtils" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TICoreGraphicsUtils.target
|
|
||||||
|
|
||||||
TIKeychainUtils.target: TIFoundationUtils.target
|
|
||||||
MODULE_NAME="TIKeychainUtils" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIKeychainUtils.target
|
|
||||||
|
|
||||||
TIUIKitCore.target: TISwiftUtils.target
|
|
||||||
MODULE_NAME="TIUIKitCore" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIUIKitCore.target
|
|
||||||
|
|
||||||
TIUIElements.target: TIUIKitCore.target TILogging.target
|
|
||||||
MODULE_NAME="TIUIElements" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIUIElements.target
|
|
||||||
|
|
||||||
TIWebView.target: TIUIKitCore.target
|
|
||||||
MODULE_NAME="TIWebView" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIWebView.target
|
|
||||||
|
|
||||||
TIBottomSheet.target: TIUIElements.target
|
|
||||||
MODULE_NAME="TIBottomSheet" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIBottomSheet.target
|
|
||||||
|
|
||||||
TISwiftUICore.target: TIUIKitCore.target
|
|
||||||
MODULE_NAME="TISwiftUICore" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TISwiftUICore.target
|
|
||||||
|
|
||||||
TITableKitUtils.target: TIUIElements.target
|
|
||||||
MODULE_NAME="TITableKitUtils" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TITableKitUtils.target
|
|
||||||
|
|
||||||
TIDeeplink.target: TIFoundationUtils.target
|
|
||||||
MODULE_NAME="TIDeeplink" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIDeeplink.target
|
|
||||||
|
|
||||||
TIDeveloperUtils.target: TIUIElements.target
|
|
||||||
MODULE_NAME="TIDeveloperUtils" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIDeveloperUtils.target
|
|
||||||
|
|
||||||
TINetworking.target: TIFoundationUtils.target
|
|
||||||
MODULE_NAME="TINetworking" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TINetworking.target
|
|
||||||
|
|
||||||
TILogging.target:
|
|
||||||
MODULE_NAME="TILogging" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TILogging.target
|
|
||||||
|
|
||||||
TIMoyaNetworking.target: TINetworking.target
|
|
||||||
MODULE_NAME="TIMoyaNetworking" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIMoyaNetworking.target
|
|
||||||
|
|
||||||
TINetworkingCache.target: TINetworking.target
|
|
||||||
MODULE_NAME="TINetworkingCache" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TINetworkingCache.target
|
|
||||||
|
|
||||||
TIMapUtils.target: TILogging TICoreGraphicsUtils.target
|
|
||||||
MODULE_NAME="TIMapUtils" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIMapUtils.target
|
|
||||||
|
|
||||||
TIAppleMapUtils.target: TIMapUtils.target
|
|
||||||
MODULE_NAME="TIAppleMapUtils" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIAppleMapUtils.target
|
|
||||||
|
|
||||||
TIGoogleMapUtils.target: TIMapUtils.target
|
|
||||||
MODULE_NAME="TIGoogleMapUtils" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIGoogleMapUtils.target
|
|
||||||
|
|
||||||
TIYandexMapUtils.target: TIMapUtils.target
|
|
||||||
MODULE_NAME="TIYandexMapUtils" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIYandexMapUtils.target
|
|
||||||
|
|
||||||
TIPagination.target: TISwiftUtils.target
|
|
||||||
MODULE_NAME="TIPagination" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIPagination.target
|
|
||||||
|
|
||||||
TIAuth.target: TIUIKitCore.target TIKeychainUtils.target
|
|
||||||
MODULE_NAME="TIAuth" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIAuth.target
|
|
||||||
|
|
||||||
TIEcommerce.target: TINetworking.target TIUIElements.target
|
|
||||||
MODULE_NAME="TIEcommerce" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIEcommerce.target
|
|
||||||
|
|
||||||
TITextProcessing.target:
|
|
||||||
MODULE_NAME="TITextProcessing" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TITextProcessing.target
|
|
||||||
|
|
||||||
TIApplication.target: TIFoundationUtils.target TILogging.target
|
|
||||||
MODULE_NAME="TIApplication" ./project-scripts/push_to_podspecs.sh
|
|
||||||
touch TIApplication.target
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm *.target
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
//
|
//
|
||||||
|
|
||||||
import UIKit
|
import UIKit
|
||||||
import TIUIElements
|
import TIUIKitCore
|
||||||
import TISwiftUtils
|
import TISwiftUtils
|
||||||
|
|
||||||
/// Base full OTP View for entering the verification code
|
/// Base full OTP View for entering the verification code
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
// THE SOFTWARE.
|
// THE SOFTWARE.
|
||||||
//
|
//
|
||||||
|
|
||||||
import TIUIElements
|
import TIUIKitCore
|
||||||
import TISwiftUtils
|
import TISwiftUtils
|
||||||
|
|
||||||
/// Base OTP view with textfield for entering a one symbol
|
/// Base OTP view with textfield for entering a one symbol
|
||||||
|
|
|
||||||
|
|
@ -1,95 +0,0 @@
|
||||||
{
|
|
||||||
"pins" : [
|
|
||||||
{
|
|
||||||
"identity" : "alamofire",
|
|
||||||
"kind" : "remoteSourceControl",
|
|
||||||
"location" : "https://github.com/Alamofire/Alamofire.git",
|
|
||||||
"state" : {
|
|
||||||
"revision" : "bc268c28fb170f494de9e9927c371b8342979ece",
|
|
||||||
"version" : "5.7.1"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"identity" : "antlr4",
|
|
||||||
"kind" : "remoteSourceControl",
|
|
||||||
"location" : "https://github.com/antlr/antlr4",
|
|
||||||
"state" : {
|
|
||||||
"revision" : "44d87bc1d130c88aa452894aa5f7e2f710f68253",
|
|
||||||
"version" : "4.10.1"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"identity" : "cache",
|
|
||||||
"kind" : "remoteSourceControl",
|
|
||||||
"location" : "https://github.com/hyperoslo/Cache.git",
|
|
||||||
"state" : {
|
|
||||||
"revision" : "c7f4d633049c3bd649a353bad36f6c17e9df085f",
|
|
||||||
"version" : "6.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"identity" : "cursors",
|
|
||||||
"kind" : "remoteSourceControl",
|
|
||||||
"location" : "https://github.com/petropavel13/Cursors",
|
|
||||||
"state" : {
|
|
||||||
"revision" : "52f27b82cb1cbbc2b5fd09514c48b9c75e3b0300",
|
|
||||||
"version" : "0.6.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"identity" : "keychainaccess",
|
|
||||||
"kind" : "remoteSourceControl",
|
|
||||||
"location" : "https://github.com/kishikawakatsumi/KeychainAccess.git",
|
|
||||||
"state" : {
|
|
||||||
"revision" : "84e546727d66f1adc5439debad16270d0fdd04e7",
|
|
||||||
"version" : "4.2.2"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"identity" : "moya",
|
|
||||||
"kind" : "remoteSourceControl",
|
|
||||||
"location" : "https://github.com/Moya/Moya.git",
|
|
||||||
"state" : {
|
|
||||||
"revision" : "c263811c1f3dbf002be9bd83107f7cdc38992b26",
|
|
||||||
"version" : "15.0.3"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"identity" : "panmodal",
|
|
||||||
"kind" : "remoteSourceControl",
|
|
||||||
"location" : "https://git.svc.touchin.ru/TouchInstinct/PanModal",
|
|
||||||
"state" : {
|
|
||||||
"revision" : "ced7c1703f90746df0224b6e0d33c146d9ae4284",
|
|
||||||
"version" : "1.3.1"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"identity" : "reactiveswift",
|
|
||||||
"kind" : "remoteSourceControl",
|
|
||||||
"location" : "https://github.com/ReactiveCocoa/ReactiveSwift.git",
|
|
||||||
"state" : {
|
|
||||||
"revision" : "c43bae3dac73fdd3cb906bd5a1914686ca71ed3c",
|
|
||||||
"version" : "6.7.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"identity" : "rxswift",
|
|
||||||
"kind" : "remoteSourceControl",
|
|
||||||
"location" : "https://github.com/ReactiveX/RxSwift.git",
|
|
||||||
"state" : {
|
|
||||||
"revision" : "9dcaa4b333db437b0fbfaf453fad29069044a8b4",
|
|
||||||
"version" : "6.6.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"identity" : "tablekit",
|
|
||||||
"kind" : "remoteSourceControl",
|
|
||||||
"location" : "https://git.svc.touchin.ru/TouchInstinct/TableKit.git",
|
|
||||||
"state" : {
|
|
||||||
"revision" : "fec9537745799fab55df7477cb3ec2b4ea5c254d",
|
|
||||||
"version" : "2.12.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"version" : 2
|
|
||||||
}
|
|
||||||
191
Package.swift
191
Package.swift
|
|
@ -1,198 +1,25 @@
|
||||||
// swift-tools-version:5.7
|
// swift-tools-version:5.0
|
||||||
|
|
||||||
#if canImport(PackageDescription)
|
|
||||||
|
|
||||||
import PackageDescription
|
import PackageDescription
|
||||||
|
|
||||||
let package = Package(
|
let package = Package(
|
||||||
name: "LeadKit",
|
name: "LeadKit",
|
||||||
platforms: [
|
platforms: [
|
||||||
.iOS(.v12)
|
.iOS(.v11)
|
||||||
],
|
],
|
||||||
products: [
|
products: [
|
||||||
|
.library(name: "TITransitions", targets: ["TITransitions"]),
|
||||||
// MARK: - Application
|
|
||||||
|
|
||||||
.library(name: "TIApplication", targets: ["TIApplication"]),
|
|
||||||
|
|
||||||
// MARK: - UIKit
|
|
||||||
|
|
||||||
.library(name: "TIUIKitCore", targets: ["TIUIKitCore"]),
|
.library(name: "TIUIKitCore", targets: ["TIUIKitCore"]),
|
||||||
.library(name: "TIUIElements", targets: ["TIUIElements"]),
|
|
||||||
.library(name: "TIWebView", targets: ["TIWebView"]),
|
|
||||||
.library(name: "TIBottomSheet", targets: ["TIBottomSheet"]),
|
|
||||||
|
|
||||||
// MARK: - SwiftUI
|
|
||||||
|
|
||||||
.library(name: "TISwiftUICore", targets: ["TISwiftUICore"]),
|
|
||||||
|
|
||||||
// MARK: - Utils
|
|
||||||
.library(name: "TISwiftUtils", targets: ["TISwiftUtils"]),
|
.library(name: "TISwiftUtils", targets: ["TISwiftUtils"]),
|
||||||
.library(name: "TIFoundationUtils", targets: ["TIFoundationUtils"]),
|
.library(name: "TIFoundationUtils", targets: ["TIFoundationUtils"]),
|
||||||
.library(name: "TICoreGraphicsUtils", targets: ["TICoreGraphicsUtils"]),
|
.library(name: "TIUIElements", targets: ["TIUIElements"]),
|
||||||
.library(name: "TIKeychainUtils", targets: ["TIKeychainUtils"]),
|
|
||||||
.library(name: "TITableKitUtils", targets: ["TITableKitUtils"]),
|
|
||||||
.library(name: "TIDeeplink", targets: ["TIDeeplink"]),
|
|
||||||
.library(name: "TIDeveloperUtils", targets: ["TIDeveloperUtils"]),
|
|
||||||
|
|
||||||
// MARK: - Networking
|
|
||||||
|
|
||||||
.library(name: "TINetworking", targets: ["TINetworking"]),
|
|
||||||
.library(name: "TIMoyaNetworking", targets: ["TIMoyaNetworking"]),
|
|
||||||
.library(name: "TINetworkingCache", targets: ["TINetworkingCache"]),
|
|
||||||
|
|
||||||
// MARK: - Maps
|
|
||||||
|
|
||||||
.library(name: "TIMapUtils", targets: ["TIMapUtils"]),
|
|
||||||
.library(name: "TIAppleMapUtils", targets: ["TIAppleMapUtils"]),
|
|
||||||
|
|
||||||
// MARK: - Elements
|
|
||||||
|
|
||||||
.library(name: "OTPSwiftView", targets: ["OTPSwiftView"]),
|
.library(name: "OTPSwiftView", targets: ["OTPSwiftView"]),
|
||||||
.library(name: "TITransitions", targets: ["TITransitions"]),
|
|
||||||
.library(name: "TIPagination", targets: ["TIPagination"]),
|
|
||||||
.library(name: "TIAuth", targets: ["TIAuth"]),
|
|
||||||
.library(name: "TIEcommerce", targets: ["TIEcommerce"]),
|
|
||||||
.library(name: "TITextProcessing", targets: ["TITextProcessing"])
|
|
||||||
],
|
|
||||||
dependencies: [
|
|
||||||
.package(url: "https://git.svc.touchin.ru/TouchInstinct/TableKit.git", .upToNextMinor(from: "2.12.0")),
|
|
||||||
.package(url: "https://github.com/kishikawakatsumi/KeychainAccess.git", .upToNextMajor(from: "4.2.2")),
|
|
||||||
.package(url: "https://github.com/petropavel13/Cursors", .upToNextMajor(from: "0.5.1")),
|
|
||||||
.package(url: "https://github.com/Alamofire/Alamofire.git", .upToNextMajor(from: "5.4.0")),
|
|
||||||
.package(url: "https://github.com/Moya/Moya.git", .upToNextMajor(from: "15.0.0")),
|
|
||||||
.package(url: "https://github.com/hyperoslo/Cache.git", .upToNextMajor(from: "6.0.0")),
|
|
||||||
.package(url: "https://github.com/antlr/antlr4", .upToNextMinor(from: "4.10.1")),
|
|
||||||
.package(url: "https://git.svc.touchin.ru/TouchInstinct/PanModal", .upToNextMinor(from: "1.3.0"))
|
|
||||||
],
|
],
|
||||||
targets: [
|
targets: [
|
||||||
|
|
||||||
// MARK: - Application architecture
|
|
||||||
|
|
||||||
.target(name: "TIApplication",
|
|
||||||
dependencies: ["TILogging", "TIFoundationUtils", "KeychainAccess"],
|
|
||||||
path: "TIApplication/Sources",
|
|
||||||
plugins: [.plugin(name: "TISwiftLintPlugin")]),
|
|
||||||
|
|
||||||
// MARK: - UIKit
|
|
||||||
|
|
||||||
.target(name: "TIUIKitCore", dependencies: ["TISwiftUtils"], path: "TIUIKitCore/Sources"),
|
|
||||||
|
|
||||||
.target(name: "TIUIElements",
|
|
||||||
dependencies: ["TIUIKitCore", "TILogging"],
|
|
||||||
path: "TIUIElements/Sources",
|
|
||||||
exclude: ["../TIUIElements.app"],
|
|
||||||
plugins: [.plugin(name: "TISwiftLintPlugin")]),
|
|
||||||
|
|
||||||
.target(name: "TIWebView", dependencies: ["TIUIKitCore", "TISwiftUtils"], path: "TIWebView/Sources"),
|
|
||||||
.target(name: "TIBottomSheet",
|
|
||||||
dependencies: ["PanModal", "TIUIElements", "TIUIKitCore", "TISwiftUtils"],
|
|
||||||
path: "TIBottomSheet/Sources",
|
|
||||||
exclude: ["../TIBottomSheet.app"],
|
|
||||||
plugins: [.plugin(name: "TISwiftLintPlugin")]),
|
|
||||||
|
|
||||||
// MARK: - SwiftUI
|
|
||||||
|
|
||||||
.target(name: "TISwiftUICore",
|
|
||||||
dependencies: ["TIUIKitCore", "TISwiftUtils"],
|
|
||||||
path: "TISwiftUICore/Sources"),
|
|
||||||
|
|
||||||
// MARK: - Utils
|
|
||||||
|
|
||||||
.target(name: "TISwiftUtils",
|
|
||||||
path: "TISwiftUtils/Sources",
|
|
||||||
plugins: [.plugin(name: "TISwiftLintPlugin")]),
|
|
||||||
|
|
||||||
.target(name: "TIFoundationUtils",
|
|
||||||
dependencies: ["TISwiftUtils", "TILogging"],
|
|
||||||
path: "TIFoundationUtils",
|
|
||||||
exclude: ["TIFoundationUtils.app"],
|
|
||||||
resources: [
|
|
||||||
.copy("PrivacyInfo.xcprivacy"),
|
|
||||||
],
|
|
||||||
plugins: [.plugin(name: "TISwiftLintPlugin")]),
|
|
||||||
|
|
||||||
.target(name: "TICoreGraphicsUtils",
|
|
||||||
dependencies: [],
|
|
||||||
path: "TICoreGraphicsUtils/Sources",
|
|
||||||
exclude: ["../TICoreGraphicsUtils.app"],
|
|
||||||
plugins: [.plugin(name: "TISwiftLintPlugin")]),
|
|
||||||
|
|
||||||
.target(name: "TIKeychainUtils",
|
|
||||||
dependencies: ["TIFoundationUtils", "KeychainAccess"],
|
|
||||||
path: "TIKeychainUtils/Sources",
|
|
||||||
exclude: ["../TIKeychainUtils.app"],
|
|
||||||
plugins: [.plugin(name: "TISwiftLintPlugin")]),
|
|
||||||
|
|
||||||
.target(name: "TITableKitUtils", dependencies: ["TIUIElements", "TableKit"], path: "TITableKitUtils/Sources"),
|
|
||||||
.target(name: "TIDeeplink", dependencies: ["TIFoundationUtils"], path: "TIDeeplink", exclude: ["TIDeeplink.app"]),
|
|
||||||
.target(name: "TIDeveloperUtils", dependencies: ["TISwiftUtils", "TIUIKitCore", "TIUIElements"], path: "TIDeveloperUtils/Sources"),
|
|
||||||
.target(name: "TILogging", path: "TILogging/Sources", plugins: ["TISwiftLintPlugin"]),
|
|
||||||
|
|
||||||
// MARK: - Networking
|
|
||||||
|
|
||||||
.target(name: "TINetworking",
|
|
||||||
dependencies: ["TIFoundationUtils", "Alamofire", "TILogging"],
|
|
||||||
path: "TINetworking/Sources",
|
|
||||||
plugins: [.plugin(name: "TISwiftLintPlugin")]),
|
|
||||||
|
|
||||||
.target(name: "TIMoyaNetworking",
|
|
||||||
dependencies: ["TINetworking", "Moya"],
|
|
||||||
path: "TIMoyaNetworking/Sources",
|
|
||||||
plugins: [.plugin(name: "TISwiftLintPlugin")]),
|
|
||||||
|
|
||||||
.target(name: "TINetworkingCache",
|
|
||||||
dependencies: ["TINetworking", "Cache"],
|
|
||||||
path: "TINetworkingCache/Sources",
|
|
||||||
plugins: [.plugin(name: "TISwiftLintPlugin")]),
|
|
||||||
|
|
||||||
// MARK: - Maps
|
|
||||||
|
|
||||||
.target(name: "TIMapUtils",
|
|
||||||
dependencies: ["TILogging", "TICoreGraphicsUtils"],
|
|
||||||
path: "TIMapUtils/Sources",
|
|
||||||
plugins: [.plugin(name: "TISwiftLintPlugin")]),
|
|
||||||
|
|
||||||
.target(name: "TIAppleMapUtils",
|
|
||||||
dependencies: ["TIMapUtils"],
|
|
||||||
path: "TIAppleMapUtils/Sources",
|
|
||||||
plugins: [.plugin(name: "TISwiftLintPlugin")]),
|
|
||||||
|
|
||||||
// MARK: - Elements
|
|
||||||
|
|
||||||
.target(name: "OTPSwiftView", dependencies: ["TIUIElements"], path: "OTPSwiftView/Sources"),
|
|
||||||
.target(name: "TITransitions", path: "TITransitions/Sources"),
|
.target(name: "TITransitions", path: "TITransitions/Sources"),
|
||||||
.target(name: "TIPagination", dependencies: ["Cursors", "TISwiftUtils"], path: "TIPagination/Sources"),
|
.target(name: "TIUIKitCore", path: "TIUIKitCore/Sources"),
|
||||||
.target(name: "TIAuth", dependencies: ["TIUIKitCore", "TIKeychainUtils"], path: "TIAuth/Sources"),
|
.target(name: "TISwiftUtils", path: "TISwiftUtils/Sources"),
|
||||||
.target(name: "TIEcommerce", dependencies: ["TIFoundationUtils", "TISwiftUtils", "TINetworking", "TIUIKitCore", "TIUIElements"], path: "TIEcommerce/Sources"),
|
.target(name: "TIFoundationUtils", dependencies: ["TISwiftUtils"], path: "TIFoundationUtils/Sources"),
|
||||||
.target(name: "TITextProcessing",
|
.target(name: "TIUIElements", dependencies: ["TIUIKitCore"], path: "TIUIElements/Sources"),
|
||||||
dependencies: [.product(name: "Antlr4", package: "antlr4")],
|
.target(name: "OTPSwiftView", dependencies: ["TIUIKitCore", "TISwiftUtils"], path: "OTPSwiftView/Sources"),
|
||||||
path: "TITextProcessing/Sources",
|
|
||||||
exclude: ["../TITextProcessing.app"]),
|
|
||||||
|
|
||||||
.binaryTarget(name: "SwiftLintBinary",
|
|
||||||
url: "https://github.com/realm/SwiftLint/releases/download/0.52.2/SwiftLintBinary-macos.artifactbundle.zip",
|
|
||||||
checksum: "89651e1c87fb62faf076ef785a5b1af7f43570b2b74c6773526e0d5114e0578e"),
|
|
||||||
|
|
||||||
.plugin(name: "TISwiftLintPlugin",
|
|
||||||
capability: .buildTool(),
|
|
||||||
dependencies: ["SwiftLintBinary"]),
|
|
||||||
|
|
||||||
// MARK: - Tests
|
|
||||||
|
|
||||||
.testTarget(
|
|
||||||
name: "TITimerTests",
|
|
||||||
dependencies: ["TIFoundationUtils"],
|
|
||||||
path: "Tests/TITimerTests"),
|
|
||||||
.testTarget(
|
|
||||||
name: "TITextProcessingTests",
|
|
||||||
dependencies: ["TITextProcessing"],
|
|
||||||
path: "Tests/TITextProcessingTests"),
|
|
||||||
.testTarget(
|
|
||||||
name: "TIFoundationUtilsTests",
|
|
||||||
dependencies: ["TIFoundationUtils", "TISwiftUtils", "TILogging"],
|
|
||||||
path: "Tests/TIFoundationUtilsTests")
|
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
|
||||||
|
|
@ -1,57 +0,0 @@
|
||||||
//
|
|
||||||
// Copyright (c) 2023 Touch Instinct
|
|
||||||
//
|
|
||||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
// of this software and associated documentation files (the Software), to deal
|
|
||||||
// in the Software without restriction, including without limitation the rights
|
|
||||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
// copies of the Software, and to permit persons to whom the Software is
|
|
||||||
// furnished to do so, subject to the following conditions:
|
|
||||||
//
|
|
||||||
// The above copyright notice and this permission notice shall be included in
|
|
||||||
// all copies or substantial portions of the Software.
|
|
||||||
//
|
|
||||||
// THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
// THE SOFTWARE.
|
|
||||||
//
|
|
||||||
|
|
||||||
import PackagePlugin
|
|
||||||
import Foundation
|
|
||||||
|
|
||||||
@main
|
|
||||||
struct SwiftLintPlugin: BuildToolPlugin {
|
|
||||||
func createBuildCommands(context: PluginContext, target: Target) async throws -> [Command] {
|
|
||||||
let swiftlintScriptPath = context.package.directory.appending(["build-scripts", "xcode", "build_phases", "swiftlint.sh"])
|
|
||||||
|
|
||||||
let swiftlintExecutablePath = try context.tool(named: "swiftlint").path
|
|
||||||
|
|
||||||
let srcRoot = context.package.directory.string
|
|
||||||
let targetDir = target.directory.string
|
|
||||||
|
|
||||||
let relativeTargetDir = targetDir.replacingOccurrences(of: srcRoot, with: "")
|
|
||||||
let clearRelativeTargetDir = relativeTargetDir[relativeTargetDir.index(after: relativeTargetDir.startIndex)...] // trim leading /
|
|
||||||
|
|
||||||
return [
|
|
||||||
.prebuildCommand(displayName: "SwiftLint linting \(target.name)...",
|
|
||||||
executable: swiftlintScriptPath,
|
|
||||||
arguments: [
|
|
||||||
swiftlintExecutablePath,
|
|
||||||
context.package.directory.appending(subpath: "swiftlint_base.yml")
|
|
||||||
],
|
|
||||||
environment: [
|
|
||||||
"SCRIPT_DIR": swiftlintScriptPath.removingLastComponent().string,
|
|
||||||
"SRCROOT": srcRoot,
|
|
||||||
"SCRIPT_INPUT_FILE_COUNT": "1",
|
|
||||||
"SCRIPT_INPUT_FILE_0": clearRelativeTargetDir,
|
|
||||||
// "FORCE_LINT": "1", // Lint all files in target (not only modified)
|
|
||||||
// "AUTOCORRECT": "1"
|
|
||||||
],
|
|
||||||
outputFilesDirectory: context.package.directory)
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
138
README.md
138
README.md
|
|
@ -1,139 +1,11 @@
|
||||||
# LeadKit
|
# LeadKit
|
||||||
|
LeadKit is the iOS framework with a bunch of tools for rapid app development.
|
||||||
|
|
||||||
LeadKit is the iOS framework with a bunch of tools for rapid app development.
|
## Additional
|
||||||
|
This repository contains the following additional frameworks:
|
||||||
This repository contains the following frameworks:
|
|
||||||
|
|
||||||
- [TISwiftUtils](TISwiftUtils) - a bunch of useful helpers for Swift development.
|
|
||||||
- [TIFoundationUtils](TIFoundationUtils) - set of helpers for Foundation framework classes.
|
|
||||||
- [TIUIKitCore](TIUIKitCore) - core ui elements and protocols from LeadKit.
|
- [TIUIKitCore](TIUIKitCore) - core ui elements and protocols from LeadKit.
|
||||||
- [TISwiftUICore](TISwiftUICore) Core UI elements: protocols, views and helpers.
|
- [TITransitions](TITransitions) - set of custom transitions to present controller.
|
||||||
- [TIUIElements](TIUIElements) - bunch of of useful protocols and views.
|
- [TIUIElements](TIUIElements) - bunch of of useful protocols and views.
|
||||||
- [OTPSwiftView](OTPSwiftView) - a fully customizable OTP view.
|
- [OTPSwiftView](OTPSwiftView) - a fully customizable OTP view.
|
||||||
- [TITableKitUtils](TITableKitUtils) - set of helpers for TableKit classes.
|
- [TISwiftUtils](TISwiftUtils) - a bunch of useful helpers for development.
|
||||||
- [TIKeychainUtils](TIKeychainUtils) - set of helpers for Keychain classes.
|
|
||||||
- [TIPagination](TIPagination) - realisation of paginating items from a data source.
|
|
||||||
- [TINetworking](TINetworking) - Swagger-frendly networking layer helpers.
|
|
||||||
- [TIMoyaNetworking](TIMoyaNetworking) - Moya + Swagger network service.
|
|
||||||
- [TIAppleMapUtils](TIAppleMapUtils) - set of helpers for map objects clustering and interacting using Apple MapKit.
|
|
||||||
- [TIGoogleMapUtils](TIGoogleMapUtils) - set of helpers for map objects clustering and interacting using Google Maps SDK.
|
|
||||||
- [TIYandexMapUtils](TIYandexMapUtils) - set of helpers for map objects clustering and interacting using Yandex Maps SDK.
|
|
||||||
- [TIAuth](TIAuth) - login, registration, confirmation and other related actions
|
|
||||||
|
|
||||||
## Playgrounds
|
|
||||||
|
|
||||||
### Create new Playground
|
|
||||||
|
|
||||||
```sh
|
|
||||||
$ cd TIModuleName
|
|
||||||
|
|
||||||
$ touch PlaygroundPodfile
|
|
||||||
|
|
||||||
$ echo "ENV[\"DEVELOPMENT_INSTALL\"] = \"true\"
|
|
||||||
|
|
||||||
target 'TIModuleName' do
|
|
||||||
platform :ios, IOS_VERSION_NUMBER
|
|
||||||
use_frameworks!
|
|
||||||
|
|
||||||
pod 'TIDependencyModuleName', :path => '../../../../TIDependencyModuleName/TIDependencyModuleName.podspec'
|
|
||||||
pod 'TIModuleName', :path => '../../../../TIModuleName/TIModuleName.podspec'
|
|
||||||
end" > PlaygroundPodfile
|
|
||||||
|
|
||||||
$ nef playground --name TIModuleName --cocoapods --custom-podfile PlaygroundPodfile
|
|
||||||
```
|
|
||||||
See example of `PlaygroundPodfile` in `TIFoundationUtils`
|
|
||||||
|
|
||||||
|
|
||||||
### Rename/add pages to Playground
|
|
||||||
|
|
||||||
For every new feature in module create new Playground page with documentation in comments. See [nef markdown documentation](https://github.com/bow-swift/nef#-generating-a-markdown-project).
|
|
||||||
|
|
||||||
### Create symlink to nef playground
|
|
||||||
|
|
||||||
```sh
|
|
||||||
$ cd TIModuleName
|
|
||||||
$ ln -s TIModuleName.app/Contents/MacOS/TIModuleName.playground TIModuleName.playground
|
|
||||||
```
|
|
||||||
|
|
||||||
### Add nef files to TIModuleName.app/.gitignore
|
|
||||||
|
|
||||||
```
|
|
||||||
# gitignore nef files
|
|
||||||
**/build/
|
|
||||||
**/nef/
|
|
||||||
LICENSE
|
|
||||||
```
|
|
||||||
|
|
||||||
### Exclude .app bundles from package sources
|
|
||||||
|
|
||||||
#### SPM
|
|
||||||
|
|
||||||
```swift
|
|
||||||
.target(name: "TIModuleName", dependencies: ..., path: ..., exclude: ["TIModuleName.app"]),
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Podspec
|
|
||||||
|
|
||||||
```ruby
|
|
||||||
sources = 'your_sources_expression'
|
|
||||||
if ENV["DEVELOPMENT_INSTALL"] # installing using :path =>
|
|
||||||
s.source_files = sources
|
|
||||||
s.exclude_files = s.name + '.app'
|
|
||||||
else
|
|
||||||
s.source_files = s.name + '/' + sources
|
|
||||||
s.exclude_files = s.name + '/*.app'
|
|
||||||
end
|
|
||||||
```
|
|
||||||
|
|
||||||
## Docs:
|
|
||||||
|
|
||||||
- [TIFoundationUtils](docs/tifoundationutils)
|
|
||||||
* [AsyncOperation](docs/tifoundationutils/asyncoperation.md)
|
|
||||||
- [TICoreGraphicsUtils](docs/ticoregraphicsutils)
|
|
||||||
* [DrawingOperations](docs/ticoregraphicsutils/drawingoperations.md)
|
|
||||||
- [TIKeychainUtils](docs/tikeychainutils)
|
|
||||||
* [SingleValueStorage](docs/tikeychainutils/singlevaluestorage.md)
|
|
||||||
- [TIUIElements](docs/tiuielements)
|
|
||||||
* [Skeletons](docs/tiuielements/skeletons.md)
|
|
||||||
* [Placeholders](docs/tiuielements/placeholder.md)
|
|
||||||
- [TITextProcessing](docs/titextprocessing)
|
|
||||||
* [TITextProcessing](docs/titextprocessing/titextprocessing.md)
|
|
||||||
- [TIDeeplink](docs/tideeplink/deeplinks.md)
|
|
||||||
- [TIBottomSheet](docs/tibottomsheet/tibottomsheet.md)
|
|
||||||
- [Semantic Commit Messages](docs/semantic-commit-messages.md) - commit message codestyle.
|
|
||||||
- [Snippets](docs/snippets.md) - useful commands and scripts for development.
|
|
||||||
|
|
||||||
## Contributing
|
|
||||||
|
|
||||||
- Run following script in framework's folder:
|
|
||||||
```
|
|
||||||
./setup
|
|
||||||
```
|
|
||||||
|
|
||||||
- If legacy [Source](https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/master/Sources) folder needed, [build dependencies for LeadKit.xcodeproj](https://git.svc.touchin.ru/TouchInstinct/LeadKit/blob/master/docs/snippets.md#build-dependencies-for-LeadKit.xcodeproj).
|
|
||||||
|
|
||||||
- Make sure the commit message codestyle is followed. More about [Semantic Commit Messages](docs/semantic-commit-messages.md).
|
|
||||||
|
|
||||||
## Installation
|
|
||||||
|
|
||||||
### SPM
|
|
||||||
|
|
||||||
```swift
|
|
||||||
dependencies: [
|
|
||||||
.package(url: "https://git.svc.touchin.ru/TouchInstinct/LeadKit.git", from: "x.y.z"),
|
|
||||||
],
|
|
||||||
```
|
|
||||||
|
|
||||||
### Cocoapods
|
|
||||||
|
|
||||||
```ruby
|
|
||||||
source 'https://git.svc.touchin.ru/TouchInstinct/Podspecs.git'
|
|
||||||
|
|
||||||
pod 'TISwiftUtils', 'x.y.z'
|
|
||||||
pod 'TIFoundationUtils', 'x.y.z'
|
|
||||||
# ...
|
|
||||||
```
|
|
||||||
|
|
||||||
## Legacy
|
|
||||||
|
|
||||||
Code located in root `Sources` folder and `LeadKit.podspec` should be treated as legacy and shouldn't be used in newly created projects. Please use TI* modules via SPM or CocoaPods.
|
|
||||||
|
|
|
||||||
|
|
@ -26,11 +26,11 @@ import UIKit
|
||||||
open class BaseCollectionContentController<ViewModel>: BaseScrollContentController<ViewModel, CollectionViewWrapperView> {
|
open class BaseCollectionContentController<ViewModel>: BaseScrollContentController<ViewModel, CollectionViewWrapperView> {
|
||||||
|
|
||||||
override open func createView() -> CollectionViewWrapperView {
|
override open func createView() -> CollectionViewWrapperView {
|
||||||
CollectionViewWrapperView(layout: UICollectionViewFlowLayout())
|
return CollectionViewWrapperView(layout: UICollectionViewFlowLayout())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Contained UICollectionView instance.
|
/// Contained UICollectionView instance.
|
||||||
public var collectionView: UICollectionView {
|
public var collectionView: UICollectionView {
|
||||||
customView.collectionView
|
return customView.collectionView
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
import UIKit.UIViewController
|
import UIKit.UIViewController
|
||||||
|
|
||||||
/// Base controller that should be configured with view model.
|
/// Base controller that should be configured with view model.
|
||||||
open class BaseConfigurableController<ViewModel>: BaseOrientationController, ConfigurableController {
|
open class BaseConfigurableController<ViewModel>: UIViewController, ConfigurableController {
|
||||||
|
|
||||||
/// A view model instance used by this controller.
|
/// A view model instance used by this controller.
|
||||||
public let viewModel: ViewModel
|
public let viewModel: ViewModel
|
||||||
|
|
|
||||||
|
|
@ -49,6 +49,6 @@ open class BaseCustomViewController<ViewModel, View: UIView>: BaseConfigurableCo
|
||||||
///
|
///
|
||||||
/// - Returns: Initialized custom view.
|
/// - Returns: Initialized custom view.
|
||||||
open func createView() -> View {
|
open func createView() -> View {
|
||||||
View()
|
return View()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
import Foundation
|
|
||||||
|
|
||||||
open class BaseOrientationController: UIViewController {
|
|
||||||
|
|
||||||
/// Ability to set forced screen orientation
|
|
||||||
open var forcedInterfaceOrientation: UIInterfaceOrientation?
|
|
||||||
|
|
||||||
open override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
|
|
||||||
switch forcedInterfaceOrientation {
|
|
||||||
case .landscapeLeft:
|
|
||||||
return .landscapeLeft
|
|
||||||
|
|
||||||
case .landscapeRight:
|
|
||||||
return .landscapeRight
|
|
||||||
|
|
||||||
case .portrait:
|
|
||||||
return .portrait
|
|
||||||
|
|
||||||
case .portraitUpsideDown:
|
|
||||||
return .portraitUpsideDown
|
|
||||||
|
|
||||||
default:
|
|
||||||
return super.supportedInterfaceOrientations
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
open override var preferredInterfaceOrientationForPresentation: UIInterfaceOrientation {
|
|
||||||
forcedInterfaceOrientation ?? super.preferredInterfaceOrientationForPresentation
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
||||||
import UIKit
|
|
||||||
|
|
||||||
open class OrientationNavigationController: UINavigationController {
|
|
||||||
|
|
||||||
// MARK: - Public properties
|
|
||||||
|
|
||||||
open var presentedOrTopViewController: UIViewController? {
|
|
||||||
presentedViewController ?? topViewController
|
|
||||||
}
|
|
||||||
|
|
||||||
open override var shouldAutorotate: Bool {
|
|
||||||
presentedOrTopViewController?.shouldAutorotate
|
|
||||||
?? super.shouldAutorotate
|
|
||||||
}
|
|
||||||
|
|
||||||
open override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
|
|
||||||
presentedOrTopViewController?.supportedInterfaceOrientations
|
|
||||||
?? super.supportedInterfaceOrientations
|
|
||||||
}
|
|
||||||
|
|
||||||
open override var preferredInterfaceOrientationForPresentation: UIInterfaceOrientation {
|
|
||||||
presentedOrTopViewController?.preferredInterfaceOrientationForPresentation
|
|
||||||
?? super.preferredInterfaceOrientationForPresentation
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -49,13 +49,13 @@ open class BaseScrollContentController<ViewModel, View: ScrollViewHolderView>: B
|
||||||
|
|
||||||
/// Contained UIScrollView instance.
|
/// Contained UIScrollView instance.
|
||||||
public var scrollView: UIScrollView {
|
public var scrollView: UIScrollView {
|
||||||
customView.scrollView
|
return customView.scrollView
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Default insets used for contained scroll view.
|
/// Default insets used for contained scroll view.
|
||||||
public var defaultInsets: UIEdgeInsets {
|
public var defaultInsets: UIEdgeInsets {
|
||||||
get {
|
get {
|
||||||
defaultInsetsRelay.value
|
return defaultInsetsRelay.value
|
||||||
}
|
}
|
||||||
set {
|
set {
|
||||||
defaultInsetsRelay.accept(newValue)
|
defaultInsetsRelay.accept(newValue)
|
||||||
|
|
|
||||||
|
|
@ -32,11 +32,11 @@ open class BaseTableContentController<ViewModel>: BaseScrollContentController<Vi
|
||||||
///
|
///
|
||||||
/// - Returns: Initialized TableDirector.
|
/// - Returns: Initialized TableDirector.
|
||||||
open func createTableDirector() -> TableDirector {
|
open func createTableDirector() -> TableDirector {
|
||||||
TableDirector(tableView: tableView)
|
return TableDirector(tableView: tableView)
|
||||||
}
|
}
|
||||||
|
|
||||||
override open func createView() -> TableViewWrapperView {
|
override open func createView() -> TableViewWrapperView {
|
||||||
TableViewWrapperView(tableViewStyle: .plain)
|
return TableViewWrapperView(tableViewStyle: .plain)
|
||||||
}
|
}
|
||||||
|
|
||||||
override open func configureAppearance() {
|
override open func configureAppearance() {
|
||||||
|
|
@ -47,6 +47,6 @@ open class BaseTableContentController<ViewModel>: BaseScrollContentController<Vi
|
||||||
|
|
||||||
/// Contained UITableView instance.
|
/// Contained UITableView instance.
|
||||||
public var tableView: UITableView {
|
public var tableView: UITableView {
|
||||||
customView.tableView
|
return customView.tableView
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -42,17 +42,17 @@ public class FixedPageCursor<Cursor: CursorType>: CursorType, RxDataSource {
|
||||||
}
|
}
|
||||||
|
|
||||||
public var exhausted: Bool {
|
public var exhausted: Bool {
|
||||||
cursor.exhausted && cursor.count == count
|
return cursor.exhausted && cursor.count == count
|
||||||
}
|
}
|
||||||
|
|
||||||
public private(set) var count: Int = 0
|
public private(set) var count: Int = 0
|
||||||
|
|
||||||
public subscript(index: Int) -> Cursor.Element {
|
public subscript(index: Int) -> Cursor.Element {
|
||||||
cursor[index]
|
return cursor[index]
|
||||||
}
|
}
|
||||||
|
|
||||||
public func loadNextBatch() -> Single<[Cursor.Element]> {
|
public func loadNextBatch() -> Single<[Cursor.Element]> {
|
||||||
Single.deferred {
|
return Single.deferred {
|
||||||
if self.exhausted {
|
if self.exhausted {
|
||||||
return .error(CursorError.exhausted)
|
return .error(CursorError.exhausted)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ public extension CursorType {
|
||||||
/// - Parameter transform: closure to transform elements
|
/// - Parameter transform: closure to transform elements
|
||||||
/// - Returns: new MapCursor instance
|
/// - Returns: new MapCursor instance
|
||||||
func flatMap<T>(transform: @escaping MapCursor<Self, T>.Transform) -> MapCursor<Self, T> {
|
func flatMap<T>(transform: @escaping MapCursor<Self, T>.Transform) -> MapCursor<Self, T> {
|
||||||
MapCursor(cursor: self, transform: transform)
|
return MapCursor(cursor: self, transform: transform)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates ResettableMapCursor with current cursor
|
/// Creates ResettableMapCursor with current cursor
|
||||||
|
|
@ -39,7 +39,7 @@ public extension CursorType {
|
||||||
func flatMap<T>(transform: @escaping ResettableMapCursor<Self, T>.Transform)
|
func flatMap<T>(transform: @escaping ResettableMapCursor<Self, T>.Transform)
|
||||||
-> ResettableMapCursor<Self, T> where Self: ResettableCursorType {
|
-> ResettableMapCursor<Self, T> where Self: ResettableCursorType {
|
||||||
|
|
||||||
ResettableMapCursor(cursor: self, transform: transform)
|
return ResettableMapCursor(cursor: self, transform: transform)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -67,19 +67,19 @@ public class MapCursor<Cursor: CursorType, T>: CursorType, RxDataSource {
|
||||||
}
|
}
|
||||||
|
|
||||||
public var exhausted: Bool {
|
public var exhausted: Bool {
|
||||||
cursor.exhausted
|
return cursor.exhausted
|
||||||
}
|
}
|
||||||
|
|
||||||
public var count: Int {
|
public var count: Int {
|
||||||
elements.count
|
return elements.count
|
||||||
}
|
}
|
||||||
|
|
||||||
public subscript(index: Int) -> T {
|
public subscript(index: Int) -> T {
|
||||||
elements[index]
|
return elements[index]
|
||||||
}
|
}
|
||||||
|
|
||||||
public func loadNextBatch() -> Single<[T]> {
|
public func loadNextBatch() -> Single<[T]> {
|
||||||
cursor.loadNextBatch().map { newItems in
|
return cursor.loadNextBatch().map { newItems in
|
||||||
let transformedNewItems = newItems.compactMap(self.transform)
|
let transformedNewItems = newItems.compactMap(self.transform)
|
||||||
self.elements += transformedNewItems
|
self.elements += transformedNewItems
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@ public final class SingleLoadCursorConfiguration<Element>: TotalCountCursorConfi
|
||||||
}
|
}
|
||||||
|
|
||||||
public func resultSingle() -> Single<ResultType> {
|
public func resultSingle() -> Single<ResultType> {
|
||||||
loadingSingle
|
return loadingSingle
|
||||||
}
|
}
|
||||||
|
|
||||||
public init(resetFrom other: SingleLoadCursorConfiguration) {
|
public init(resetFrom other: SingleLoadCursorConfiguration) {
|
||||||
|
|
@ -67,15 +67,15 @@ public class SingleLoadCursor<Element>: ResettableCursorType {
|
||||||
public private(set) var exhausted = false
|
public private(set) var exhausted = false
|
||||||
|
|
||||||
public var count: Int {
|
public var count: Int {
|
||||||
content.count
|
return content.count
|
||||||
}
|
}
|
||||||
|
|
||||||
public subscript(index: Int) -> Element {
|
public subscript(index: Int) -> Element {
|
||||||
content[index]
|
return content[index]
|
||||||
}
|
}
|
||||||
|
|
||||||
public func loadNextBatch() -> Single<[Element]> {
|
public func loadNextBatch() -> Single<[Element]> {
|
||||||
Single.deferred {
|
return Single.deferred {
|
||||||
if self.exhausted {
|
if self.exhausted {
|
||||||
return .error(CursorError.exhausted)
|
return .error(CursorError.exhausted)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -45,11 +45,11 @@ public class StaticCursor<Element>: ResettableRxDataSourceCursor {
|
||||||
public private(set) var count = 0
|
public private(set) var count = 0
|
||||||
|
|
||||||
public subscript(index: Int) -> Element {
|
public subscript(index: Int) -> Element {
|
||||||
content[index]
|
return content[index]
|
||||||
}
|
}
|
||||||
|
|
||||||
public func loadNextBatch() -> Single<[Element]> {
|
public func loadNextBatch() -> Single<[Element]> {
|
||||||
Single.deferred {
|
return Single.deferred {
|
||||||
if self.exhausted {
|
if self.exhausted {
|
||||||
return .error(CursorError.exhausted)
|
return .error(CursorError.exhausted)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -35,15 +35,15 @@ open class TotalCountCursor<CursorConfiguration: TotalCountCursorConfiguration>:
|
||||||
public private(set) var totalCount: Int = .max
|
public private(set) var totalCount: Int = .max
|
||||||
|
|
||||||
public var exhausted: Bool {
|
public var exhausted: Bool {
|
||||||
count >= totalCount
|
return count >= totalCount
|
||||||
}
|
}
|
||||||
|
|
||||||
public var count: Int {
|
public var count: Int {
|
||||||
elements.count
|
return elements.count
|
||||||
}
|
}
|
||||||
|
|
||||||
public subscript(index: Int) -> Element {
|
public subscript(index: Int) -> Element {
|
||||||
elements[index]
|
return elements[index]
|
||||||
}
|
}
|
||||||
|
|
||||||
public init(configuration: CursorConfiguration) {
|
public init(configuration: CursorConfiguration) {
|
||||||
|
|
@ -55,11 +55,11 @@ open class TotalCountCursor<CursorConfiguration: TotalCountCursorConfiguration>:
|
||||||
}
|
}
|
||||||
|
|
||||||
open func processResultFromConfigurationSingle() -> Single<CursorConfiguration.ResultType> {
|
open func processResultFromConfigurationSingle() -> Single<CursorConfiguration.ResultType> {
|
||||||
configuration.resultSingle()
|
return configuration.resultSingle()
|
||||||
}
|
}
|
||||||
|
|
||||||
public func loadNextBatch() -> Single<[Element]> {
|
public func loadNextBatch() -> Single<[Element]> {
|
||||||
processResultFromConfigurationSingle()
|
return processResultFromConfigurationSingle()
|
||||||
.do(onSuccess: { [weak self] listingResult in
|
.do(onSuccess: { [weak self] listingResult in
|
||||||
self?.totalCount = listingResult.totalCount
|
self?.totalCount = listingResult.totalCount
|
||||||
self?.elements = (self?.elements ?? []) + listingResult.results
|
self?.elements = (self?.elements ?? []) + listingResult.results
|
||||||
|
|
|
||||||
|
|
@ -63,28 +63,28 @@ open class GeneralDataLoadingViewModel<ResultType>: BaseViewModel, GeneralDataLo
|
||||||
|
|
||||||
/// Returns observable that emits current loading state.
|
/// Returns observable that emits current loading state.
|
||||||
open var loadingStateObservable: Observable<LoadingState> {
|
open var loadingStateObservable: Observable<LoadingState> {
|
||||||
loadingStateRelay.asObservable()
|
return loadingStateRelay.asObservable()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns driver that emits current loading state.
|
/// Returns driver that emits current loading state.
|
||||||
open var loadingStateDriver: Driver<LoadingState> {
|
open var loadingStateDriver: Driver<LoadingState> {
|
||||||
loadingStateRelay.asDriver()
|
return loadingStateRelay.asDriver()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// By default returns true if loading state == .result.
|
/// By default returns true if loading state == .result.
|
||||||
open var hasContent: Bool {
|
open var hasContent: Bool {
|
||||||
currentLoadingState.hasResult
|
return currentLoadingState.hasResult
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns current result if it exists.
|
/// Returns current result if it exists.
|
||||||
public var currentResult: ResultType? {
|
public var currentResult: ResultType? {
|
||||||
currentLoadingState.result
|
return currentLoadingState.result
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Current state of loading process.
|
/// Current state of loading process.
|
||||||
private(set) public var currentLoadingState: LoadingState {
|
private(set) public var currentLoadingState: LoadingState {
|
||||||
get {
|
get {
|
||||||
loadingStateRelay.value
|
return loadingStateRelay.value
|
||||||
}
|
}
|
||||||
set {
|
set {
|
||||||
loadingStateRelay.accept(newValue)
|
loadingStateRelay.accept(newValue)
|
||||||
|
|
|
||||||
|
|
@ -22,11 +22,9 @@
|
||||||
|
|
||||||
import RxSwift
|
import RxSwift
|
||||||
|
|
||||||
public typealias RxPaginationDataLoadingModel<Cursor: ResettableRxDataSourceCursor> =
|
|
||||||
RxDataLoadingModel<PaginationDataLoadingState<Cursor>>
|
|
||||||
|
|
||||||
/// Data loading model for PaginationDataLoadingState with ResettableRxDataSourceCursor as data source.
|
/// Data loading model for PaginationDataLoadingState with ResettableRxDataSourceCursor as data source.
|
||||||
public final class PaginationDataLoadingModel<Cursor: ResettableRxDataSourceCursor>: RxPaginationDataLoadingModel<Cursor> {
|
public final class PaginationDataLoadingModel<Cursor: ResettableRxDataSourceCursor>:
|
||||||
|
RxDataLoadingModel<PaginationDataLoadingState<Cursor>> {
|
||||||
|
|
||||||
private enum LoadType {
|
private enum LoadType {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@ final public class PaginationWrapper<Cursor: ResettableRxDataSourceCursor, Deleg
|
||||||
/// so the handler can be triggered before reaching end. Defaults to 0.0;
|
/// so the handler can be triggered before reaching end. Defaults to 0.0;
|
||||||
public var infiniteScrollTriggerOffset: CGFloat {
|
public var infiniteScrollTriggerOffset: CGFloat {
|
||||||
get {
|
get {
|
||||||
wrappedView.scrollView.infiniteScrollTriggerOffset
|
return wrappedView.scrollView.infiniteScrollTriggerOffset
|
||||||
}
|
}
|
||||||
set {
|
set {
|
||||||
wrappedView.scrollView.infiniteScrollTriggerOffset = newValue
|
wrappedView.scrollView.infiniteScrollTriggerOffset = newValue
|
||||||
|
|
@ -327,7 +327,7 @@ final public class PaginationWrapper<Cursor: ResettableRxDataSourceCursor, Deleg
|
||||||
private extension PaginationWrapper {
|
private extension PaginationWrapper {
|
||||||
|
|
||||||
private var stateChanged: Binder<LoadingState> {
|
private var stateChanged: Binder<LoadingState> {
|
||||||
Binder(self) { base, value in
|
return Binder(self) { base, value in
|
||||||
switch value {
|
switch value {
|
||||||
case .initial:
|
case .initial:
|
||||||
base.onInitialState()
|
base.onInitialState()
|
||||||
|
|
@ -354,7 +354,7 @@ private extension PaginationWrapper {
|
||||||
}
|
}
|
||||||
|
|
||||||
var scrollOffsetChanged: Binder<CGPoint> {
|
var scrollOffsetChanged: Binder<CGPoint> {
|
||||||
Binder(self) { base, value in
|
return Binder(self) { base, value in
|
||||||
base.currentPlaceholderViewTopConstraint?.constant = -value.y
|
base.currentPlaceholderViewTopConstraint?.constant = -value.y
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ open class RxNetworkOperationModel<LoadingStateType: NetworkOperationState>: Net
|
||||||
private let errorHandler: ErrorHandler
|
private let errorHandler: ErrorHandler
|
||||||
|
|
||||||
open var stateDriver: Driver<LoadingStateType> {
|
open var stateDriver: Driver<LoadingStateType> {
|
||||||
stateRelay.asDriver()
|
return stateRelay.asDriver()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Model initializer with data source and custom error handler.
|
/// Model initializer with data source and custom error handler.
|
||||||
|
|
@ -81,17 +81,17 @@ open class RxNetworkOperationModel<LoadingStateType: NetworkOperationState>: Net
|
||||||
func requestResult(from dataSource: DataSourceType) {
|
func requestResult(from dataSource: DataSourceType) {
|
||||||
currentRequestDisposable = dataSource
|
currentRequestDisposable = dataSource
|
||||||
.resultSingle()
|
.resultSingle()
|
||||||
.observe(on: MainScheduler.instance)
|
.observeOn(MainScheduler.instance)
|
||||||
.subscribe(onSuccess: { [weak self] result in
|
.subscribe(onSuccess: { [weak self] result in
|
||||||
self?.onGot(result: result, from: dataSource)
|
self?.onGot(result: result, from: dataSource)
|
||||||
}, onFailure: { [weak self] error in
|
}, onError: { [weak self] error in
|
||||||
self?.onGot(error: error)
|
self?.onGot(error: error)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
var state: LoadingStateType {
|
var state: LoadingStateType {
|
||||||
get {
|
get {
|
||||||
stateRelay.value
|
return stateRelay.value
|
||||||
}
|
}
|
||||||
set {
|
set {
|
||||||
stateRelay.accept(newValue)
|
stateRelay.accept(newValue)
|
||||||
|
|
|
||||||
|
|
@ -58,15 +58,15 @@ where ViewModel: BaseSearchViewModel<Item, ItemViewModel> {
|
||||||
open override func bindViews() {
|
open override func bindViews() {
|
||||||
super.bindViews()
|
super.bindViews()
|
||||||
viewModel.itemsViewModelsDriver
|
viewModel.itemsViewModelsDriver
|
||||||
.drive(with: self) { owner, viewModels in
|
.drive(onNext: { [weak self] viewModels in
|
||||||
owner.handle(itemViewModels: viewModels)
|
self?.handle(itemViewModels: viewModels)
|
||||||
}
|
})
|
||||||
.disposed(by: disposeBag)
|
.disposed(by: disposeBag)
|
||||||
|
|
||||||
Observable.merge(searchResults, resetResults)
|
Observable.merge(searchResults, resetResults)
|
||||||
.subscribe(with: self) { owner, state in
|
.subscribe(onNext: { [weak self] state in
|
||||||
owner.handle(searchResultsState: state)
|
self?.handle(searchResultsState: state)
|
||||||
}
|
})
|
||||||
.disposed(by: disposeBag)
|
.disposed(by: disposeBag)
|
||||||
|
|
||||||
let searchText = searchController.searchBar.rx.text
|
let searchText = searchController.searchBar.rx.text
|
||||||
|
|
@ -112,11 +112,11 @@ where ViewModel: BaseSearchViewModel<Item, ItemViewModel> {
|
||||||
}
|
}
|
||||||
|
|
||||||
open var searchBarPlaceholder: String {
|
open var searchBarPlaceholder: String {
|
||||||
""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
open var searchBarColor: UIColor {
|
open var searchBarColor: UIColor {
|
||||||
.gray
|
return .gray
|
||||||
}
|
}
|
||||||
|
|
||||||
open var statusBarView: UIView {
|
open var statusBarView: UIView {
|
||||||
|
|
@ -131,7 +131,7 @@ where ViewModel: BaseSearchViewModel<Item, ItemViewModel> {
|
||||||
}
|
}
|
||||||
|
|
||||||
open var statusBarColor: UIColor {
|
open var statusBarColor: UIColor {
|
||||||
.black
|
return .black
|
||||||
}
|
}
|
||||||
|
|
||||||
open func updateContent(with viewModels: [ItemViewModel]) {
|
open func updateContent(with viewModels: [ItemViewModel]) {
|
||||||
|
|
@ -144,15 +144,15 @@ where ViewModel: BaseSearchViewModel<Item, ItemViewModel> {
|
||||||
}
|
}
|
||||||
|
|
||||||
open var resetResults: Observable<SearchResultsViewControllerState> {
|
open var resetResults: Observable<SearchResultsViewControllerState> {
|
||||||
searchController.rx.willPresent
|
return searchController.rx.willPresent
|
||||||
.map { SearchResultsViewControllerState.initial }
|
.map { SearchResultsViewControllerState.initial }
|
||||||
}
|
}
|
||||||
|
|
||||||
open var searchResults: Observable<SearchResultsViewControllerState> {
|
open var searchResults: Observable<SearchResultsViewControllerState> {
|
||||||
viewModel.searchResultsDriver
|
return viewModel.searchResultsDriver
|
||||||
.asObservable()
|
.asObservable()
|
||||||
.compactMap { [weak self] viewModels -> SearchResultsViewControllerState? in
|
.map { [weak self] viewModels -> SearchResultsViewControllerState in
|
||||||
self?.stateForUpdate(with: viewModels)
|
self?.stateForUpdate(with: viewModels) ?? .rowsContent(rows: [])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -35,8 +35,8 @@ open class BaseSearchViewModel<Item, ItemViewModel>: GeneralDataLoadingViewModel
|
||||||
}
|
}
|
||||||
|
|
||||||
open var itemsViewModelsDriver: Driver<[ItemViewModel]> {
|
open var itemsViewModelsDriver: Driver<[ItemViewModel]> {
|
||||||
loadingResultObservable
|
return loadingResultObservable
|
||||||
.compactMap { [weak self] items in
|
.map { [weak self] items in
|
||||||
self?.viewModels(from: items)
|
self?.viewModels(from: items)
|
||||||
}
|
}
|
||||||
.flatMap { Observable.from(optional: $0) }
|
.flatMap { Observable.from(optional: $0) }
|
||||||
|
|
@ -45,16 +45,16 @@ open class BaseSearchViewModel<Item, ItemViewModel>: GeneralDataLoadingViewModel
|
||||||
}
|
}
|
||||||
|
|
||||||
open var searchDebounceInterval: RxTimeInterval {
|
open var searchDebounceInterval: RxTimeInterval {
|
||||||
.seconds(1)
|
return .seconds(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
open var searchResultsDriver: Driver<[ItemViewModel]> {
|
open var searchResultsDriver: Driver<[ItemViewModel]> {
|
||||||
searchTextRelay.debounce(searchDebounceInterval, scheduler: MainScheduler.instance)
|
return searchTextRelay.debounce(searchDebounceInterval, scheduler: MainScheduler.instance)
|
||||||
.withLatestFrom(loadingResultObservable) { ($0, $1) }
|
.withLatestFrom(loadingResultObservable) { ($0, $1) }
|
||||||
.flatMapLatest { [weak self] searchText, items -> Observable<ItemsList> in
|
.flatMapLatest { [weak self] searchText, items -> Observable<ItemsList> in
|
||||||
self?.search(by: searchText, from: items).asObservable() ?? .empty()
|
self?.search(by: searchText, from: items).asObservable() ?? .empty()
|
||||||
}
|
}
|
||||||
.compactMap { [weak self] items in
|
.map { [weak self] items in
|
||||||
self?.viewModels(from: items)
|
self?.viewModels(from: items)
|
||||||
}
|
}
|
||||||
.flatMap { Observable.from(optional: $0) }
|
.flatMap { Observable.from(optional: $0) }
|
||||||
|
|
@ -71,29 +71,29 @@ open class BaseSearchViewModel<Item, ItemViewModel>: GeneralDataLoadingViewModel
|
||||||
}
|
}
|
||||||
|
|
||||||
open func bind(searchText: Observable<String>) -> Disposable {
|
open func bind(searchText: Observable<String>) -> Disposable {
|
||||||
searchText.bind(to: searchTextRelay)
|
return searchText.bind(to: searchTextRelay)
|
||||||
}
|
}
|
||||||
|
|
||||||
private func viewModels(from items: ItemsList) -> [ItemViewModel] {
|
private func viewModels(from items: ItemsList) -> [ItemViewModel] {
|
||||||
items.map { self.viewModel(from: $0) }
|
return items.map { self.viewModel(from: $0) }
|
||||||
}
|
}
|
||||||
|
|
||||||
open var loadingResultObservable: Observable<ResultType> {
|
open var loadingResultObservable: Observable<ResultType> {
|
||||||
loadingStateDriver
|
return loadingStateDriver
|
||||||
.asObservable()
|
.asObservable()
|
||||||
.map { $0.result }
|
.map { $0.result }
|
||||||
.flatMap { Observable.from(optional: $0) }
|
.flatMap { Observable.from(optional: $0) }
|
||||||
}
|
}
|
||||||
|
|
||||||
open var loadingErrorObservable: Observable<Error> {
|
open var loadingErrorObservable: Observable<Error> {
|
||||||
loadingStateDriver
|
return loadingStateDriver
|
||||||
.asObservable()
|
.asObservable()
|
||||||
.map { $0.error }
|
.map { $0.error }
|
||||||
.flatMap { Observable.from(optional: $0) }
|
.flatMap { Observable.from(optional: $0) }
|
||||||
}
|
}
|
||||||
|
|
||||||
open var firstLoadingResultObservable: Single<ResultType> {
|
open var firstLoadingResultObservable: Single<ResultType> {
|
||||||
loadingResultObservable
|
return loadingResultObservable
|
||||||
.take(1)
|
.take(1)
|
||||||
.asSingle()
|
.asSingle()
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ open class NetworkService {
|
||||||
|
|
||||||
/// Driver that emits true when active requests count != 0 and false otherwise.
|
/// Driver that emits true when active requests count != 0 and false otherwise.
|
||||||
public var isActivityIndicatorVisibleDriver: Driver<Bool> {
|
public var isActivityIndicatorVisibleDriver: Driver<Bool> {
|
||||||
requestCountRelay.asDriver().map { $0 != 0 }.distinctUntilChanged()
|
return requestCountRelay.asDriver().map { $0 != 0 }.distinctUntilChanged()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// - Parameter sessionManager: Alamofire.SessionManager to use for requests
|
/// - Parameter sessionManager: Alamofire.SessionManager to use for requests
|
||||||
|
|
@ -63,12 +63,12 @@ open class NetworkService {
|
||||||
public func rxObservableRequest<T: ObservableMappable>(with parameters: ApiRequestParameters,
|
public func rxObservableRequest<T: ObservableMappable>(with parameters: ApiRequestParameters,
|
||||||
additionalValidStatusCodes: Set<Int> = [],
|
additionalValidStatusCodes: Set<Int> = [],
|
||||||
decoder: JSONDecoder = JSONDecoder())
|
decoder: JSONDecoder = JSONDecoder())
|
||||||
-> Observable<SessionManager.ModelResponse<T>> {
|
-> Observable<SessionManager.ModelResponse<T>> {
|
||||||
|
|
||||||
sessionManager.rx.responseObservableModel(requestParameters: parameters,
|
return sessionManager.rx.responseObservableModel(requestParameters: parameters,
|
||||||
additionalValidStatusCodes: additionalValidStatusCodes,
|
additionalValidStatusCodes: additionalValidStatusCodes,
|
||||||
decoder: decoder)
|
decoder: decoder)
|
||||||
.counterTracking(for: self)
|
.counterTracking(for: self)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Perform reactive request to get mapped ImmutableMappable model and http response
|
/// Perform reactive request to get mapped ImmutableMappable model and http response
|
||||||
|
|
@ -81,12 +81,12 @@ open class NetworkService {
|
||||||
public func rxRequest<T: Decodable>(with parameters: ApiRequestParameters,
|
public func rxRequest<T: Decodable>(with parameters: ApiRequestParameters,
|
||||||
additionalValidStatusCodes: Set<Int> = [],
|
additionalValidStatusCodes: Set<Int> = [],
|
||||||
decoder: JSONDecoder = JSONDecoder())
|
decoder: JSONDecoder = JSONDecoder())
|
||||||
-> Observable<SessionManager.ModelResponse<T>> {
|
-> Observable<SessionManager.ModelResponse<T>> {
|
||||||
|
|
||||||
sessionManager.rx.responseModel(requestParameters: parameters,
|
return sessionManager.rx.responseModel(requestParameters: parameters,
|
||||||
additionalValidStatusCodes: additionalValidStatusCodes,
|
additionalValidStatusCodes: additionalValidStatusCodes,
|
||||||
decoder: decoder)
|
decoder: decoder)
|
||||||
.counterTracking(for: self)
|
.counterTracking(for: self)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Perform reactive request to get data and http response
|
/// Perform reactive request to get data and http response
|
||||||
|
|
@ -96,11 +96,11 @@ open class NetworkService {
|
||||||
/// - additionalValidStatusCodes: set of additional valid status codes
|
/// - additionalValidStatusCodes: set of additional valid status codes
|
||||||
/// - Returns: Observable of tuple containing (HTTPURLResponse, Data)
|
/// - Returns: Observable of tuple containing (HTTPURLResponse, Data)
|
||||||
public func rxDataRequest(with parameters: ApiRequestParameters, additionalValidStatusCodes: Set<Int> = [])
|
public func rxDataRequest(with parameters: ApiRequestParameters, additionalValidStatusCodes: Set<Int> = [])
|
||||||
-> Observable<SessionManager.DataResponse> {
|
-> Observable<SessionManager.DataResponse> {
|
||||||
|
|
||||||
sessionManager.rx.responseData(requestParameters: parameters,
|
return sessionManager.rx.responseData(requestParameters: parameters,
|
||||||
additionalValidStatusCodes: additionalValidStatusCodes)
|
additionalValidStatusCodes: additionalValidStatusCodes)
|
||||||
.counterTracking(for: self)
|
.counterTracking(for: self)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Perform reactive request to upload data and get Observable model and http response
|
/// Perform reactive request to upload data and get Observable model and http response
|
||||||
|
|
@ -113,12 +113,12 @@ open class NetworkService {
|
||||||
public func rxUploadRequest<T: Decodable>(with parameters: ApiUploadRequestParameters,
|
public func rxUploadRequest<T: Decodable>(with parameters: ApiUploadRequestParameters,
|
||||||
additionalValidStatusCodes: Set<Int> = [],
|
additionalValidStatusCodes: Set<Int> = [],
|
||||||
decoder: JSONDecoder = JSONDecoder())
|
decoder: JSONDecoder = JSONDecoder())
|
||||||
-> Observable<SessionManager.ModelResponse<T>> {
|
-> Observable<SessionManager.ModelResponse<T>> {
|
||||||
|
|
||||||
sessionManager.rx.uploadResponseModel(requestParameters: parameters,
|
return sessionManager.rx.uploadResponseModel(requestParameters: parameters,
|
||||||
additionalValidStatusCodes: additionalValidStatusCodes,
|
additionalValidStatusCodes: additionalValidStatusCodes,
|
||||||
decoder: decoder)
|
decoder: decoder)
|
||||||
.counterTracking(for: self)
|
.counterTracking(for: self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -145,7 +145,7 @@ public extension Observable {
|
||||||
/// - Parameter networkService: NetworkService to operate on it
|
/// - Parameter networkService: NetworkService to operate on it
|
||||||
/// - Returns: The source sequence with the side-effecting behavior applied.
|
/// - Returns: The source sequence with the side-effecting behavior applied.
|
||||||
func counterTracking(for networkService: NetworkService) -> Observable<Observable.Element> {
|
func counterTracking(for networkService: NetworkService) -> Observable<Observable.Element> {
|
||||||
`do`(onSubscribe: {
|
return `do`(onSubscribe: {
|
||||||
networkService.increaseRequestCounter()
|
networkService.increaseRequestCounter()
|
||||||
}, onDispose: {
|
}, onDispose: {
|
||||||
networkService.decreaseRequestCounter()
|
networkService.decreaseRequestCounter()
|
||||||
|
|
|
||||||
|
|
@ -62,16 +62,16 @@ public extension BasePlaceholderViewModel {
|
||||||
|
|
||||||
/// Returns true if description is not nil.
|
/// Returns true if description is not nil.
|
||||||
var hasDescription: Bool {
|
var hasDescription: Bool {
|
||||||
description != nil
|
return description != nil
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns true buttonTitle is not nil.
|
/// Returns true buttonTitle is not nil.
|
||||||
var hasButton: Bool {
|
var hasButton: Bool {
|
||||||
buttonTitle != nil
|
return buttonTitle != nil
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns true if centerImage is not nil.
|
/// Returns true if centerImage is not nil.
|
||||||
var hasCenterImage: Bool {
|
var hasCenterImage: Bool {
|
||||||
centerImage != nil
|
return centerImage != nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ open class BasePlaceholderView: ButtonHolderView, InitializableView {
|
||||||
///
|
///
|
||||||
/// - Returns: UIButton (sub)class.
|
/// - Returns: UIButton (sub)class.
|
||||||
open func createButton() -> UIButton {
|
open func createButton() -> UIButton {
|
||||||
UIButton()
|
return UIButton()
|
||||||
}
|
}
|
||||||
|
|
||||||
// MARK: - InitializableView
|
// MARK: - InitializableView
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ open class CustomizableButton: UIButton {
|
||||||
}
|
}
|
||||||
|
|
||||||
func backgroundColor(for state: UIControl.State) -> UIColor? {
|
func backgroundColor(for state: UIControl.State) -> UIColor? {
|
||||||
backgroundColors[state]
|
return backgroundColors[state]
|
||||||
}
|
}
|
||||||
|
|
||||||
private func updateBackgroundColor() {
|
private func updateBackgroundColor() {
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@
|
||||||
//
|
//
|
||||||
|
|
||||||
import RxSwift
|
import RxSwift
|
||||||
|
import RxCocoa
|
||||||
|
|
||||||
public typealias Spinner = UIView & Animatable
|
public typealias Spinner = UIView & Animatable
|
||||||
|
|
||||||
|
|
@ -45,7 +46,7 @@ public struct CustomizableButtonState: OptionSet {
|
||||||
// MARK: - Properties
|
// MARK: - Properties
|
||||||
|
|
||||||
public var isLoading: Bool {
|
public var isLoading: Bool {
|
||||||
contains(.loading)
|
return contains(.loading)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -99,15 +100,15 @@ open class CustomizableButtonView: UIView, InitializableView, ConfigurableView {
|
||||||
// MARK: - Computed Properties
|
// MARK: - Computed Properties
|
||||||
|
|
||||||
public var tapObservable: Observable<Void> {
|
public var tapObservable: Observable<Void> {
|
||||||
button.rx.tap.asObservable()
|
return button.rx.tap.asObservable()
|
||||||
}
|
}
|
||||||
|
|
||||||
override open var forFirstBaselineLayout: UIView {
|
override open var forFirstBaselineLayout: UIView {
|
||||||
button.forFirstBaselineLayout
|
return button.forFirstBaselineLayout
|
||||||
}
|
}
|
||||||
|
|
||||||
override open var forLastBaselineLayout: UIView {
|
override open var forLastBaselineLayout: UIView {
|
||||||
button.forLastBaselineLayout
|
return button.forLastBaselineLayout
|
||||||
}
|
}
|
||||||
|
|
||||||
override open func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
|
override open func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
|
||||||
|
|
@ -255,7 +256,7 @@ open class CustomizableButtonView: UIView, InitializableView, ConfigurableView {
|
||||||
}
|
}
|
||||||
|
|
||||||
private var stateBinder: Binder<CustomizableButtonState> {
|
private var stateBinder: Binder<CustomizableButtonState> {
|
||||||
Binder(self) { base, value in
|
return Binder(self) { base, value in
|
||||||
base.configureButton(withState: value)
|
base.configureButton(withState: value)
|
||||||
base.onStateChange(value)
|
base.onStateChange(value)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -39,15 +39,15 @@ open class CustomizableButtonViewModel {
|
||||||
}
|
}
|
||||||
|
|
||||||
open var stateDriver: Driver<CustomizableButtonState> {
|
open var stateDriver: Driver<CustomizableButtonState> {
|
||||||
stateRelay.asDriver()
|
return stateRelay.asDriver()
|
||||||
}
|
}
|
||||||
|
|
||||||
func bind(tapObservable: Observable<Void>) -> Disposable {
|
func bind(tapObservable: Observable<Void>) -> Disposable {
|
||||||
tapObservable.bind(to: tapRelay)
|
return tapObservable.bind(to: tapRelay)
|
||||||
}
|
}
|
||||||
|
|
||||||
public var tapDriver: Driver<Void> {
|
public var tapDriver: Driver<Void> {
|
||||||
tapRelay.asDriver()
|
return tapRelay.asDriver()
|
||||||
}
|
}
|
||||||
|
|
||||||
public func updateState(with newState: CustomizableButtonState) {
|
public func updateState(with newState: CustomizableButtonState) {
|
||||||
|
|
|
||||||
|
|
@ -48,6 +48,6 @@ public final class EmptyCellRow: TableRow<EmptyCell> {
|
||||||
|
|
||||||
/// Used for set custom height to each cell, not for each cell type
|
/// Used for set custom height to each cell, not for each cell type
|
||||||
override public var defaultHeight: CGFloat? {
|
override public var defaultHeight: CGFloat? {
|
||||||
rowHeight
|
return rowHeight
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -93,11 +93,11 @@ open class LabelTableViewCell: SeparatorCell, InitializableView, ConfigurableCel
|
||||||
// MARK: - Private
|
// MARK: - Private
|
||||||
|
|
||||||
private var labelInsets: UIEdgeInsets {
|
private var labelInsets: UIEdgeInsets {
|
||||||
viewModel?.labelInsets ?? .zero
|
return viewModel?.labelInsets ?? .zero
|
||||||
}
|
}
|
||||||
|
|
||||||
private var contentInsets: UIEdgeInsets {
|
private var contentInsets: UIEdgeInsets {
|
||||||
viewModel?.contentInsets ?? .zero
|
return viewModel?.contentInsets ?? .zero
|
||||||
}
|
}
|
||||||
|
|
||||||
// MARK: - Subclass methods to override
|
// MARK: - Subclass methods to override
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ import UIKit
|
||||||
public final class SpinnerView: UIView, Animatable, LoadingIndicator {
|
public final class SpinnerView: UIView, Animatable, LoadingIndicator {
|
||||||
|
|
||||||
private var animating: Bool {
|
private var animating: Bool {
|
||||||
imageView?.layer.animation(forKey: CABasicAnimation.rotationKeyPath) != nil
|
return imageView?.layer.animation(forKey: CABasicAnimation.rotationKeyPath) != nil
|
||||||
}
|
}
|
||||||
|
|
||||||
private var startTime = CFTimeInterval(0)
|
private var startTime = CFTimeInterval(0)
|
||||||
|
|
|
||||||
|
|
@ -57,7 +57,7 @@ public final class DataModelFieldBinding<T> {
|
||||||
/// - Parameter textDriver: Driver that emits new text values.
|
/// - Parameter textDriver: Driver that emits new text values.
|
||||||
/// - Returns: Disposable object that can be used to unsubscribe the observer from the behaviour relay.
|
/// - Returns: Disposable object that can be used to unsubscribe the observer from the behaviour relay.
|
||||||
public func mergeStringToModel(from textDriver: Driver<String?>) -> Disposable {
|
public func mergeStringToModel(from textDriver: Driver<String?>) -> Disposable {
|
||||||
textDriver.map { [modelRelay, mergeFieldClosure] in
|
return textDriver.map { [modelRelay, mergeFieldClosure] in
|
||||||
mergeFieldClosure(modelRelay.value, $0)
|
mergeFieldClosure(modelRelay.value, $0)
|
||||||
}
|
}
|
||||||
.drive(modelRelay)
|
.drive(modelRelay)
|
||||||
|
|
@ -65,7 +65,7 @@ public final class DataModelFieldBinding<T> {
|
||||||
|
|
||||||
/// A Driver that will emit current field value.
|
/// A Driver that will emit current field value.
|
||||||
public var fieldDriver: Driver<String?> {
|
public var fieldDriver: Driver<String?> {
|
||||||
modelDriver.map(getFieldClosure)
|
return modelDriver.map(getFieldClosure)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -111,11 +111,11 @@ public extension BehaviorRelay {
|
||||||
/// - Returns: DataModelFieldBinding instance.
|
/// - Returns: DataModelFieldBinding instance.
|
||||||
func fieldBinding(getFieldClosure: @escaping DataModelFieldBinding<Element>.GetFieldClosure,
|
func fieldBinding(getFieldClosure: @escaping DataModelFieldBinding<Element>.GetFieldClosure,
|
||||||
mergeFieldClosure: @escaping DataModelFieldBinding<Element>.MergeFieldClosure)
|
mergeFieldClosure: @escaping DataModelFieldBinding<Element>.MergeFieldClosure)
|
||||||
-> DataModelFieldBinding<Element> {
|
-> DataModelFieldBinding<Element> {
|
||||||
|
|
||||||
DataModelFieldBinding(modelRelay: self,
|
return DataModelFieldBinding(modelRelay: self,
|
||||||
getFieldClosure: getFieldClosure,
|
getFieldClosure: getFieldClosure,
|
||||||
mergeFieldClosure: mergeFieldClosure)
|
mergeFieldClosure: mergeFieldClosure)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -125,6 +125,6 @@ public extension BehaviorRelay where Element == String? {
|
||||||
///
|
///
|
||||||
/// - Returns: DataModelFieldBinding instance.
|
/// - Returns: DataModelFieldBinding instance.
|
||||||
func fieldBinding() -> DataModelFieldBinding<Element> {
|
func fieldBinding() -> DataModelFieldBinding<Element> {
|
||||||
DataModelFieldBinding(modelRelay: self)
|
return DataModelFieldBinding(modelRelay: self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ open class TextFieldViewModel < ViewEvents: TextFieldViewEvents,
|
||||||
/// View events driver that will emit view events structure
|
/// View events driver that will emit view events structure
|
||||||
/// when view will bind itself to the view model.
|
/// when view will bind itself to the view model.
|
||||||
public var viewEventsDriver: Driver<ViewEvents> {
|
public var viewEventsDriver: Driver<ViewEvents> {
|
||||||
viewEventsRelay
|
return viewEventsRelay
|
||||||
.asDriver()
|
.asDriver()
|
||||||
.flatMap { viewEvents -> Driver<ViewEvents> in
|
.flatMap { viewEvents -> Driver<ViewEvents> in
|
||||||
guard let viewEvents = viewEvents else {
|
guard let viewEvents = viewEvents else {
|
||||||
|
|
@ -77,7 +77,7 @@ public extension TextFieldViewModel {
|
||||||
/// - Parameter closure: Closure that takes a view events parameter and returns Disposable.
|
/// - Parameter closure: Closure that takes a view events parameter and returns Disposable.
|
||||||
/// - Returns: Disposable object that can be used to unsubscribe the observer from the binding.
|
/// - Returns: Disposable object that can be used to unsubscribe the observer from the binding.
|
||||||
func mapViewEvents(_ closure: @escaping MapViewEventClosure) -> Disposable {
|
func mapViewEvents(_ closure: @escaping MapViewEventClosure) -> Disposable {
|
||||||
mapViewEvents { [closure($0)] }
|
return mapViewEvents { [closure($0)] }
|
||||||
}
|
}
|
||||||
|
|
||||||
typealias MapViewEventsClosure = (ViewEvents) -> [Disposable]
|
typealias MapViewEventsClosure = (ViewEvents) -> [Disposable]
|
||||||
|
|
@ -87,7 +87,7 @@ public extension TextFieldViewModel {
|
||||||
/// - Parameter closure: Closure that takes a view events parameter and returns [Disposable].
|
/// - Parameter closure: Closure that takes a view events parameter and returns [Disposable].
|
||||||
/// - Returns: Disposable object that can be used to unsubscribe the observer from the binding.
|
/// - Returns: Disposable object that can be used to unsubscribe the observer from the binding.
|
||||||
func mapViewEvents(_ closure: @escaping MapViewEventsClosure) -> Disposable {
|
func mapViewEvents(_ closure: @escaping MapViewEventsClosure) -> Disposable {
|
||||||
viewEventsDriver
|
return viewEventsDriver
|
||||||
.map { [weak self] in
|
.map { [weak self] in
|
||||||
guard let strongSelf = self else {
|
guard let strongSelf = self else {
|
||||||
return
|
return
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ open class XibView: UIView {
|
||||||
/// Nib name used to instantiate inner view
|
/// Nib name used to instantiate inner view
|
||||||
/// - NOTE: Be very carefully when you're intending to change this line
|
/// - NOTE: Be very carefully when you're intending to change this line
|
||||||
open var innerViewNibName: String {
|
open var innerViewNibName: String {
|
||||||
typeName(of: type(of: self))
|
return typeName(of: type(of: self))
|
||||||
}
|
}
|
||||||
|
|
||||||
public convenience init() {
|
public convenience init() {
|
||||||
|
|
|
||||||
|
|
@ -41,28 +41,28 @@ extension GeneralDataLoadingState: DataLoadingState {
|
||||||
public typealias DataSourceType = DS
|
public typealias DataSourceType = DS
|
||||||
|
|
||||||
public static var initialState: GeneralDataLoadingState<DS> {
|
public static var initialState: GeneralDataLoadingState<DS> {
|
||||||
.initial
|
return .initial
|
||||||
}
|
}
|
||||||
|
|
||||||
public static var emptyState: GeneralDataLoadingState<DS> {
|
public static var emptyState: GeneralDataLoadingState<DS> {
|
||||||
.empty
|
return .empty
|
||||||
}
|
}
|
||||||
|
|
||||||
public static func initialLoadingState(after: GeneralDataLoadingState<DS>) -> GeneralDataLoadingState<DS> {
|
public static func initialLoadingState(after: GeneralDataLoadingState<DS>) -> GeneralDataLoadingState<DS> {
|
||||||
.loading
|
return .loading
|
||||||
}
|
}
|
||||||
|
|
||||||
public static func resultState(result: DS.ResultType,
|
public static func resultState(result: DS.ResultType,
|
||||||
from: DS,
|
from: DS,
|
||||||
after: GeneralDataLoadingState<DS>) -> GeneralDataLoadingState<DS> {
|
after: GeneralDataLoadingState<DS>) -> GeneralDataLoadingState<DS> {
|
||||||
|
|
||||||
.result(newResult: result, from: from)
|
return .result(newResult: result, from: from)
|
||||||
}
|
}
|
||||||
|
|
||||||
public static func errorState(error: Error,
|
public static func errorState(error: Error,
|
||||||
after: GeneralDataLoadingState<DS>) -> GeneralDataLoadingState<DS> {
|
after: GeneralDataLoadingState<DS>) -> GeneralDataLoadingState<DS> {
|
||||||
|
|
||||||
.error(error: error)
|
return .error(error: error)
|
||||||
}
|
}
|
||||||
|
|
||||||
public var isInitialState: Bool {
|
public var isInitialState: Bool {
|
||||||
|
|
|
||||||
|
|
@ -45,28 +45,28 @@ extension PaginationDataLoadingState: DataLoadingState {
|
||||||
public typealias DataSourceType = DS
|
public typealias DataSourceType = DS
|
||||||
|
|
||||||
public static var initialState: PaginationDataLoadingState<DS> {
|
public static var initialState: PaginationDataLoadingState<DS> {
|
||||||
.initial
|
return .initial
|
||||||
}
|
}
|
||||||
|
|
||||||
public static var emptyState: PaginationDataLoadingState<DS> {
|
public static var emptyState: PaginationDataLoadingState<DS> {
|
||||||
.empty
|
return .empty
|
||||||
}
|
}
|
||||||
|
|
||||||
public static func initialLoadingState(after: PaginationDataLoadingState<DS>) -> PaginationDataLoadingState<DS> {
|
public static func initialLoadingState(after: PaginationDataLoadingState<DS>) -> PaginationDataLoadingState<DS> {
|
||||||
.initialLoading(after: after)
|
return .initialLoading(after: after)
|
||||||
}
|
}
|
||||||
|
|
||||||
public static func resultState(result: DS.ResultType,
|
public static func resultState(result: DS.ResultType,
|
||||||
from: DataSourceType,
|
from: DataSourceType,
|
||||||
after: PaginationDataLoadingState<DS>) -> PaginationDataLoadingState<DS> {
|
after: PaginationDataLoadingState<DS>) -> PaginationDataLoadingState<DS> {
|
||||||
|
|
||||||
.results(newItems: result, from: from, after: after)
|
return .results(newItems: result, from: from, after: after)
|
||||||
}
|
}
|
||||||
|
|
||||||
public static func errorState(error: Error,
|
public static func errorState(error: Error,
|
||||||
after: PaginationDataLoadingState<DS>) -> PaginationDataLoadingState<DS> {
|
after: PaginationDataLoadingState<DS>) -> PaginationDataLoadingState<DS> {
|
||||||
|
|
||||||
.error(error: error, after: after)
|
return .error(error: error, after: after)
|
||||||
}
|
}
|
||||||
|
|
||||||
public var isInitialState: Bool {
|
public var isInitialState: Bool {
|
||||||
|
|
|
||||||
|
|
@ -31,8 +31,8 @@ import Alamofire
|
||||||
/// - mapping: Errors that occurs during mapping json into model.
|
/// - mapping: Errors that occurs during mapping json into model.
|
||||||
public enum RequestError: Error {
|
public enum RequestError: Error {
|
||||||
|
|
||||||
case noConnection(url: String?)
|
case noConnection
|
||||||
case network(error: Error, response: Data?, url: String?)
|
case network(error: Error, response: Data?)
|
||||||
case invalidResponse(error: AFError, response: Data?, url: String?)
|
case invalidResponse(error: AFError, response: Data?)
|
||||||
case mapping(error: Error, response: Data, url: String?)
|
case mapping(error: Error, response: Data)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ public extension Reactive where Base: DataRequest {
|
||||||
func apiResponse<T: Decodable>(mappingQueue: DispatchQueue = .global(), decoder: JSONDecoder)
|
func apiResponse<T: Decodable>(mappingQueue: DispatchQueue = .global(), decoder: JSONDecoder)
|
||||||
-> Observable<SessionManager.ModelResponse<T>> {
|
-> Observable<SessionManager.ModelResponse<T>> {
|
||||||
|
|
||||||
response(onQueue: mappingQueue)
|
return response(onQueue: mappingQueue)
|
||||||
.tryMapResult { response, data in
|
.tryMapResult { response, data in
|
||||||
(response, try decoder.decode(T.self, from: data))
|
(response, try decoder.decode(T.self, from: data))
|
||||||
}
|
}
|
||||||
|
|
@ -50,7 +50,7 @@ public extension Reactive where Base: DataRequest {
|
||||||
func observableApiResponse<T: ObservableMappable>(mappingQueue: DispatchQueue = .global(), decoder: JSONDecoder)
|
func observableApiResponse<T: ObservableMappable>(mappingQueue: DispatchQueue = .global(), decoder: JSONDecoder)
|
||||||
-> Observable<SessionManager.ModelResponse<T>> {
|
-> Observable<SessionManager.ModelResponse<T>> {
|
||||||
|
|
||||||
response(onQueue: mappingQueue)
|
return response(onQueue: mappingQueue)
|
||||||
.tryMapObservableResult { response, value in
|
.tryMapObservableResult { response, value in
|
||||||
let json = try JSONSerialization.jsonObject(with: value, options: [])
|
let json = try JSONSerialization.jsonObject(with: value, options: [])
|
||||||
return T.create(from: json, with: decoder)
|
return T.create(from: json, with: decoder)
|
||||||
|
|
@ -64,13 +64,13 @@ public extension Reactive where Base: DataRequest {
|
||||||
/// - Parameter mappingQueue: The dispatch queue to use for mapping
|
/// - Parameter mappingQueue: The dispatch queue to use for mapping
|
||||||
/// - Returns: Observable with HTTP URL Response and data
|
/// - Returns: Observable with HTTP URL Response and data
|
||||||
func dataApiResponse(mappingQueue: DispatchQueue) -> Observable<SessionManager.DataResponse> {
|
func dataApiResponse(mappingQueue: DispatchQueue) -> Observable<SessionManager.DataResponse> {
|
||||||
response(onQueue: mappingQueue)
|
return response(onQueue: mappingQueue)
|
||||||
.map { $0 as SessionManager.DataResponse }
|
.map { $0 as SessionManager.DataResponse }
|
||||||
.catchAsRequestError(with: self.base)
|
.catchAsRequestError(with: self.base)
|
||||||
}
|
}
|
||||||
|
|
||||||
private func response(onQueue queue: DispatchQueue) -> Observable<(HTTPURLResponse, Data)> {
|
private func response(onQueue queue: DispatchQueue) -> Observable<(HTTPURLResponse, Data)> {
|
||||||
responseResult(queue: queue, responseSerializer: DataResponseSerializer())
|
return responseResult(queue: queue, responseSerializer: DataResponseSerializer())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -80,39 +80,33 @@ public extension ObservableType where Element == DataRequest {
|
||||||
///
|
///
|
||||||
/// - Parameter statusCodes: set of status codes to validate
|
/// - Parameter statusCodes: set of status codes to validate
|
||||||
/// - Returns: Observable on self
|
/// - Returns: Observable on self
|
||||||
func validate(statusCodes: Set<Int>, url: String? = nil) -> Observable<Element> {
|
func validate(statusCodes: Set<Int>) -> Observable<Element> {
|
||||||
map { $0.validate(statusCode: statusCodes) }
|
return map { $0.validate(statusCode: statusCodes) }
|
||||||
.catchAsRequestError(url: url)
|
.catchAsRequestError()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private extension ObservableType where Element == ServerResponse {
|
private extension ObservableType where Element == ServerResponse {
|
||||||
|
|
||||||
func tryMapResult<R>(_ transform: @escaping (Element) throws -> R) -> Observable<R> {
|
func tryMapResult<R>(_ transform: @escaping (Element) throws -> R) -> Observable<R> {
|
||||||
map {
|
return map {
|
||||||
do {
|
do {
|
||||||
return try transform($0)
|
return try transform($0)
|
||||||
} catch {
|
} catch {
|
||||||
throw RequestError.mapping(error: error,
|
throw RequestError.mapping(error: error, response: $0.1)
|
||||||
response: $0.1,
|
|
||||||
url: $0.0.url?.absoluteString)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func tryMapObservableResult<R>(_ transform: @escaping (Element) throws -> Observable<R>) -> Observable<R> {
|
func tryMapObservableResult<R>(_ transform: @escaping (Element) throws -> Observable<R>) -> Observable<R> {
|
||||||
flatMap { response, result -> Observable<R> in
|
return flatMap { response, result -> Observable<R> in
|
||||||
do {
|
do {
|
||||||
return try transform((response, result))
|
return try transform((response, result))
|
||||||
.catch {
|
.catchError {
|
||||||
throw RequestError.mapping(error: $0,
|
throw RequestError.mapping(error: $0, response: result)
|
||||||
response: result,
|
|
||||||
url: response.url?.absoluteString)
|
|
||||||
}
|
}
|
||||||
} catch {
|
} catch {
|
||||||
throw RequestError.mapping(error: error,
|
throw RequestError.mapping(error: error, response: result)
|
||||||
response: result,
|
|
||||||
url: response.url?.absoluteString)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -120,9 +114,8 @@ private extension ObservableType where Element == ServerResponse {
|
||||||
|
|
||||||
private extension ObservableType {
|
private extension ObservableType {
|
||||||
|
|
||||||
func catchAsRequestError(with request: DataRequest? = nil,
|
func catchAsRequestError(with request: DataRequest? = nil) -> Observable<Element> {
|
||||||
url: String? = nil) -> Observable<Element> {
|
return catchError { error in
|
||||||
self.catch { error in
|
|
||||||
let resultError: RequestError
|
let resultError: RequestError
|
||||||
let response = request?.data
|
let response = request?.data
|
||||||
|
|
||||||
|
|
@ -133,10 +126,10 @@ private extension ObservableType {
|
||||||
case let urlError as URLError:
|
case let urlError as URLError:
|
||||||
switch urlError.code {
|
switch urlError.code {
|
||||||
case .notConnectedToInternet:
|
case .notConnectedToInternet:
|
||||||
resultError = .noConnection(url: url)
|
resultError = .noConnection
|
||||||
|
|
||||||
default:
|
default:
|
||||||
resultError = .network(error: urlError, response: response, url: url)
|
resultError = .network(error: urlError, response: response)
|
||||||
}
|
}
|
||||||
|
|
||||||
case let afError as AFError:
|
case let afError as AFError:
|
||||||
|
|
@ -144,21 +137,21 @@ private extension ObservableType {
|
||||||
case let .sessionTaskFailed(error):
|
case let .sessionTaskFailed(error):
|
||||||
switch error {
|
switch error {
|
||||||
case let urlError as URLError where urlError.code == .notConnectedToInternet:
|
case let urlError as URLError where urlError.code == .notConnectedToInternet:
|
||||||
resultError = .noConnection(url: url)
|
resultError = .noConnection
|
||||||
|
|
||||||
default:
|
default:
|
||||||
resultError = .network(error: error, response: response, url: url)
|
resultError = .network(error: error, response: response)
|
||||||
}
|
}
|
||||||
|
|
||||||
case .responseSerializationFailed, .responseValidationFailed:
|
case .responseSerializationFailed, .responseValidationFailed:
|
||||||
resultError = .invalidResponse(error: afError, response: response, url: url)
|
resultError = .invalidResponse(error: afError, response: response)
|
||||||
|
|
||||||
default:
|
default:
|
||||||
resultError = .network(error: afError, response: response, url: url)
|
resultError = .network(error: afError, response: response)
|
||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
resultError = .network(error: error, response: response, url: url)
|
resultError = .network(error: error, response: response)
|
||||||
}
|
}
|
||||||
|
|
||||||
throw resultError
|
throw resultError
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ public extension Reactive where Base: SessionManager {
|
||||||
headers: HTTPHeaders? = nil)
|
headers: HTTPHeaders? = nil)
|
||||||
-> Observable<DataRequest> {
|
-> Observable<DataRequest> {
|
||||||
|
|
||||||
Observable.deferred {
|
return Observable.deferred {
|
||||||
|
|
||||||
guard method != .get else {
|
guard method != .get else {
|
||||||
assertionFailure("Unable to pass array in get request")
|
assertionFailure("Unable to pass array in get request")
|
||||||
|
|
@ -74,7 +74,7 @@ public extension Reactive where Base: SessionManager {
|
||||||
/// - additionalValidStatusCodes: set of additional valid status codes
|
/// - additionalValidStatusCodes: set of additional valid status codes
|
||||||
/// - Returns: Observable with request
|
/// - Returns: Observable with request
|
||||||
func apiRequest(requestParameters: ApiRequestParameters, additionalValidStatusCodes: Set<Int>) -> Observable<DataRequest> {
|
func apiRequest(requestParameters: ApiRequestParameters, additionalValidStatusCodes: Set<Int>) -> Observable<DataRequest> {
|
||||||
.deferred {
|
return .deferred {
|
||||||
var url = try requestParameters.url.asURL()
|
var url = try requestParameters.url.asURL()
|
||||||
|
|
||||||
if let queryItems = requestParameters.queryItems {
|
if let queryItems = requestParameters.queryItems {
|
||||||
|
|
@ -117,8 +117,7 @@ public extension Reactive where Base: SessionManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
return requestObservable
|
return requestObservable
|
||||||
.validate(statusCodes: self.base.acceptableStatusCodes.union(additionalValidStatusCodes),
|
.validate(statusCodes: self.base.acceptableStatusCodes.union(additionalValidStatusCodes))
|
||||||
url: url.absoluteString)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -134,7 +133,7 @@ public extension Reactive where Base: SessionManager {
|
||||||
decoder: JSONDecoder)
|
decoder: JSONDecoder)
|
||||||
-> Observable<SessionManager.ModelResponse<T>> {
|
-> Observable<SessionManager.ModelResponse<T>> {
|
||||||
|
|
||||||
apiRequest(requestParameters: requestParameters, additionalValidStatusCodes: additionalValidStatusCodes)
|
return apiRequest(requestParameters: requestParameters, additionalValidStatusCodes: additionalValidStatusCodes)
|
||||||
.flatMap {
|
.flatMap {
|
||||||
$0.rx.apiResponse(mappingQueue: self.base.mappingQueue, decoder: decoder)
|
$0.rx.apiResponse(mappingQueue: self.base.mappingQueue, decoder: decoder)
|
||||||
}
|
}
|
||||||
|
|
@ -152,7 +151,7 @@ public extension Reactive where Base: SessionManager {
|
||||||
decoder: JSONDecoder)
|
decoder: JSONDecoder)
|
||||||
-> Observable<SessionManager.ModelResponse<T>> {
|
-> Observable<SessionManager.ModelResponse<T>> {
|
||||||
|
|
||||||
apiRequest(requestParameters: requestParameters, additionalValidStatusCodes: additionalValidStatusCodes)
|
return apiRequest(requestParameters: requestParameters, additionalValidStatusCodes: additionalValidStatusCodes)
|
||||||
.flatMap {
|
.flatMap {
|
||||||
$0.rx.observableApiResponse(mappingQueue: self.base.mappingQueue, decoder: decoder)
|
$0.rx.observableApiResponse(mappingQueue: self.base.mappingQueue, decoder: decoder)
|
||||||
}
|
}
|
||||||
|
|
@ -167,7 +166,7 @@ public extension Reactive where Base: SessionManager {
|
||||||
func responseData(requestParameters: ApiRequestParameters, additionalValidStatusCodes: Set<Int>)
|
func responseData(requestParameters: ApiRequestParameters, additionalValidStatusCodes: Set<Int>)
|
||||||
-> Observable<SessionManager.DataResponse> {
|
-> Observable<SessionManager.DataResponse> {
|
||||||
|
|
||||||
apiRequest(requestParameters: requestParameters, additionalValidStatusCodes: additionalValidStatusCodes)
|
return apiRequest(requestParameters: requestParameters, additionalValidStatusCodes: additionalValidStatusCodes)
|
||||||
.flatMap {
|
.flatMap {
|
||||||
$0.rx.dataApiResponse(mappingQueue: self.base.mappingQueue)
|
$0.rx.dataApiResponse(mappingQueue: self.base.mappingQueue)
|
||||||
}
|
}
|
||||||
|
|
@ -185,15 +184,14 @@ public extension Reactive where Base: SessionManager {
|
||||||
decoder: JSONDecoder)
|
decoder: JSONDecoder)
|
||||||
-> Observable<SessionManager.ModelResponse<T>> {
|
-> Observable<SessionManager.ModelResponse<T>> {
|
||||||
|
|
||||||
Observable.deferred {
|
return Observable.deferred {
|
||||||
|
|
||||||
let urlRequest = try URLRequest(url: requestParameters.url, method: .post, headers: requestParameters.headers)
|
let urlRequest = try URLRequest(url: requestParameters.url, method: .post, headers: requestParameters.headers)
|
||||||
let data = try requestParameters.formData.encode()
|
let data = try requestParameters.formData.encode()
|
||||||
|
|
||||||
return self.upload(data, urlRequest: urlRequest)
|
return self.upload(data, urlRequest: urlRequest)
|
||||||
.map { $0 as DataRequest }
|
.map { $0 as DataRequest }
|
||||||
.validate(statusCodes: self.base.acceptableStatusCodes.union(additionalValidStatusCodes),
|
.validate(statusCodes: self.base.acceptableStatusCodes.union(additionalValidStatusCodes))
|
||||||
url: try? requestParameters.url.asURL().absoluteString)
|
|
||||||
.flatMap {
|
.flatMap {
|
||||||
$0.rx.apiResponse(mappingQueue: self.base.mappingQueue, decoder: decoder)
|
$0.rx.apiResponse(mappingQueue: self.base.mappingQueue, decoder: decoder)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -69,6 +69,6 @@ public extension Array {
|
||||||
|
|
||||||
// Subscript for safe access to element by index
|
// Subscript for safe access to element by index
|
||||||
subscript(safe index: Index) -> Element? {
|
subscript(safe index: Index) -> Element? {
|
||||||
(index < count && index >= 0) ? self[index] : nil
|
return (index < count && index >= 0) ? self[index] : nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,11 +26,11 @@ public extension Array where Element: TableKitViewModel {
|
||||||
|
|
||||||
/// Creates [Row] array from TableKitViewModels.
|
/// Creates [Row] array from TableKitViewModels.
|
||||||
var tableRows: [Row] {
|
var tableRows: [Row] {
|
||||||
map { $0.tableRow }
|
return map { $0.tableRow }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates TableSection with empty, zero height header and footer.
|
/// Creates TableSection with empty, zero height header and footer.
|
||||||
var onlyRowsSection: TableSection {
|
var onlyRowsSection: TableSection {
|
||||||
TableSection(onlyRows: tableRows)
|
return TableSection(onlyRows: tableRows)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ public extension Array where Element == SeparatorRowBox {
|
||||||
|
|
||||||
/// Create rows from SeparatorRowBox array
|
/// Create rows from SeparatorRowBox array
|
||||||
var rows: [Row] {
|
var rows: [Row] {
|
||||||
map { $0.row }
|
return map { $0.row }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Configure separators from SeparatorRowBox array
|
/// Configure separators from SeparatorRowBox array
|
||||||
|
|
|
||||||
|
|
@ -25,10 +25,10 @@ extension Array: TotalCountCursorListingResult {
|
||||||
public typealias ElementType = Element
|
public typealias ElementType = Element
|
||||||
|
|
||||||
public var results: [Element] {
|
public var results: [Element] {
|
||||||
self
|
return self
|
||||||
}
|
}
|
||||||
|
|
||||||
public var totalCount: Int {
|
public var totalCount: Int {
|
||||||
count
|
return count
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ public extension Encodable {
|
||||||
/// Method that converts encodable model to URLQueryItems array
|
/// Method that converts encodable model to URLQueryItems array
|
||||||
/// - Returns: URLQueryItems array
|
/// - Returns: URLQueryItems array
|
||||||
func asUrlQueryItems() throws -> [URLQueryItem] {
|
func asUrlQueryItems() throws -> [URLQueryItem] {
|
||||||
try toJSON().map {
|
return try toJSON().map {
|
||||||
if ($1 is [String: Any] || $1 is [Any]),
|
if ($1 is [String: Any] || $1 is [Any]),
|
||||||
let jsonData = try? JSONSerialization.data(withJSONObject: $1, options: []),
|
let jsonData = try? JSONSerialization.data(withJSONObject: $1, options: []),
|
||||||
let jsonString = String(data: jsonData, encoding: .utf8) {
|
let jsonString = String(data: jsonData, encoding: .utf8) {
|
||||||
|
|
|
||||||
|
|
@ -28,13 +28,13 @@ public extension Comparable {
|
||||||
/// - parameter bounds: Lower and uppper bounds tuple
|
/// - parameter bounds: Lower and uppper bounds tuple
|
||||||
/// - returns: Current value if it fits range, otherwise lower if value is too small or upper if value is too big
|
/// - returns: Current value if it fits range, otherwise lower if value is too small or upper if value is too big
|
||||||
func `in`(bounds: (lower: Self, upper: Self)) -> Self {
|
func `in`(bounds: (lower: Self, upper: Self)) -> Self {
|
||||||
min(max(bounds.lower, self), bounds.upper)
|
return min(max(bounds.lower, self), bounds.upper)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Use this function to restrict comparable with lower and upper values
|
/// Use this function to restrict comparable with lower and upper values
|
||||||
/// - parameter range: ClosedRange representing bounds
|
/// - parameter range: ClosedRange representing bounds
|
||||||
/// - returns: Current value if it fits range, otherwise lower if value is too small or upper if value is too big
|
/// - returns: Current value if it fits range, otherwise lower if value is too small or upper if value is too big
|
||||||
func `in`(range: ClosedRange<Self>) -> Self {
|
func `in`(range: ClosedRange<Self>) -> Self {
|
||||||
`in`(bounds: (lower: range.lowerBound, upper: range.upperBound))
|
return `in`(bounds: (lower: range.lowerBound, upper: range.upperBound))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,6 @@ import RxSwift
|
||||||
public extension RxDataSource where Self: CursorType {
|
public extension RxDataSource where Self: CursorType {
|
||||||
|
|
||||||
func resultSingle() -> Single<[Element]> {
|
func resultSingle() -> Single<[Element]> {
|
||||||
loadNextBatch()
|
return loadNextBatch()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -25,14 +25,14 @@ import Foundation
|
||||||
public extension CursorType {
|
public extension CursorType {
|
||||||
|
|
||||||
subscript(range: CountableRange<Int>) -> [Self.Element] {
|
subscript(range: CountableRange<Int>) -> [Self.Element] {
|
||||||
range.map { self[$0] }
|
return range.map { self[$0] }
|
||||||
}
|
}
|
||||||
|
|
||||||
subscript(range: CountableClosedRange<Int>) -> [Self.Element] {
|
subscript(range: CountableClosedRange<Int>) -> [Self.Element] {
|
||||||
range.map { self[$0] }
|
return range.map { self[$0] }
|
||||||
}
|
}
|
||||||
|
|
||||||
var loadedElements: [Self.Element] {
|
var loadedElements: [Self.Element] {
|
||||||
self[0..<count]
|
return self[0..<count]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -28,8 +28,8 @@ public extension TotalCountCursorListingResult {
|
||||||
/// - Parameter transform: closure to transform results
|
/// - Parameter transform: closure to transform results
|
||||||
/// - Returns: new DefaultTotalCountCursorListingResult instance
|
/// - Returns: new DefaultTotalCountCursorListingResult instance
|
||||||
func asDefaultListingResult<E>(transform: ((ElementType) -> E)) -> DefaultTotalCountCursorListingResult<E> {
|
func asDefaultListingResult<E>(transform: ((ElementType) -> E)) -> DefaultTotalCountCursorListingResult<E> {
|
||||||
DefaultTotalCountCursorListingResult(results: results.map(transform),
|
return DefaultTotalCountCursorListingResult(results: results.map(transform),
|
||||||
totalCount: totalCount)
|
totalCount: totalCount)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Method that creates DefaultTotalCountCursorListingResult
|
/// Method that creates DefaultTotalCountCursorListingResult
|
||||||
|
|
@ -37,7 +37,7 @@ public extension TotalCountCursorListingResult {
|
||||||
///
|
///
|
||||||
/// - Returns: new DefaultTotalCountCursorListingResult instance
|
/// - Returns: new DefaultTotalCountCursorListingResult instance
|
||||||
func asDefaultListingResult() -> DefaultTotalCountCursorListingResult<ElementType> {
|
func asDefaultListingResult() -> DefaultTotalCountCursorListingResult<ElementType> {
|
||||||
DefaultTotalCountCursorListingResult(results: results,
|
return DefaultTotalCountCursorListingResult(results: results,
|
||||||
totalCount: totalCount)
|
totalCount: totalCount)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -28,13 +28,13 @@ public extension GeneralDataLoadingController {
|
||||||
// MARK: - DisposeBagHolder default implementation
|
// MARK: - DisposeBagHolder default implementation
|
||||||
|
|
||||||
var disposeBag: DisposeBag {
|
var disposeBag: DisposeBag {
|
||||||
viewModel.disposeBag
|
return viewModel.disposeBag
|
||||||
}
|
}
|
||||||
|
|
||||||
// MARK: - StatefulViewController default implementation
|
// MARK: - StatefulViewController default implementation
|
||||||
|
|
||||||
func hasContent() -> Bool {
|
func hasContent() -> Bool {
|
||||||
viewModel.hasContent
|
return viewModel.hasContent
|
||||||
}
|
}
|
||||||
|
|
||||||
// MARK: - GeneralDataLoadingController default implementation
|
// MARK: - GeneralDataLoadingController default implementation
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ import RxCocoa
|
||||||
internal extension GeneralDataLoadingHandler where Self: AnyObject {
|
internal extension GeneralDataLoadingHandler where Self: AnyObject {
|
||||||
|
|
||||||
var stateChangeBinder: Binder<GeneralDataLoadingState<Single<ResultType>>> {
|
var stateChangeBinder: Binder<GeneralDataLoadingState<Single<ResultType>>> {
|
||||||
Binder(self) { base, value in
|
return Binder(self) { base, value in
|
||||||
switch value {
|
switch value {
|
||||||
case .loading:
|
case .loading:
|
||||||
base.onLoadingState()
|
base.onLoadingState()
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ public extension GeneralDataLoadingViewModel {
|
||||||
|
|
||||||
/// Emit elements of ResultType from state observable.
|
/// Emit elements of ResultType from state observable.
|
||||||
var resultObservable: Observable<ResultType> {
|
var resultObservable: Observable<ResultType> {
|
||||||
loadingStateObservable.flatMap { state -> Observable<ResultType> in
|
return loadingStateObservable.flatMap { state -> Observable<ResultType> in
|
||||||
switch state {
|
switch state {
|
||||||
case .result(let newResult, _):
|
case .result(let newResult, _):
|
||||||
return .just(newResult)
|
return .just(newResult)
|
||||||
|
|
@ -47,7 +47,7 @@ public extension GeneralDataLoadingViewModel {
|
||||||
|
|
||||||
/// Emit elements of ResultType from state driver.
|
/// Emit elements of ResultType from state driver.
|
||||||
var resultDriver: Driver<ResultType> {
|
var resultDriver: Driver<ResultType> {
|
||||||
loadingStateDriver.flatMap { state -> Driver<ResultType> in
|
return loadingStateDriver.flatMap { state -> Driver<ResultType> in
|
||||||
switch state {
|
switch state {
|
||||||
case .result(let newResult, _):
|
case .result(let newResult, _):
|
||||||
return .just(newResult)
|
return .just(newResult)
|
||||||
|
|
|
||||||
|
|
@ -25,15 +25,15 @@ import UIKit
|
||||||
public extension PaginationWrapperUIDelegate {
|
public extension PaginationWrapperUIDelegate {
|
||||||
|
|
||||||
func emptyPlaceholder() -> UIView? {
|
func emptyPlaceholder() -> UIView? {
|
||||||
TextPlaceholderView(title: .empty)
|
return TextPlaceholderView(title: .empty)
|
||||||
}
|
}
|
||||||
|
|
||||||
func customInitialLoadingErrorHandling(for error: Error) -> Bool {
|
func customInitialLoadingErrorHandling(for error: Error) -> Bool {
|
||||||
false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
func errorPlaceholder(for error: Error) -> UIView? {
|
func errorPlaceholder(for error: Error) -> UIView? {
|
||||||
TextPlaceholderView(title: .error)
|
return TextPlaceholderView(title: .error)
|
||||||
}
|
}
|
||||||
|
|
||||||
func initialLoadingIndicator() -> AnyLoadingIndicator? {
|
func initialLoadingIndicator() -> AnyLoadingIndicator? {
|
||||||
|
|
@ -58,7 +58,7 @@ public extension PaginationWrapperUIDelegate {
|
||||||
}
|
}
|
||||||
|
|
||||||
func footerRetryViewHeight() -> CGFloat {
|
func footerRetryViewHeight() -> CGFloat {
|
||||||
44
|
return 44
|
||||||
}
|
}
|
||||||
|
|
||||||
func footerRetryViewWillAppear() {
|
func footerRetryViewWillAppear() {
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ extension UITableView: PaginationWrappable {
|
||||||
|
|
||||||
public var footerView: UIView? {
|
public var footerView: UIView? {
|
||||||
get {
|
get {
|
||||||
tableFooterView
|
return tableFooterView
|
||||||
}
|
}
|
||||||
set {
|
set {
|
||||||
tableFooterView = newValue
|
tableFooterView = newValue
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ extension Observable: RxDataSource {
|
||||||
public typealias ResultType = Element
|
public typealias ResultType = Element
|
||||||
|
|
||||||
public func resultSingle() -> Single<ResultType> {
|
public func resultSingle() -> Single<ResultType> {
|
||||||
asSingle()
|
return asSingle()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -41,6 +41,6 @@ extension Single: RxDataSource {
|
||||||
public typealias ResultType = Element
|
public typealias ResultType = Element
|
||||||
|
|
||||||
public func resultSingle() -> Single<ResultType> {
|
public func resultSingle() -> Single<ResultType> {
|
||||||
asObservable().asSingle()
|
return asObservable().asSingle()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ public extension DateFormattingService {
|
||||||
format: DateFormatType,
|
format: DateFormatType,
|
||||||
defaultDate: DateInRegion = Date().inDefaultRegion()) -> DateInRegion {
|
defaultDate: DateInRegion = Date().inDefaultRegion()) -> DateInRegion {
|
||||||
|
|
||||||
date(from: string, format: format, parsedIn: nil) ?? defaultDate
|
return date(from: string, format: format, parsedIn: nil) ?? defaultDate
|
||||||
}
|
}
|
||||||
|
|
||||||
func date(from string: String,
|
func date(from string: String,
|
||||||
|
|
@ -53,7 +53,7 @@ public extension DateFormattingService {
|
||||||
}
|
}
|
||||||
|
|
||||||
func string(from date: DateRepresentable, format: DateFormatType) -> String {
|
func string(from date: DateRepresentable, format: DateFormatType) -> String {
|
||||||
format.dateToStringFormat.toString(date)
|
return format.dateToStringFormat.toString(date)
|
||||||
}
|
}
|
||||||
|
|
||||||
func string(from date: DateRepresentable, format: DateFormatType, formattedIn: Region?) -> String {
|
func string(from date: DateRepresentable, format: DateFormatType, formattedIn: Region?) -> String {
|
||||||
|
|
@ -79,7 +79,7 @@ public extension DateFormattingService where Self: Singleton {
|
||||||
format: DateFormatType,
|
format: DateFormatType,
|
||||||
defaultDate: DateInRegion = Date().inDefaultRegion()) -> DateInRegion {
|
defaultDate: DateInRegion = Date().inDefaultRegion()) -> DateInRegion {
|
||||||
|
|
||||||
shared.date(from: string, format: format, defaultDate: defaultDate)
|
return shared.date(from: string, format: format, defaultDate: defaultDate)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Method parses date from string in given format with current region.
|
/// Method parses date from string in given format with current region.
|
||||||
|
|
@ -90,7 +90,7 @@ public extension DateFormattingService where Self: Singleton {
|
||||||
/// - parsedIn: A region that should be used for date parsing. In case of nil defaultRegion will be used.
|
/// - parsedIn: A region that should be used for date parsing. In case of nil defaultRegion will be used.
|
||||||
/// - Returns: Date parsed from given string or default date if parsing did fail.
|
/// - Returns: Date parsed from given string or default date if parsing did fail.
|
||||||
static func date(from string: String, format: DateFormatType, parsedIn: Region?) -> DateInRegion? {
|
static func date(from string: String, format: DateFormatType, parsedIn: Region?) -> DateInRegion? {
|
||||||
shared.date(from: string, format: format, parsedIn: parsedIn)
|
return shared.date(from: string, format: format, parsedIn: parsedIn)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Method parses date from string in one of the given formats with current region.
|
/// Method parses date from string in one of the given formats with current region.
|
||||||
|
|
@ -101,7 +101,7 @@ public extension DateFormattingService where Self: Singleton {
|
||||||
/// - parsedIn: A region that should be used for date parsing. In case of nil defaultRegion will be used.
|
/// - parsedIn: A region that should be used for date parsing. In case of nil defaultRegion will be used.
|
||||||
/// - Returns: Date parsed from given string or default date if parsing did fail.
|
/// - Returns: Date parsed from given string or default date if parsing did fail.
|
||||||
static func date(from string: String, formats: [DateFormatType], parsedIn: Region?) -> DateInRegion? {
|
static func date(from string: String, formats: [DateFormatType], parsedIn: Region?) -> DateInRegion? {
|
||||||
shared.date(from: string, formats: formats, parsedIn: parsedIn)
|
return shared.date(from: string, formats: formats, parsedIn: parsedIn)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Method format date in given format.
|
/// Method format date in given format.
|
||||||
|
|
@ -111,7 +111,7 @@ public extension DateFormattingService where Self: Singleton {
|
||||||
/// - format: Format that should be used for date formatting.
|
/// - format: Format that should be used for date formatting.
|
||||||
/// - Returns: String that contains formatted date or nil if formatting did fail.
|
/// - Returns: String that contains formatted date or nil if formatting did fail.
|
||||||
static func string(from date: DateRepresentable, format: DateFormatType) -> String {
|
static func string(from date: DateRepresentable, format: DateFormatType) -> String {
|
||||||
shared.string(from: date, format: format)
|
return shared.string(from: date, format: format)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Method format date in given format for specific region.
|
/// Method format date in given format for specific region.
|
||||||
|
|
@ -122,6 +122,6 @@ public extension DateFormattingService where Self: Singleton {
|
||||||
/// - formattedIn: A region that should be used for date formatting. In case of nil defaultRegion will be used.
|
/// - formattedIn: A region that should be used for date formatting. In case of nil defaultRegion will be used.
|
||||||
/// - Returns: String that contains formatted date or nil if formatting did fail.
|
/// - Returns: String that contains formatted date or nil if formatting did fail.
|
||||||
static func string(from date: DateRepresentable, format: DateFormatType, formattedIn: Region?) -> String {
|
static func string(from date: DateRepresentable, format: DateFormatType, formattedIn: Region?) -> String {
|
||||||
shared.string(from: date, format: format, formattedIn: formattedIn)
|
return shared.string(from: date, format: format, formattedIn: formattedIn)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,11 +26,11 @@ public extension Decimal {
|
||||||
|
|
||||||
/// Conver Decimal to Double value
|
/// Conver Decimal to Double value
|
||||||
var doubleValue: Double {
|
var doubleValue: Double {
|
||||||
NSDecimalNumber(decimal: self).doubleValue
|
return NSDecimalNumber(decimal: self).doubleValue
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Conver Decimal to Int value
|
/// Conver Decimal to Int value
|
||||||
var intValue: Int {
|
var intValue: Int {
|
||||||
NSDecimalNumber(decimal: self).intValue
|
return NSDecimalNumber(decimal: self).intValue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -41,11 +41,11 @@ public extension CGContext {
|
||||||
static func create(forCGImage cgImage: CGImage,
|
static func create(forCGImage cgImage: CGImage,
|
||||||
fallbackColorSpace: CGColorSpace = CGColorSpaceCreateDeviceRGB()) -> CGContext? {
|
fallbackColorSpace: CGColorSpace = CGColorSpaceCreateDeviceRGB()) -> CGContext? {
|
||||||
|
|
||||||
create(width: cgImage.width,
|
return create(width: cgImage.width,
|
||||||
height: cgImage.height,
|
height: cgImage.height,
|
||||||
bitmapInfo: cgImage.bitmapInfo,
|
bitmapInfo: cgImage.bitmapInfo,
|
||||||
colorSpace: cgImage.colorSpace ?? fallbackColorSpace,
|
colorSpace: cgImage.colorSpace ?? fallbackColorSpace,
|
||||||
bitsPerComponent: cgImage.bitsPerComponent)
|
bitsPerComponent: cgImage.bitsPerComponent)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates a bitmap graphics context.
|
/// Creates a bitmap graphics context.
|
||||||
|
|
@ -65,12 +65,12 @@ public extension CGContext {
|
||||||
colorSpace: CGColorSpace = CGColorSpaceCreateDeviceRGB(),
|
colorSpace: CGColorSpace = CGColorSpaceCreateDeviceRGB(),
|
||||||
bitsPerComponent: Int = 8) -> CGContext? {
|
bitsPerComponent: Int = 8) -> CGContext? {
|
||||||
|
|
||||||
CGContext(data: nil,
|
return CGContext(data: nil,
|
||||||
width: width,
|
width: width,
|
||||||
height: height,
|
height: height,
|
||||||
bitsPerComponent: bitsPerComponent,
|
bitsPerComponent: bitsPerComponent,
|
||||||
bytesPerRow: 0,
|
bytesPerRow: 0,
|
||||||
space: colorSpace,
|
space: colorSpace,
|
||||||
bitmapInfo: bitmapInfo.rawValue)
|
bitmapInfo: bitmapInfo.rawValue)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,6 @@ import CoreGraphics.CGGeometry
|
||||||
public extension CGSize {
|
public extension CGSize {
|
||||||
|
|
||||||
var ceiledContextSize: CGContextSize {
|
var ceiledContextSize: CGContextSize {
|
||||||
(width: Int(ceil(width)), height: Int(ceil(height)))
|
return (width: Int(ceil(width)), height: Int(ceil(height)))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ public extension UIImage {
|
||||||
/// - Parameter color: Color to fill template image.
|
/// - Parameter color: Color to fill template image.
|
||||||
/// - Returns: A new UIImage rendered with given color or original image if something goes wrong.
|
/// - Returns: A new UIImage rendered with given color or original image if something goes wrong.
|
||||||
func renderTemplate(withColor color: UIColor) -> UIImage {
|
func renderTemplate(withColor color: UIColor) -> UIImage {
|
||||||
withCGImage { image in
|
return withCGImage { image in
|
||||||
let operation = TemplateDrawingOperation(image: image,
|
let operation = TemplateDrawingOperation(image: image,
|
||||||
imageSize: size,
|
imageSize: size,
|
||||||
color: color.cgColor)
|
color: color.cgColor)
|
||||||
|
|
@ -77,7 +77,7 @@ public extension UIImage {
|
||||||
color: UIColor,
|
color: UIColor,
|
||||||
extendSize: Bool = false) -> UIImage {
|
extendSize: Bool = false) -> UIImage {
|
||||||
|
|
||||||
withCGImage { image in
|
return withCGImage { image in
|
||||||
let roundOperation = RoundDrawingOperation(image: image,
|
let roundOperation = RoundDrawingOperation(image: image,
|
||||||
imageSize: size,
|
imageSize: size,
|
||||||
radius: cornerRadius)
|
radius: cornerRadius)
|
||||||
|
|
@ -101,7 +101,7 @@ public extension UIImage {
|
||||||
///
|
///
|
||||||
/// - Returns: A new circled image or original image if something goes wrong.
|
/// - Returns: A new circled image or original image if something goes wrong.
|
||||||
func roundCornersToCircle() -> UIImage {
|
func roundCornersToCircle() -> UIImage {
|
||||||
withCGImage { image in
|
return withCGImage { image in
|
||||||
let radius = CGFloat(min(size.width, size.height) / 2)
|
let radius = CGFloat(min(size.width, size.height) / 2)
|
||||||
|
|
||||||
let operation = RoundDrawingOperation(image: image,
|
let operation = RoundDrawingOperation(image: image,
|
||||||
|
|
@ -123,7 +123,7 @@ public extension UIImage {
|
||||||
borderColor: UIColor,
|
borderColor: UIColor,
|
||||||
extendSize: Bool = false) -> UIImage {
|
extendSize: Bool = false) -> UIImage {
|
||||||
|
|
||||||
withCGImage { image in
|
return withCGImage { image in
|
||||||
let radius = CGFloat(min(size.width, size.height) / 2)
|
let radius = CGFloat(min(size.width, size.height) / 2)
|
||||||
|
|
||||||
let roundOperation = RoundDrawingOperation(image: image,
|
let roundOperation = RoundDrawingOperation(image: image,
|
||||||
|
|
@ -157,7 +157,7 @@ public extension UIImage {
|
||||||
contentMode: ResizeMode = .scaleToFill,
|
contentMode: ResizeMode = .scaleToFill,
|
||||||
cropToImageBounds: Bool = false) -> UIImage {
|
cropToImageBounds: Bool = false) -> UIImage {
|
||||||
|
|
||||||
withCGImage { image in
|
return withCGImage { image in
|
||||||
let operation = ResizeDrawingOperation(image: image,
|
let operation = ResizeDrawingOperation(image: image,
|
||||||
imageSize: size,
|
imageSize: size,
|
||||||
preferredNewSize: newSize,
|
preferredNewSize: newSize,
|
||||||
|
|
@ -172,7 +172,7 @@ public extension UIImage {
|
||||||
///
|
///
|
||||||
/// - Returns: A copy of the given image, adding an alpha channel if it doesn't already have one.
|
/// - Returns: A copy of the given image, adding an alpha channel if it doesn't already have one.
|
||||||
func applyAlpha() -> UIImage {
|
func applyAlpha() -> UIImage {
|
||||||
withCGImage { image in
|
return withCGImage { image in
|
||||||
guard !image.hasAlpha else {
|
guard !image.hasAlpha else {
|
||||||
return self
|
return self
|
||||||
}
|
}
|
||||||
|
|
@ -190,7 +190,7 @@ public extension UIImage {
|
||||||
/// - Parameter padding: The padding amount.
|
/// - Parameter padding: The padding amount.
|
||||||
/// - Returns: A new padded image or original image if something goes wrong.
|
/// - Returns: A new padded image or original image if something goes wrong.
|
||||||
func applyPadding(_ padding: CGFloat) -> UIImage {
|
func applyPadding(_ padding: CGFloat) -> UIImage {
|
||||||
withCGImage { image in
|
return withCGImage { image in
|
||||||
let operation = PaddingDrawingOperation(image: image, imageSize: size, padding: padding)
|
let operation = PaddingDrawingOperation(image: image, imageSize: size, padding: padding)
|
||||||
|
|
||||||
return operation.imageFromNewRenderer(scale: scale).redraw()
|
return operation.imageFromNewRenderer(scale: scale).redraw()
|
||||||
|
|
@ -204,7 +204,7 @@ public extension UIImage {
|
||||||
/// - clockwise: Should rotate image clockwise.
|
/// - clockwise: Should rotate image clockwise.
|
||||||
/// - Returns: A new rotated image or original image if something goes wrong.
|
/// - Returns: A new rotated image or original image if something goes wrong.
|
||||||
func rotate(degrees: CGFloat, clockwise: Bool = true) -> UIImage {
|
func rotate(degrees: CGFloat, clockwise: Bool = true) -> UIImage {
|
||||||
withCGImage { image in
|
return withCGImage { image in
|
||||||
let radians = degrees.degreesToRadians()
|
let radians = degrees.degreesToRadians()
|
||||||
|
|
||||||
let operation = RotateDrawingOperation(image: image,
|
let operation = RotateDrawingOperation(image: image,
|
||||||
|
|
@ -218,7 +218,7 @@ public extension UIImage {
|
||||||
|
|
||||||
/// Workaround to fix flipped image rendering (by Y)
|
/// Workaround to fix flipped image rendering (by Y)
|
||||||
private func redraw() -> UIImage {
|
private func redraw() -> UIImage {
|
||||||
withCGImage { image in
|
return withCGImage { image in
|
||||||
let operation = ImageDrawingOperation(image: image, newSize: size)
|
let operation = ImageDrawingOperation(image: image, newSize: size)
|
||||||
|
|
||||||
return operation.imageFromNewRenderer(scale: scale)
|
return operation.imageFromNewRenderer(scale: scale)
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ import RxSwift
|
||||||
public extension Error {
|
public extension Error {
|
||||||
|
|
||||||
var requestError: RequestError? {
|
var requestError: RequestError? {
|
||||||
self as? RequestError
|
return self as? RequestError
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Method that tries to serialize response from a mapping request error to a model
|
/// Method that tries to serialize response from a mapping request error to a model
|
||||||
|
|
@ -34,7 +34,7 @@ public extension Error {
|
||||||
/// - Returns: optional target object
|
/// - Returns: optional target object
|
||||||
/// - Throws: an error during decoding
|
/// - Throws: an error during decoding
|
||||||
func handleMappingError<T: Decodable>(with decoder: JSONDecoder = JSONDecoder()) throws -> T? {
|
func handleMappingError<T: Decodable>(with decoder: JSONDecoder = JSONDecoder()) throws -> T? {
|
||||||
guard let self = requestError, case .mapping(_, let response, _) = self else {
|
guard let self = requestError, case .mapping(_, let response) = self else {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -52,7 +52,7 @@ public extension ObservableType {
|
||||||
/// - Returns: Observable on caller
|
/// - Returns: Observable on caller
|
||||||
func handleMappingError<T: Decodable>(with decoder: JSONDecoder = JSONDecoder(),
|
func handleMappingError<T: Decodable>(with decoder: JSONDecoder = JSONDecoder(),
|
||||||
handler: @escaping ParameterClosure<T>) -> Observable<Element> {
|
handler: @escaping ParameterClosure<T>) -> Observable<Element> {
|
||||||
self.do(onError: { error in
|
return self.do(onError: { error in
|
||||||
guard let errorModel = try error.handleMappingError(with: decoder) as T? else {
|
guard let errorModel = try error.handleMappingError(with: decoder) as T? else {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
@ -72,7 +72,7 @@ public extension PrimitiveSequence where Trait == SingleTrait {
|
||||||
/// - Returns: Single on caller
|
/// - Returns: Single on caller
|
||||||
func handleMappingError<T: Decodable>(with decoder: JSONDecoder = JSONDecoder(),
|
func handleMappingError<T: Decodable>(with decoder: JSONDecoder = JSONDecoder(),
|
||||||
handler: @escaping ParameterClosure<T>) -> PrimitiveSequence<Trait, Element> {
|
handler: @escaping ParameterClosure<T>) -> PrimitiveSequence<Trait, Element> {
|
||||||
self.do(onError: { error in
|
return self.do(onError: { error in
|
||||||
guard let errorModel = try error.handleMappingError(with: decoder) as T? else {
|
guard let errorModel = try error.handleMappingError(with: decoder) as T? else {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
@ -92,7 +92,7 @@ public extension PrimitiveSequence where Trait == CompletableTrait, Element == N
|
||||||
/// - Returns: Completable
|
/// - Returns: Completable
|
||||||
func handleMappingError<T: Decodable>(with decoder: JSONDecoder = JSONDecoder(),
|
func handleMappingError<T: Decodable>(with decoder: JSONDecoder = JSONDecoder(),
|
||||||
handler: @escaping ParameterClosure<T>) -> Completable {
|
handler: @escaping ParameterClosure<T>) -> Completable {
|
||||||
self.do(onError: { error in
|
return self.do(onError: { error in
|
||||||
guard let errorModel = try error.handleMappingError(with: decoder) as T? else {
|
guard let errorModel = try error.handleMappingError(with: decoder) as T? else {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,13 +26,13 @@ public extension FloatingPoint {
|
||||||
///
|
///
|
||||||
/// - Returns: radians
|
/// - Returns: radians
|
||||||
func degreesToRadians() -> Self {
|
func degreesToRadians() -> Self {
|
||||||
self * .pi / 180
|
return self * .pi / 180
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Converts radians to degrees
|
/// Converts radians to degrees
|
||||||
///
|
///
|
||||||
/// - Returns: degrees
|
/// - Returns: degrees
|
||||||
func radiansToDegrees() -> Self {
|
func radiansToDegrees() -> Self {
|
||||||
self * 180 / .pi
|
return self * 180 / .pi
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ public extension UserDefaults {
|
||||||
/// - Returns: The object with specified type associated with the specified key, or passed default value
|
/// - Returns: The object with specified type associated with the specified key, or passed default value
|
||||||
/// if there is no such value for specified key or if error occurred during mapping.
|
/// if there is no such value for specified key or if error occurred during mapping.
|
||||||
func object<T: Decodable>(forKey key: String, defaultValue: T, decoder: JSONDecoder = JSONDecoder()) -> T {
|
func object<T: Decodable>(forKey key: String, defaultValue: T, decoder: JSONDecoder = JSONDecoder()) -> T {
|
||||||
(try? object(forKey: key, decoder: decoder)) ?? defaultValue
|
return (try? object(forKey: key, decoder: decoder)) ?? defaultValue
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Set or remove the value of the specified default key in the standard application domain.
|
/// Set or remove the value of the specified default key in the standard application domain.
|
||||||
|
|
@ -58,7 +58,7 @@ public extension UserDefaults {
|
||||||
|
|
||||||
subscript<T: Codable>(key: String) -> T? {
|
subscript<T: Codable>(key: String) -> T? {
|
||||||
get {
|
get {
|
||||||
try? object(forKey: key)
|
return try? object(forKey: key)
|
||||||
}
|
}
|
||||||
set {
|
set {
|
||||||
try? set(object: newValue, forKey: key)
|
try? set(object: newValue, forKey: key)
|
||||||
|
|
@ -75,7 +75,7 @@ public extension Reactive where Base: UserDefaults {
|
||||||
/// - decoder: JSON decoder to decode stored data.
|
/// - decoder: JSON decoder to decode stored data.
|
||||||
/// - Returns: Single of specified model type.
|
/// - Returns: Single of specified model type.
|
||||||
func object<T: Decodable>(forKey key: String, decoder: JSONDecoder = JSONDecoder()) -> Single<T> {
|
func object<T: Decodable>(forKey key: String, decoder: JSONDecoder = JSONDecoder()) -> Single<T> {
|
||||||
.deferredJust { try self.base.object(forKey: key, decoder: decoder) }
|
return .deferredJust { try self.base.object(forKey: key, decoder: decoder) }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Reactive version of object<T>(forKey:defaultValue:decoder:) -> T.
|
/// Reactive version of object<T>(forKey:defaultValue:decoder:) -> T.
|
||||||
|
|
@ -87,7 +87,7 @@ public extension Reactive where Base: UserDefaults {
|
||||||
/// - decoder: JSON decoder to decode stored data.
|
/// - decoder: JSON decoder to decode stored data.
|
||||||
/// - Returns: Single of specified model type.
|
/// - Returns: Single of specified model type.
|
||||||
func object<T: Decodable>(forKey key: String, defaultValue: T, decoder: JSONDecoder = JSONDecoder()) -> Single<T> {
|
func object<T: Decodable>(forKey key: String, defaultValue: T, decoder: JSONDecoder = JSONDecoder()) -> Single<T> {
|
||||||
.deferredJust { self.base.object(forKey: key, defaultValue: defaultValue, decoder: decoder) }
|
return .deferredJust { self.base.object(forKey: key, defaultValue: defaultValue, decoder: decoder) }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Reactive version of set<T>(object:forKey:encoder:).
|
/// Reactive version of set<T>(object:forKey:encoder:).
|
||||||
|
|
@ -98,7 +98,7 @@ public extension Reactive where Base: UserDefaults {
|
||||||
/// - encoder: JSON encoder to encode to encode passed object.
|
/// - encoder: JSON encoder to encode to encode passed object.
|
||||||
/// - Returns: Completable.
|
/// - Returns: Completable.
|
||||||
func set<T: Encodable>(object: T?, forKey key: String, encoder: JSONEncoder = JSONEncoder()) -> Completable {
|
func set<T: Encodable>(object: T?, forKey key: String, encoder: JSONEncoder = JSONEncoder()) -> Completable {
|
||||||
.deferredJust {
|
return .deferredJust {
|
||||||
try self.base.set(object: object, forKey: key, encoder: encoder)
|
try self.base.set(object: object, forKey: key, encoder: encoder)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ public extension NSAttributedString {
|
||||||
|
|
||||||
/// Mutable copy of attributed string.
|
/// Mutable copy of attributed string.
|
||||||
var mutable: NSMutableAttributedString {
|
var mutable: NSMutableAttributedString {
|
||||||
NSMutableAttributedString(attributedString: self)
|
return NSMutableAttributedString(attributedString: self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -51,6 +51,6 @@ public extension NSMutableAttributedString {
|
||||||
|
|
||||||
/// Immutable copy of attributed string.
|
/// Immutable copy of attributed string.
|
||||||
var immutable: NSAttributedString {
|
var immutable: NSAttributedString {
|
||||||
NSAttributedString(attributedString: self)
|
return NSAttributedString(attributedString: self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -25,41 +25,41 @@ import Foundation
|
||||||
extension NSNumber: NSNumberConvertible {
|
extension NSNumber: NSNumberConvertible {
|
||||||
|
|
||||||
public func asNSNumber() -> NSNumber {
|
public func asNSNumber() -> NSNumber {
|
||||||
self
|
return self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
extension Decimal: NSNumberConvertible {
|
extension Decimal: NSNumberConvertible {
|
||||||
|
|
||||||
public func asNSNumber() -> NSNumber {
|
public func asNSNumber() -> NSNumber {
|
||||||
NSDecimalNumber(decimal: self)
|
return NSDecimalNumber(decimal: self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
extension Int: NSNumberConvertible {
|
extension Int: NSNumberConvertible {
|
||||||
|
|
||||||
public func asNSNumber() -> NSNumber {
|
public func asNSNumber() -> NSNumber {
|
||||||
NSNumber(value: self)
|
return NSNumber(value: self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
extension Int64: NSNumberConvertible {
|
extension Int64: NSNumberConvertible {
|
||||||
|
|
||||||
public func asNSNumber() -> NSNumber {
|
public func asNSNumber() -> NSNumber {
|
||||||
NSNumber(value: self)
|
return NSNumber(value: self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
extension Double: NSNumberConvertible {
|
extension Double: NSNumberConvertible {
|
||||||
|
|
||||||
public func asNSNumber() -> NSNumber {
|
public func asNSNumber() -> NSNumber {
|
||||||
NSNumber(value: self)
|
return NSNumber(value: self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
extension Float: NSNumberConvertible {
|
extension Float: NSNumberConvertible {
|
||||||
|
|
||||||
public func asNSNumber() -> NSNumber {
|
public func asNSNumber() -> NSNumber {
|
||||||
NSNumber(value: self)
|
return NSNumber(value: self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ public extension NumberFormattingService {
|
||||||
|
|
||||||
/// Computed static property. Use only once for `formatters` field implementation!
|
/// Computed static property. Use only once for `formatters` field implementation!
|
||||||
static var computedFormatters: [NumberFormatType: NumberFormatter] {
|
static var computedFormatters: [NumberFormatType: NumberFormatter] {
|
||||||
Dictionary(uniqueKeysWithValues: NumberFormatType.allCases.map { ($0, $0.numberFormatter) })
|
return Dictionary(uniqueKeysWithValues: NumberFormatType.allCases.map { ($0, $0.numberFormatter) })
|
||||||
}
|
}
|
||||||
|
|
||||||
func numberFormatter(for format: NumberFormatType) -> NumberFormatter {
|
func numberFormatter(for format: NumberFormatType) -> NumberFormatter {
|
||||||
|
|
@ -38,21 +38,21 @@ public extension NumberFormattingService {
|
||||||
}
|
}
|
||||||
|
|
||||||
func string(from number: NSNumberConvertible, format: NumberFormatType, defaultString: String = "") -> String {
|
func string(from number: NSNumberConvertible, format: NumberFormatType, defaultString: String = "") -> String {
|
||||||
numberFormatter(for: format).string(from: number.asNSNumber()) ?? defaultString
|
return numberFormatter(for: format).string(from: number.asNSNumber()) ?? defaultString
|
||||||
}
|
}
|
||||||
|
|
||||||
func number(from string: String, format: NumberFormatType) -> NSNumber? {
|
func number(from string: String, format: NumberFormatType) -> NSNumber? {
|
||||||
numberFormatter(for: format).number(from: string)
|
return numberFormatter(for: format).number(from: string)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public extension NumberFormattingService where Self: Singleton {
|
public extension NumberFormattingService where Self: Singleton {
|
||||||
|
|
||||||
static func string(from number: NSNumberConvertible, format: NumberFormatType, defaultString: String = "") -> String {
|
static func string(from number: NSNumberConvertible, format: NumberFormatType, defaultString: String = "") -> String {
|
||||||
shared.string(from: number, format: format, defaultString: defaultString)
|
return shared.string(from: number, format: format, defaultString: defaultString)
|
||||||
}
|
}
|
||||||
|
|
||||||
static func number(from string: String, format: NumberFormatType) -> NSNumber? {
|
static func number(from string: String, format: NumberFormatType) -> NSNumber? {
|
||||||
shared.number(from: string, format: format)
|
return shared.number(from: string, format: format)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ public extension ObservableType {
|
||||||
/// that subscribes to the resulting sequence.
|
/// that subscribes to the resulting sequence.
|
||||||
/// - Returns: An observable sequence whose observers trigger an invocation of the given element factory function.
|
/// - Returns: An observable sequence whose observers trigger an invocation of the given element factory function.
|
||||||
static func deferredJust(_ elementFactory: @escaping () throws -> Element) -> Observable<Element> {
|
static func deferredJust(_ elementFactory: @escaping () throws -> Element) -> Observable<Element> {
|
||||||
.create { observer in
|
return .create { observer in
|
||||||
do {
|
do {
|
||||||
observer.onNext(try elementFactory())
|
observer.onNext(try elementFactory())
|
||||||
observer.onCompleted()
|
observer.onCompleted()
|
||||||
|
|
|
||||||
|
|
@ -29,20 +29,20 @@ public extension ObservableType {
|
||||||
/// - Parameter value: A new element.
|
/// - Parameter value: A new element.
|
||||||
/// - Returns: An observable sequence whose elements are equals to passed value.
|
/// - Returns: An observable sequence whose elements are equals to passed value.
|
||||||
func replace<T>(with value: T) -> Observable<T> {
|
func replace<T>(with value: T) -> Observable<T> {
|
||||||
map { _ in value } // swiftlint:disable:this unused_map_parameter
|
return map { _ in value } // swiftlint:disable:this unused_map_parameter
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Replaces all emitted elements with Void.
|
/// Replaces all emitted elements with Void.
|
||||||
///
|
///
|
||||||
/// - Returns: An observable sequence whose elements are equals to Void.
|
/// - Returns: An observable sequence whose elements are equals to Void.
|
||||||
func asVoid() -> Observable<Void> {
|
func asVoid() -> Observable<Void> {
|
||||||
replace(with: Void())
|
return replace(with: Void())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Cast all emitted elements to optional type.
|
/// Cast all emitted elements to optional type.
|
||||||
///
|
///
|
||||||
/// - Returns: An observable sequence whose elements are equals to optional type of element.
|
/// - Returns: An observable sequence whose elements are equals to optional type of element.
|
||||||
func asOptional() -> Observable<Element?> {
|
func asOptional() -> Observable<Element?> {
|
||||||
map { $0 }
|
return map { $0 }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ public extension PrimitiveSequence where Trait == CompletableTrait {
|
||||||
/// that subscribes to the resulting sequence.
|
/// that subscribes to the resulting sequence.
|
||||||
/// - Returns: A single whose observers trigger an invocation of the given element factory function.
|
/// - Returns: A single whose observers trigger an invocation of the given element factory function.
|
||||||
static func deferredJust(_ workUnit: @escaping ThrowableVoidBlock) -> Completable {
|
static func deferredJust(_ workUnit: @escaping ThrowableVoidBlock) -> Completable {
|
||||||
.create { observer in
|
return .create { observer in
|
||||||
do {
|
do {
|
||||||
try workUnit()
|
try workUnit()
|
||||||
observer(.completed)
|
observer(.completed)
|
||||||
|
|
|
||||||
|
|
@ -30,11 +30,11 @@ public extension Single {
|
||||||
/// that subscribes to the resulting sequence.
|
/// that subscribes to the resulting sequence.
|
||||||
/// - Returns: A single whose observers trigger an invocation of the given element factory function.
|
/// - Returns: A single whose observers trigger an invocation of the given element factory function.
|
||||||
static func deferredJust(_ elementFactory: @escaping () throws -> Element) -> Single<Element> {
|
static func deferredJust(_ elementFactory: @escaping () throws -> Element) -> Single<Element> {
|
||||||
.create { observer in
|
return .create { observer in
|
||||||
do {
|
do {
|
||||||
observer(.success(try elementFactory()))
|
observer(.success(try elementFactory()))
|
||||||
} catch {
|
} catch {
|
||||||
observer(.failure(error))
|
observer(.error(error))
|
||||||
}
|
}
|
||||||
|
|
||||||
return Disposables.create()
|
return Disposables.create()
|
||||||
|
|
|
||||||
|
|
@ -29,20 +29,20 @@ public extension PrimitiveSequence where Trait == SingleTrait {
|
||||||
/// - Parameter value: A new element.
|
/// - Parameter value: A new element.
|
||||||
/// - Returns: An primitive sequence whose element is equal to passed value.
|
/// - Returns: An primitive sequence whose element is equal to passed value.
|
||||||
func replace<T>(with value: T) -> PrimitiveSequence<Trait, T> {
|
func replace<T>(with value: T) -> PrimitiveSequence<Trait, T> {
|
||||||
map { _ in value } // swiftlint:disable:this unused_map_parameter
|
return map { _ in value } // swiftlint:disable:this unused_map_parameter
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Replaces emitted element with Void.
|
/// Replaces emitted element with Void.
|
||||||
///
|
///
|
||||||
/// - Returns: An primitive sequence whose element is equal to Void.
|
/// - Returns: An primitive sequence whose element is equal to Void.
|
||||||
func asVoid() -> PrimitiveSequence<Trait, Void> {
|
func asVoid() -> PrimitiveSequence<Trait, Void> {
|
||||||
replace(with: Void())
|
return replace(with: Void())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Cast emitted element to optional type.
|
/// Cast emitted element to optional type.
|
||||||
///
|
///
|
||||||
/// - Returns: An primitive sequence whose element is equals to optional type of element.
|
/// - Returns: An primitive sequence whose element is equals to optional type of element.
|
||||||
func asOptional() -> PrimitiveSequence<Trait, Element?> {
|
func asOptional() -> PrimitiveSequence<Trait, Element?> {
|
||||||
map { $0 }
|
return map { $0 }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -29,20 +29,20 @@ public extension SharedSequence {
|
||||||
/// - Parameter value: A new element.
|
/// - Parameter value: A new element.
|
||||||
/// - Returns: An observable sequence whose elements are equals to passed value.
|
/// - Returns: An observable sequence whose elements are equals to passed value.
|
||||||
func replace<T>(with value: T) -> SharedSequence<SharingStrategy, T> {
|
func replace<T>(with value: T) -> SharedSequence<SharingStrategy, T> {
|
||||||
map { _ in value } // swiftlint:disable:this unused_map_parameter
|
return map { _ in value } // swiftlint:disable:this unused_map_parameter
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Replaces all emitted elements with Void.
|
/// Replaces all emitted elements with Void.
|
||||||
///
|
///
|
||||||
/// - Returns: An observable sequence whose elements are equals to Void.
|
/// - Returns: An observable sequence whose elements are equals to Void.
|
||||||
func asVoid() -> SharedSequence<SharingStrategy, Void> {
|
func asVoid() -> SharedSequence<SharingStrategy, Void> {
|
||||||
replace(with: Void())
|
return replace(with: Void())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Cast all emitted elements to optional type.
|
/// Cast all emitted elements to optional type.
|
||||||
///
|
///
|
||||||
/// - Returns: An observable sequence whose elements are equals to optional type of element.
|
/// - Returns: An observable sequence whose elements are equals to optional type of element.
|
||||||
func asOptional() -> SharedSequence<SharingStrategy, Element?> {
|
func asOptional() -> SharedSequence<SharingStrategy, Element?> {
|
||||||
map { $0 }
|
return map { $0 }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ public extension Sequence {
|
||||||
return Observable.from(indexedRanges)
|
return Observable.from(indexedRanges)
|
||||||
.flatMap { indexedRange -> Observable<(idx: Int, results: [R])> in
|
.flatMap { indexedRange -> Observable<(idx: Int, results: [R])> in
|
||||||
Observable.just(indexedRange)
|
Observable.just(indexedRange)
|
||||||
.observe(on: scheduler)
|
.observeOn(scheduler)
|
||||||
.map { (idx: $0.idx, results: try array[$0.range].map(transform)) }
|
.map { (idx: $0.idx, results: try array[$0.range].map(transform)) }
|
||||||
}
|
}
|
||||||
.toArray()
|
.toArray()
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,6 @@ public extension String {
|
||||||
- returns: nil if string empty, self otherwise
|
- returns: nil if string empty, self otherwise
|
||||||
*/
|
*/
|
||||||
var nilIfEmpty: String? {
|
var nilIfEmpty: String? {
|
||||||
isEmpty ? nil : self
|
return isEmpty ? nil : self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,6 @@ public extension String {
|
||||||
- returns: localized string
|
- returns: localized string
|
||||||
*/
|
*/
|
||||||
func localized() -> String {
|
func localized() -> String {
|
||||||
NSLocalizedString(self, comment: "")
|
return NSLocalizedString(self, comment: "")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@ public extension TableDirector {
|
||||||
*/
|
*/
|
||||||
@discardableResult
|
@discardableResult
|
||||||
func replace(withSection section: TableSection) -> Self {
|
func replace(withSection section: TableSection) -> Self {
|
||||||
replace(withSections: [section])
|
return replace(withSections: [section])
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -108,7 +108,7 @@ public extension TableDirector {
|
||||||
*/
|
*/
|
||||||
@discardableResult
|
@discardableResult
|
||||||
func replace(withRows rows: [Row]) -> Self {
|
func replace(withRows rows: [Row]) -> Self {
|
||||||
replace(withSection: TableSection(rows: rows))
|
return replace(withSection: TableSection(rows: rows))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Clear table view and reload it within empty section
|
/// Clear table view and reload it within empty section
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,6 @@ public extension TableRow where CellType: SeparatorCell {
|
||||||
|
|
||||||
/// TableRow typed as SeparatorRowBox
|
/// TableRow typed as SeparatorRowBox
|
||||||
var separatorRowBox: SeparatorRowBox {
|
var separatorRowBox: SeparatorRowBox {
|
||||||
SeparatorRowBox(row: self)
|
return SeparatorRowBox(row: self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,6 @@ public extension TableKitViewModel {
|
||||||
|
|
||||||
/// Returns TableRow initialized with current view model.
|
/// Returns TableRow initialized with current view model.
|
||||||
var tableRow: RowType {
|
var tableRow: RowType {
|
||||||
RowType(item: self)
|
return RowType(item: self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -138,13 +138,9 @@ public extension UIColor {
|
||||||
|
|
||||||
getRed(&red, green: &green, blue: &blue, alpha: &alpha)
|
getRed(&red, green: &green, blue: &blue, alpha: &alpha)
|
||||||
|
|
||||||
let intRepresentation: Int
|
let intRepresentation = alpha == 1
|
||||||
|
? Int(red * 255) << 16 | Int(green * 255) << 8 | Int(blue * 255) << 0
|
||||||
if alpha == 1 {
|
: Int(red * 255) << 24 | Int(green * 255) << 16 | Int(blue * 255) << 8 | Int(alpha * 255) << 0
|
||||||
intRepresentation = Int(red * 255) << 16 | Int(green * 255) << 8 | Int(blue * 255)
|
|
||||||
} else {
|
|
||||||
intRepresentation = Int(red * 255) << 24 | Int(green * 255) << 16 | Int(blue * 255) << 8 | Int(alpha * 255)
|
|
||||||
}
|
|
||||||
|
|
||||||
return String(intRepresentation, radix: 16)
|
return String(intRepresentation, radix: 16)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,24 +0,0 @@
|
||||||
import Foundation
|
|
||||||
import AVFoundation
|
|
||||||
|
|
||||||
public extension UIInterfaceOrientation {
|
|
||||||
|
|
||||||
var videoOrientation: AVCaptureVideoOrientation {
|
|
||||||
switch self {
|
|
||||||
case .portrait, .unknown:
|
|
||||||
return .portrait
|
|
||||||
|
|
||||||
case .landscapeLeft:
|
|
||||||
return .landscapeLeft
|
|
||||||
|
|
||||||
case .landscapeRight:
|
|
||||||
return .landscapeRight
|
|
||||||
|
|
||||||
case .portraitUpsideDown:
|
|
||||||
return .portraitUpsideDown
|
|
||||||
|
|
||||||
@unknown default:
|
|
||||||
return .portrait
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -25,6 +25,6 @@ import UIKit.UIScrollView
|
||||||
public extension ScrollViewHolder where Self: CollectionViewHolder {
|
public extension ScrollViewHolder where Self: CollectionViewHolder {
|
||||||
|
|
||||||
var scrollView: UIScrollView {
|
var scrollView: UIScrollView {
|
||||||
collectionView
|
return collectionView
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,6 @@ import UIKit.UIScrollView
|
||||||
public extension ScrollViewHolder where Self: TableViewHolder {
|
public extension ScrollViewHolder where Self: TableViewHolder {
|
||||||
|
|
||||||
var scrollView: UIScrollView {
|
var scrollView: UIScrollView {
|
||||||
tableView
|
return tableView
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue