| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import templateChecker from '@commons/util/template-checker';
- import { isTopPage } from '@commons/util/path-utils';
- export default class PageListMeta extends React.Component {
- render() {
- const { page } = this.props;
- // portal check
- let portalLabel;
- if (isTopPage(page.path)) {
- portalLabel = <span className="badge badge-info">PORTAL</span>;
- }
- // template check
- let templateLabel;
- if (templateChecker(page.path)) {
- templateLabel = <span className="badge badge-info">TMPL</span>;
- }
- let commentCount;
- if (page.commentCount > 0) {
- commentCount = <span><i className="icon-bubble" />{page.commentCount}</span>;
- }
- let likerCount;
- if (page.liker.length > 0) {
- likerCount = <span><i className="icon-like" />{page.liker.length}</span>;
- }
- let locked;
- if (page.grant !== 1) {
- locked = <span><i className="icon-lock" /></span>;
- }
- return (
- <span className="page-list-meta">
- {portalLabel}
- {templateLabel}
- {commentCount}
- {likerCount}
- {locked}
- </span>
- );
- }
- }
- PageListMeta.propTypes = {
- page: PropTypes.object.isRequired,
- };
- PageListMeta.defaultProps = {
- };
|