mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
63 lines
1.8 KiB
JavaScript
63 lines
1.8 KiB
JavaScript
import { registerComponent, withCurrentUser, Utils } from 'meteor/vulcan:core';
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { FormattedMessage, intlShape } from 'meteor/vulcan:i18n';
|
|
import DropdownButton from 'react-bootstrap/lib/DropdownButton';
|
|
import MenuItem from 'react-bootstrap/lib/MenuItem';
|
|
import { LinkContainer } from 'react-router-bootstrap';
|
|
import { withRouter } from 'react-router'
|
|
import Users from 'meteor/vulcan:users';
|
|
|
|
const PostsViews = (props, context) => {
|
|
|
|
let views = ['top', 'new', 'best'];
|
|
const adminViews = ['pending', 'rejected', 'scheduled'];
|
|
|
|
if (Users.canDo(props.currentUser, 'posts.edit.all')) {
|
|
views = views.concat(adminViews);
|
|
}
|
|
|
|
const query = _.clone(props.router.location.query);
|
|
|
|
return (
|
|
<div className="posts-views">
|
|
<DropdownButton
|
|
bsStyle="default"
|
|
className="views btn-secondary"
|
|
title={context.intl.formatMessage({id: 'posts.view'})}
|
|
id="views-dropdown"
|
|
>
|
|
{views.map(view =>
|
|
<LinkContainer key={view} to={{pathname: Utils.getRoutePath('posts.list'), query: {...query, view: view}}} className="dropdown-item">
|
|
<MenuItem>
|
|
<FormattedMessage id={"posts."+view}/>
|
|
</MenuItem>
|
|
</LinkContainer>
|
|
)}
|
|
<LinkContainer to="/daily" className="dropdown-item">
|
|
<MenuItem className="bar">
|
|
<FormattedMessage id="posts.daily"/>
|
|
</MenuItem>
|
|
</LinkContainer>
|
|
</DropdownButton>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
PostsViews.propTypes = {
|
|
currentUser: PropTypes.object,
|
|
defaultView: PropTypes.string
|
|
};
|
|
|
|
PostsViews.defaultProps = {
|
|
defaultView: 'top'
|
|
};
|
|
|
|
PostsViews.contextTypes = {
|
|
currentRoute: PropTypes.object,
|
|
intl: intlShape
|
|
};
|
|
|
|
PostsViews.displayName = 'PostsViews';
|
|
|
|
registerComponent('PostsViews', PostsViews, withCurrentUser, withRouter);
|