77 lines
2.1 KiB
QML
77 lines
2.1 KiB
QML
import QtQuick 2.9
|
|
import QtQuick.Controls 2.4
|
|
|
|
DataListView {
|
|
id: control
|
|
|
|
property var listData: ({})
|
|
|
|
model: listData[ root.listKey ] === undefined ? 0:listData[ root.listKey ].length
|
|
|
|
|
|
|
|
delegate: ItemDelegate {
|
|
id: partDel
|
|
|
|
property var thisData: listData[ "athletes" ][index]
|
|
|
|
width: parent.width
|
|
|
|
opacity: 0
|
|
scale: 0.9
|
|
|
|
onThisDataChanged: {
|
|
fadeInPa.start()
|
|
}
|
|
|
|
ParallelAnimation {
|
|
id: fadeInPa
|
|
NumberAnimation { target: partDel; property: "opacity"; from: 0; to: 1.0; duration: 400 }
|
|
NumberAnimation { target: partDel; property: "scale"; from: 0.8; to: 1.0; duration: 400 }
|
|
}
|
|
|
|
text: ""
|
|
|
|
Label {
|
|
anchors.fill: parent
|
|
anchors.leftMargin: parent.width * 0.05
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
fontSizeMode: Text.Fit
|
|
font.bold: true
|
|
font.pixelSize: Math.abs( height * 0.4 )
|
|
minimumPixelSize: height * 0.3
|
|
|
|
elide: "ElideRight"
|
|
|
|
text: control.getText(index)
|
|
}
|
|
}
|
|
|
|
function getText(index){
|
|
|
|
// ----------------------------
|
|
// if we have registration data
|
|
|
|
var fedName // federation name
|
|
|
|
if(listData["federations"] !== undefined){
|
|
// not an international competition -> get name of federation
|
|
|
|
for(var i = 0; i < listData["federations"].length; i ++ ){
|
|
//console.log("checking " + i + ": cat: " + parseInt(listData["categorys"][i]["GrpId"]) + " searched cat: " + root.catId)
|
|
if(listData["federations"][i]["fed_id"] === listData[ root.listKey ][index]["reg_fed_id"]){
|
|
fedName = listData["federations"][i]["shortcut"]
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
// an international competition -> get nation
|
|
|
|
fedName = listData[ root.listKey ][index]["nation"]
|
|
}
|
|
|
|
return listData[ "athletes" ][index]["firstname"] + " " + listData[ "athletes" ][index]["lastname"] + " (" + fedName + ")"
|
|
}
|
|
}
|