2021-03-10 04:59:01 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
|
|
|
import QtGraphicalEffects 1.0
|
2021-09-28 15:04:06 +00:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-03-10 04:59:01 +00:00
|
|
|
import ".."
|
|
|
|
|
|
|
|
StatusChatImageValidator {
|
|
|
|
id: root
|
|
|
|
|
2021-07-16 20:22:50 +00:00
|
|
|
//% "Format not supported."
|
|
|
|
errorMessage: qsTrId("format-not-supported-")
|
|
|
|
//% "Upload %1 only"
|
|
|
|
secondaryErrorMessage: qsTrId("upload--1-only").arg(Constants.acceptedDragNDropImageExtensions.map(ext => ext.replace(".", "").toUpperCase() + "s").join(", "))
|
2021-03-10 04:59:01 +00:00
|
|
|
|
|
|
|
onImagesChanged: {
|
|
|
|
let isValid = true
|
|
|
|
root.validImages = images.filter(img => {
|
|
|
|
const isImage = Utils.hasDragNDropImageExtension(img)
|
|
|
|
isValid = isValid && isImage
|
|
|
|
return isImage
|
|
|
|
})
|
|
|
|
root.isValid = isValid
|
|
|
|
}
|
|
|
|
}
|