mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
7c184f3500
- re-evaluate the validators to be able to hide the warning after 3 seconds (the validators won't let the user select/paste an invalid image; it's just the warning bubble that persisted) - some small cleanups Fixes #16210
21 lines
570 B
QML
21 lines
570 B
QML
import QtQuick 2.15
|
|
|
|
import utils 1.0
|
|
|
|
StatusChatImageValidator {
|
|
id: root
|
|
|
|
errorMessage: qsTr("Format not supported.")
|
|
secondaryErrorMessage: qsTr("Upload %1 only").arg(Constants.acceptedDragNDropImageExtensions.map(ext => ext.replace(".", "").toUpperCase() + "s").join(", "))
|
|
|
|
onImagesChanged: {
|
|
let isValid = true
|
|
root.validImages = images.filter(img => {
|
|
const isImage = Utils.isValidDragNDropImage(img)
|
|
isValid = isValid && isImage
|
|
return isImage
|
|
})
|
|
root.isValid = isValid
|
|
}
|
|
}
|