| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- import { UserPicture } from '@growi/ui';
- import { DevidedPagePath } from '@growi/core';
- import PagePathHierarchicalLink from '~/components/PagePathHierarchicalLink';
- import loggerFactory from '~/utils/logger';
- import LinkedPagePath from '~/models/linked-page-path';
- import FootstampIcon from '../FootstampIcon';
- import { withUnstatedContainers } from '../UnstatedUtils';
- import AppContainer from '~/client/services/AppContainer';
- import { toastError } from '~/client/util/apiNotification';
- import FormattedDistanceDate from '../FormattedDistanceDate';
- const logger = loggerFactory('growi:History');
- function PageItemLower({ page }) {
- return (
- <div className="d-flex justify-content-between grw-recent-changes-item-lower pt-1">
- <div className="d-flex">
- <div className="footstamp-icon mr-1 d-inline-block"><FootstampIcon /></div>
- <div className="mr-2 grw-list-counts d-inline-block">{page.seenUsers.length}</div>
- <div className="icon-bubble mr-1 d-inline-block"></div>
- <div className="mr-2 grw-list-counts d-inline-block">{page.commentCount}</div>
- </div>
- <div className="grw-formatted-distance-date small mt-auto">
- <FormattedDistanceDate id={page._id} date={page.updatedAt} />
- </div>
- </div>
- );
- }
- PageItemLower.propTypes = {
- page: PropTypes.any,
- };
- function LargePageItem({ page }) {
- const dPagePath = new DevidedPagePath(page.path, false, true);
- const linkedPagePathFormer = new LinkedPagePath(dPagePath.former);
- const linkedPagePathLatter = new LinkedPagePath(dPagePath.latter);
- const FormerLink = () => (
- <div className="grw-page-path-text-muted-container small">
- <PagePathHierarchicalLink linkedPagePath={linkedPagePathFormer} />
- </div>
- );
- let locked;
- if (page.grant !== 1) {
- locked = <span><i className="icon-lock ml-2" /></span>;
- }
- const tags = page.tags;
- const tagElements = tags.map((tag) => {
- return (
- <a key={tag.name} href={`/_search?q=tag:${tag.name}`} className="grw-tag-label badge badge-secondary mr-2 small">
- {tag.name}
- </a>
- );
- });
- return (
- <li className="list-group-item py-3 px-0">
- <div className="d-flex w-100">
- <UserPicture user={page.lastUpdateUser} size="md" noTooltip />
- <div className="flex-grow-1 ml-2">
- { !dPagePath.isRoot && <FormerLink /> }
- <h5 className="my-2">
- <PagePathHierarchicalLink linkedPagePath={linkedPagePathLatter} basePath={dPagePath.isRoot ? undefined : dPagePath.former} />
- {locked}
- </h5>
- <div className="grw-tag-labels mt-1 mb-2">
- { tagElements }
- </div>
- <PageItemLower page={page} />
- </div>
- </div>
- </li>
- );
- }
- LargePageItem.propTypes = {
- page: PropTypes.any,
- };
- function SmallPageItem({ page }) {
- const dPagePath = new DevidedPagePath(page.path, false, true);
- const linkedPagePathFormer = new LinkedPagePath(dPagePath.former);
- const linkedPagePathLatter = new LinkedPagePath(dPagePath.latter);
- const FormerLink = () => (
- <div className="grw-page-path-text-muted-container small">
- <PagePathHierarchicalLink linkedPagePath={linkedPagePathFormer} />
- </div>
- );
- let locked;
- if (page.grant !== 1) {
- locked = <span><i className="icon-lock ml-2" /></span>;
- }
- return (
- <li className="list-group-item py-2 px-0">
- <div className="d-flex w-100">
- <UserPicture user={page.lastUpdateUser} size="md" noTooltip />
- <div className="flex-grow-1 ml-2">
- { !dPagePath.isRoot && <FormerLink /> }
- <h5 className="my-0">
- <PagePathHierarchicalLink linkedPagePath={linkedPagePathLatter} basePath={dPagePath.isRoot ? undefined : dPagePath.former} />
- {locked}
- </h5>
- <PageItemLower page={page} />
- </div>
- </div>
- </li>
- );
- }
- SmallPageItem.propTypes = {
- page: PropTypes.any,
- };
- class RecentChanges extends React.Component {
- static propTypes = {
- t: PropTypes.func.isRequired, // i18next
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- };
- constructor(props) {
- super(props);
- this.state = {
- isRecentChangesSidebarSmall: false,
- };
- this.reloadData = this.reloadData.bind(this);
- }
- componentWillMount() {
- this.retrieveSizePreferenceFromLocalStorage();
- }
- async componentDidMount() {
- this.reloadData();
- }
- async reloadData() {
- const { appContainer } = this.props;
- try {
- await appContainer.retrieveRecentlyUpdated();
- }
- catch (error) {
- logger.error('failed to save', error);
- toastError(error, 'Error occurred in updating History');
- }
- }
- retrieveSizePreferenceFromLocalStorage() {
- if (window.localStorage.isRecentChangesSidebarSmall === 'true') {
- this.setState({
- isRecentChangesSidebarSmall: true,
- });
- }
- }
- changeSizeHandler = (e) => {
- this.setState({
- isRecentChangesSidebarSmall: e.target.checked,
- });
- window.localStorage.setItem('isRecentChangesSidebarSmall', e.target.checked);
- }
- render() {
- const { t } = this.props;
- const { recentlyUpdatedPages } = this.props.appContainer.state;
- return (
- <>
- <div className="grw-sidebar-content-header p-3 d-flex">
- <h3 className="mb-0">{t('Recent Changes')}</h3>
- {/* <h3 className="mb-0">{t('Recent Created')}</h3> */} {/* TODO: impl switching */}
- <button type="button" className="btn btn-sm ml-auto grw-btn-reload-rc" onClick={this.reloadData}>
- <i className="icon icon-reload"></i>
- </button>
- <div className="grw-recent-changes-resize-button custom-control custom-switch ml-2">
- <input
- id="recentChangesResize"
- className="custom-control-input"
- type="checkbox"
- checked={this.state.isRecentChangesSidebarSmall}
- onChange={this.changeSizeHandler}
- />
- <label className="custom-control-label" htmlFor="recentChangesResize">
- </label>
- </div>
- </div>
- <div className="grw-sidebar-content-body grw-recent-changes p-3">
- <ul className="list-group list-group-flush">
- {recentlyUpdatedPages.map(page => (this.state.isRecentChangesSidebarSmall
- ? <SmallPageItem key={page._id} page={page} />
- : <LargePageItem key={page._id} page={page} />))}
- </ul>
- </div>
- </>
- );
- }
- }
- /**
- * Wrapper component for using unstated
- */
- const RecentChangesWrapper = withUnstatedContainers(RecentChanges, [AppContainer]);
- export default withTranslation()(RecentChangesWrapper);
|