status-desktop/ui/imports/shared/status/StatusChatImageExtensionValidator.qml
Lukáš Tinkl 7c184f3500 fix(StatusChatInput): set max number of images to 6 to align with mobile
- 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
2024-08-30 18:26:59 +02:00

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
}
}