24 lines
679 B
QML
24 lines
679 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Layouts 1.13
|
|
import QtGraphicalEffects 1.0
|
|
import "../../imports"
|
|
import ".."
|
|
|
|
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.hasDragNDropImageExtension(img)
|
|
isValid = isValid && isImage
|
|
return isImage
|
|
})
|
|
root.isValid = isValid
|
|
}
|
|
}
|