RxValidator2


Source link: https://github.com/whalemare/rxvalidator2

RxValidator2

The simplest way to add reactive validation to your app

How it works

Problem

In your application, there are fields that must be validated. When the number of validation rules becomes greater than 1, to control the display of errors in the fields becomes difficult.

Solve

Separate your validation logic by S in SOLID, into own classes. After that, attach validaton rules to your fields and combine validation results for change some ui states (ex. change visibility of button)

Usage

View layer

Firstly, you need write your own rules validation for some fields.

class NotNullRule : ValidateRule {

  override fun errorMessage() = "Text must not be null"

 override fun validate(data: String?): Boolean {

return data != null // your validation logic
  
}
 
}

Attach your validation rules to field

val loginObservable: Observable<Boolean> = RxValidator(editLogin)

.apply {

 add(NotEmptyRule())

 add(MinLengthRule(5))

}
.asObservable()

 val emailObservable: Observable<Boolean> = RxValidator(editEmail)

.apply {

 add(NotEmptyRule())

 add(MinLengthRule(7))

}
.asObservable()

Combine your validation results to change button state

RxCombineValidator(loginObservable, emailObservable)

.asObservable()

.distinctUntilChanged()

.subscribe({
 valid ->

 button.isEnabled = valid

}
)

Model layer

Create text watcher for your field

RxValidator.createObservable(editEmail)

.subscribe({

 mainPresenter.onEmailTextChanges(it)

}
)

Add some validation and handle events without rx

val validator = Validator().apply {

  add(NotNullRule())
  add(NotEmptyRule()) 
}

fun onEmailTextChanges(text: String) {

  validator.validate(text,

 onSuccess = {

  view?.onEmailValid()

 
}
,

 onError = {
 errorMessage ->

  view?.onEmailInvalid(errorMessage)

 
}
) 
}

Why

  • You can use it in model layer, for consistent architecture rules
  • You can use it in view layer, with rx wrappers
  • You need test only your custom validation rules, because the main features of the library are already covered by tests
  • Class Validator extends from LinkedHashSet, that you can use all benefits of this collection implementation

Install

Be sure, that you have Jitpack in your root gradle file

allprojects {

  repositories {

 jcenter() +
  maven {
 url "https://jitpack.io" 
}

  
}
 
}

Include dependency with RxValidator in your app.gradle file with:

+ compile 'com.github.whalemare:RxValidator2:1.1'

License

Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

Unofficial Android REST Client for 9GAG.

ASNE library allows you to make simple integration with different social networks:

  • Twitter
  • LinkedIn
  • Facebook
  • Google Plus
  • Vkontakte
  • Odnoklassniki

LoadingEverywhere is an Android library that makes it easy to create and manage a loading mask over any view.

It supports android versions 2.3 (gingerbread) and above.

Sample code that shows how to make ListView or other views support the swipe-to-dismiss Android UI pattern.

A native Java class library, which provides your Android application with rich capabilities for creating, editing and visualizing graphs, networks, flowcharts, algorithms, genealogy trees and much more.

'Path' has a very attractive menu sitting on the left bottom corner of the screen. Satellite Menu is the open version of this menu.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes