Vulcan/packages/nova-posts/lib/views.js
Comus Leong 464e20a96c eslint & clean up code, also fixed some bugs (#1515)
* [eslint] update eslint rules & add .eslintignore to ignore non-ready nova packages

* [clean-up] nova-voting

* [clean-up] [bug] nova-users: missing user parameter

* [clean-up] nova-users

* [clean-up] nova-subscribe

* [clean-up] nova-settings

* [clean-up] nova-rss

* [clean-up] [bug] nova-posts: correct UsersRemoveDeletePosts

* [clean-up] nova-posts

* [clean-up] nova-notifications

* [clean-up] [bug] nova-newsletter: no error.message on throw error

* [clean-up] nova-newsletter

* [clean-up] nova-lib

* [clean-up] nova-kadira

* [clean-up] nova-inject-data

* [clean-up] nova-getting-started

* [clean-up] nova-forms

* [clean-up] nova-events

* [clean-up] [bug] nova-embedly: no FlowRouter

* [clean-up] nova-embedly

* [clean-up] nova-email-templates

* [clean-up] nova-email

* [clean-up] nova-debug

* [clean-up] nova-core

* [clean-up] [bug] nova-comments: correct UsersRemoveDeleteComments

* [clean-up] nova-comments

* [clean-up] [bug] nova-cloudinary: use Telescope.settings.collection instand

* [clean-up] nova-cloudinary

* [clean-up] nova-categories

* [clean-up] nova-base-components

* [clean-up] nova-api

* [eslint] extends react recommended

* [clean-up] for jsx files

* [eslint] extends meteor recommended

* i forgot this one little change
2016-11-25 13:46:55 -05:00

148 lines
3.1 KiB
JavaScript

import Users from 'meteor/nova:users';
import Posts from './collection.js'
/**
* @summary Post views are filters used for subscribing to and viewing posts
* @namespace Posts.views
*/
Posts.views = {};
/**
* @summary Add a post view
* @param {string} viewName - The name of the view
* @param {function} [viewFunction] - The function used to calculate query terms. Takes terms and baseParameters arguments
*/
Posts.views.add = function (viewName, viewFunction) {
Posts.views[viewName] = viewFunction;
};
/**
* @summary Base parameters that will be common to all other view unless specific properties are overwritten
*/
Posts.views.baseParameters = {
selector: {
status: Posts.config.STATUS_APPROVED,
isFuture: {$ne: true} // match both false and undefined
}
};
/**
* @summary Top view
*/
Posts.views.add("top", function (terms) {
return {
...Posts.views.baseParameters,
options: {sort: {sticky: -1, score: -1}}
};
});
/**
* @summary New view
*/
Posts.views.add("new", function (terms) {
return {
...Posts.views.baseParameters,
options: {sort: {sticky: -1, postedAt: -1}}
};
});
/**
* @summary Best view
*/
Posts.views.add("best", function (terms) {
return {
...Posts.views.baseParameters,
options: {sort: {sticky: -1, baseScore: -1}}
};
});
/**
* @summary Pending view
*/
Posts.views.add("pending", function (terms) {
return {
selector: {
status: Posts.config.STATUS_PENDING
},
options: {sort: {createdAt: -1}}
};
});
/**
* @summary Rejected view
*/
Posts.views.add("rejected", function (terms) {
return {
selector: {
status: Posts.config.STATUS_REJECTED
},
options: {sort: {createdAt: -1}}
};
});
/**
* @summary Scheduled view
*/
Posts.views.add("scheduled", function (terms) {
return {
selector: {
status: Posts.config.STATUS_APPROVED,
isFuture: true
},
options: {sort: {postedAt: -1}}
};
});
/**
* @summary User posts view
*/
Posts.views.add("userPosts", function (terms) {
return {
selector: {
userId: terms.userId,
status: Posts.config.STATUS_APPROVED,
isFuture: {$ne: true}
},
options: {
limit: 5,
sort: {
postedAt: -1
}
}
};
});
/**
* @summary User upvoted posts view
*/
Posts.views.add("userUpvotedPosts", function (terms) {
var user = Users.findOne(terms.userId);
var postsIds = _.pluck(user.telescope.upvotedPosts, "itemId");
return {
selector: {_id: {$in: postsIds}, userId: {$ne: terms.userId}}, // exclude own posts
options: {limit: 5, sort: {postedAt: -1}}
};
});
/**
* @summary User downvoted posts view
*/
Posts.views.add("userDownvotedPosts", function (terms) {
var user = Users.findOne(terms.userId);
var postsIds = _.pluck(user.telescope.downvotedPosts, "itemId");
// TODO: sort based on votedAt timestamp and not postedAt, if possible
return {
selector: {_id: {$in: postsIds}},
options: {limit: 5, sort: {postedAt: -1}}
};
});
Posts.views.add("test", function (terms) {
return {
selector: {
title: {$regex: "newsletter", $options: 'i'}
},
options: {sort: {sticky: -1, baseScore: -1}}
};
});