moment/src/qml/Models/Users.qml

22 lines
503 B
QML
Raw Normal View History

2019-07-05 06:01:44 +10:00
import QtQuick 2.7
import SortFilterProxyModel 0.2
import "../Base"
HListModel {
function getUser(user_id) {
var found = getWhere({"userId": user_id}, 1)
if (found.length > 0) { return found[0] }
append({
"userId": user_id,
"displayName": "",
"avatarUrl": "",
"statusMessage": ""
})
py.callCoro("request_user_update_event", [user_id])
return getWhere({"userId": user_id}, 1)[0]
}
}