| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- import { withUnstatedContainers } from '../UnstatedUtils';
- import AppContainer from '~/client/services/AppContainer';
- import PageContainer from '~/client/services/PageContainer';
- import EditorContainer from '~/client/services/EditorContainer';
- import PaginationWrapper from '../PaginationWrapper';
- import Draft from './Draft';
- class MyDraftList extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- drafts: [],
- currentDrafts: [],
- activePage: 1,
- totalDrafts: 0,
- pagingLimit: Infinity,
- };
- this.handlePage = this.handlePage.bind(this);
- this.getDraftsFromLocalStorage = this.getDraftsFromLocalStorage.bind(this);
- this.getCurrentDrafts = this.getCurrentDrafts.bind(this);
- this.clearDraft = this.clearDraft.bind(this);
- this.clearAllDrafts = this.clearAllDrafts.bind(this);
- }
- async componentWillMount() {
- await this.getDraftsFromLocalStorage();
- this.getCurrentDrafts(1);
- }
- async handlePage(selectedPage) {
- await this.getDraftsFromLocalStorage();
- await this.getCurrentDrafts(selectedPage);
- }
- async getDraftsFromLocalStorage() {
- const draftsAsObj = this.props.editorContainer.drafts;
- if (draftsAsObj == null) {
- return;
- }
- const res = await this.props.appContainer.apiGet('/pages.exist', {
- pagePaths: JSON.stringify(Object.keys(draftsAsObj)),
- });
- // {'/a': '#a', '/b': '#b'} => [{path: '/a', markdown: '#a'}, {path: '/b', markdown: '#b'}]
- const drafts = Object.entries(draftsAsObj).map((d) => {
- const path = d[0];
- return {
- path,
- markdown: d[1],
- isExist: res.pages[path],
- };
- });
- this.setState({ drafts, totalDrafts: drafts.length });
- }
- getCurrentDrafts(selectPageNumber) {
- const limit = 50; // implement only this component.(this default value is 50 (pageLimitationL))
- const totalDrafts = this.state.drafts.length;
- const activePage = selectPageNumber;
- const currentDrafts = this.state.drafts.slice((activePage - 1) * limit, activePage * limit);
- this.setState({
- currentDrafts,
- activePage,
- totalDrafts,
- pagingLimit: limit,
- });
- }
- /**
- * generate Elements of Draft
- *
- * @param {any} drafts Array of pages Model Obj
- *
- */
- generateDraftList(drafts) {
- return drafts.map((draft, index) => {
- return (
- <Draft
- index={index}
- key={draft.path}
- path={draft.path}
- markdown={draft.markdown}
- isExist={draft.isExist}
- clearDraft={this.clearDraft}
- />
- );
- });
- }
- clearDraft(path) {
- this.props.editorContainer.clearDraft(path);
- this.setState((prevState) => {
- return {
- drafts: prevState.drafts.filter((draft) => { return draft.path !== path }),
- currentDrafts: prevState.drafts.filter((draft) => { return draft.path !== path }),
- };
- });
- }
- clearAllDrafts() {
- this.props.editorContainer.clearAllDrafts();
- this.setState({
- drafts: [],
- currentDrafts: [],
- activePage: 1,
- totalDrafts: 0,
- pagingLimit: Infinity,
- });
- }
- render() {
- const { t } = this.props;
- const draftList = this.generateDraftList(this.state.currentDrafts);
- const totalCount = this.state.totalDrafts;
- return (
- <div className="page-list-container-create ">
- { totalCount === 0
- && <span className="mt-2">No drafts yet.</span>
- }
- { totalCount > 0 && (
- <React.Fragment>
- <div className="d-flex justify-content-between mt-2">
- <h4>Total: {totalCount} drafts</h4>
- <div className="align-self-center">
- <button type="button" className="btn btn-sm btn-outline-danger" onClick={this.clearAllDrafts}>
- <i className="icon-fw icon-fire"></i>
- {t('delete_all')}
- </button>
- </div>
- </div>
- <div className="tab-pane mt-2 accordion" id="draft-list">
- {draftList}
- </div>
- <PaginationWrapper
- activePage={this.state.activePage}
- changePage={this.handlePage}
- totalItemsCount={this.state.totalDrafts}
- pagingLimit={this.state.pagingLimit}
- align="center"
- size="sm"
- />
- </React.Fragment>
- ) }
- </div>
- );
- }
- }
- /**
- * Wrapper component for using unstated
- */
- const MyDraftListWrapper = withUnstatedContainers(MyDraftList, [AppContainer, PageContainer, EditorContainer]);
- MyDraftList.propTypes = {
- t: PropTypes.func.isRequired, // react-i18next
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- pageContainer: PropTypes.instanceOf(PageContainer).isRequired,
- editorContainer: PropTypes.instanceOf(EditorContainer).isRequired,
- };
- export default withTranslation()(MyDraftListWrapper);
|