status-desktop/ui/imports/shared/status/StatusChatImageSizeValidator.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

19 lines
456 B
QML

import QtQuick 2.15
import utils 1.0
StatusChatImageValidator {
id: root
onImagesChanged: {
let isValid = true
root.validImages = images.filter(img => {
const isSmallEnough = Utils.isFilesizeValid(img)
isValid = isValid && isSmallEnough
return isSmallEnough
})
root.isValid = isValid
}
errorMessage: qsTr("Max image size is %1 MB").arg(Constants.maxUploadFilesizeMB)
}