Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
dev.icerock.moko:fields-android
Advanced tools
Input forms for mobile (android & ios) Kotlin Multiplatform development
This is a Kotlin MultiPlatform library that add form fields abstraction to implement any input forms with validations.
LiveData
from moko-mvvm
).root build.gradle
allprojects {
repositories {
mavenCentral()
}
}
project build.gradle
dependencies {
commonMainApi("dev.icerock.moko:fields:0.9.0")
}
Create FormField
to text input with empty validation:
val textField = FormField<String, StringDesc>("", { inputLiveData ->
inputLiveData.map { text ->
if (text.isBlank()) "should be not blank!".desc()
else null
}
})
Use liveBlock
to simplify validation create.
val textField = FormField<String, StringDesc>("", liveBlock { text ->
if (text.isBlank()) "should be not blank!".desc()
else null
})
Use LiveData
in validation lambda to merge with other fields.
val passwordField = FormField<String, StringDesc>("", { inputLiveData ->
inputLiveData.map { text ->
if (text.isBlank()) "should be not blank!".desc()
else null
}
})
val passwordConfirmField = FormField<String, StringDesc>("", { inputLiveData ->
passwordField.data.mergeWith(inputLiveData) { password, passwordConfirm ->
if (passwordConfirm.isBlank()) "should be not blank!".desc()
else if(passwordConfirm != password) "passwords not same".desc()
else null
}
})
Call validate to perform validations and show error to user by field.error
LiveData.
class LoginViewModel(
override val eventsDispatcher: EventsDispatcher<EventsListener>
) : ViewModel(), EventsDispatcherOwner<LoginViewModel.EventsListener> {
val emailField = FormField<String, StringDesc>("", liveBlock { email ->
if (email.isBlank()) MR.strings.cant_be_blank.desc()
else null
})
val passwordField = FormField<String, StringDesc>("", liveBlock { password ->
if (password.isBlank()) MR.strings.cant_be_blank.desc()
else null
})
private val fields = listOf(emailField, passwordField)
fun onLoginPressed() {
if (!fields.validate()) return
val email = emailField.value()
val password = passwordField.value()
val message = "$email:$password"
eventsDispatcher.dispatchEvent { showMessage(message.desc()) }
}
interface EventsListener {
fun showMessage(message: StringDesc)
}
}
Bind FormField
to UI by data
and error
LiveData
s.
<com.google.android.material.textfield.TextInputLayout
app:error="@{viewModel.emailField.error.ld}">
<EditText
android:text="@={viewModel.emailField.data.ld}" />
</com.google.android.material.textfield.TextInputLayout>
emailField.bindTextTwoWay(liveData: viewModel.emailField.data)
emailField.bindError(liveData: viewModel.emailField.error)
There is a useful ValidationResult
class for building validation monads for a form fields.
Two formats for creating validation are implemented:
ValidationResult.of(emailFieldValue)
.notBlank(blankErrorStringDesc)
.matchRegex(wrongEmailErrorStringDesc, EMAIL_REGEX)
.validate()
For this variant, do not forget to call function validate
at the end!
ValidationResult.of(emailFieldValue) {
notBlank(blankErrorStringDesc)
matchRegex(wrongEmailErrorStringDesc, EMAIL_REGEX)
}
To create a new function for validation monad, you need to create an extension function of class
ValidationResult
using builder nextValidation
. For example, this is how the ready-made function
for checking String
values for blankness looks like:
fun ValidationResult<String>.notBlank(errorText: StringDesc) = nextValidation { value ->
if (value.isNotBlank()) {
ValidationResult.success(value)
} else {
ValidationResult.failure(errorText)
}
}
All the ready-made validation functions of the library can be found in the source codes in the files
AnyValidations.kt
for Any
class and StringValidations.kt
for String
class.
To simplify of adding validation to the FormField
object (without mapping of a LiveData
objects) you can use the builder-function fieldValidation
:
val passwordField = FormField<String, StringDesc>(
initialValue = "",
validation = fieldValidation {
notBlank(MR.strings.cant_be_blank.desc())
minLength(MR.strings.must_contain_more_char.desc(), 4)
}
)
More examples can be found in the sample directory.
fields
library;All development (both new features and bug fixes) is performed in develop
branch. This way master
sources always contain sources of the most recently released version. Please send PRs with bug fixes to develop
branch. Fixes to documentation in markdown files are an exception to this rule. They are updated directly in master
.
The develop
branch is pushed to master
during release.
More detailed guide for contributers see in contributing guide.
Copyright 2019 IceRock MAG Inc
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.
FAQs
Input forms for mobile (android & ios) Kotlin Multiplatform development
We found that dev.icerock.moko:fields-android demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.