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
|
|
|
|
|
2022-04-04 11:26:30 +00:00
|
|
|
errorMessage: qsTr("Format not supported.")
|
|
|
|
secondaryErrorMessage: qsTr("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 => {
|
2023-03-27 17:53:17 +00:00
|
|
|
const isImage = Utils.isValidDragNDropImage(img)
|
2021-03-10 04:59:01 +00:00
|
|
|
isValid = isValid && isImage
|
|
|
|
return isImage
|
|
|
|
})
|
|
|
|
root.isValid = isValid
|
|
|
|
}
|
|
|
|
}
|