Ensure that the local model is updated correctly on local vote

CURA-6013
This commit is contained in:
Jaime van Kessel 2018-12-10 11:01:55 +01:00
parent 098adc45ff
commit 99f0e96131
2 changed files with 28 additions and 23 deletions

View file

@ -12,11 +12,6 @@ Item
property int numRatings: 0
// If the widget was used to vote, but the vote isn't sent to remote yet, we do want to fake some things.
property int _numRatings: _localRating != 0 ? numRatings + 1 : numRatings
property int _localRating: 0
onVisibleChanged: _localRating = 0 // Reset the _localRating
property int userRating: 0
signal rated(int rating)
@ -60,10 +55,7 @@ Item
{
return indexHovered >= index
}
if(ratingWidget._localRating > 0)
{
return _localRating >= index +1
}
if(ratingWidget.userRating > 0)
{
return userRating >= index +1
@ -86,25 +78,19 @@ Item
{
return "#5a5a5a"
}
if((ratingWidget.indexHovered >= 0 || ratingWidget.userRating > 0 || ratingWidget._localRating > 0) && isStarFilled)
if((ratingWidget.indexHovered >= 0 || ratingWidget.userRating > 0) && isStarFilled)
{
return UM.Theme.getColor("primary")
}
return "#5a5a5a"
}
}
onClicked:
{
// Ensure that the local rating is updated (even though it's not on the server just yet)
//_localRating = index + 1
rated(index + 1)
}
onClicked: rated(index + 1) // Notify anyone who cares about this.
}
}
Label
{
text: "(" + _numRatings + ")"
text: "(" + numRatings + ")"
verticalAlignment: Text.AlignVCenter
height: parent.height
color: "#5a5a5a"