mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
24 lines
1.1 KiB
JavaScript
24 lines
1.1 KiB
JavaScript
Discourse.LeaderRequirements = Discourse.Model.extend({
|
|
days_visited_percent: function() {
|
|
return ((this.get('days_visited') * 100) / this.get('time_period'));
|
|
}.property('days_visited', 'time_period'),
|
|
|
|
min_days_visited_percent: function() {
|
|
return ((this.get('min_days_visited') * 100) / this.get('time_period'));
|
|
}.property('min_days_visited', 'time_period'),
|
|
|
|
met: function() {
|
|
return {
|
|
days_visited: this.get('days_visited') >= this.get('min_days_visited'),
|
|
topics_replied_to: this.get('num_topics_replied_to') >= this.get('min_topics_replied_to'),
|
|
topics_viewed: this.get('topics_viewed') >= this.get('min_topics_viewed'),
|
|
posts_read: this.get('posts_read') >= this.get('min_posts_read'),
|
|
flagged_posts: this.get('num_flagged_posts') < this.get('max_flagged_posts')
|
|
};
|
|
}.property('days_visited', 'min_days_visited',
|
|
'num_topics_replied_to', 'min_topics_replied_to',
|
|
'topics_viewed', 'min_topics_viewed',
|
|
'posts_read', 'min_posts_read',
|
|
'num_flagged_posts', 'max_flagged_posts')
|
|
});
|