2021-12-19 12:38:19 +00:00
|
|
|
import React, { Fragment, useState } from 'react';
|
2022-02-01 09:29:01 +00:00
|
|
|
import {f7, View, Link, Icon, Popover, List, ListItem, ListButton, Actions, ActionsGroup, ActionsButton, Sheet, Page } from 'framework7-react';
|
2021-03-23 13:43:10 +00:00
|
|
|
import { useTranslation } from 'react-i18next';
|
2021-03-24 17:50:09 +00:00
|
|
|
import { Device } from '../../../../common/mobile/utils/device';
|
2021-07-28 15:19:46 +00:00
|
|
|
import { inject, observer } from 'mobx-react';
|
2020-12-15 21:17:26 +00:00
|
|
|
|
|
|
|
const viewStyle = {
|
|
|
|
height: 30
|
|
|
|
};
|
2020-12-10 13:14:52 +00:00
|
|
|
|
2021-12-19 12:38:19 +00:00
|
|
|
const MoveMenuActions = (props) => {
|
|
|
|
const { t } = useTranslation();
|
|
|
|
let { opened, setOpenActions, onMenuMoveClick, visibleSheets } = props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Actions className="actions-move-sheet" opened={opened} onActionsClosed={() => setOpenActions(false)}>
|
|
|
|
<ActionsGroup>
|
|
|
|
<ActionsButton className={visibleSheets[0]?.active ? 'disabled' : ''} onClick={() => onMenuMoveClick("back")}>
|
|
|
|
{t('Statusbar.textMoveBack')}
|
|
|
|
</ActionsButton>
|
|
|
|
<ActionsButton className={visibleSheets[visibleSheets.length - 1]?.active ? 'disabled' : ''} onClick={() => onMenuMoveClick("forward")}>
|
|
|
|
{t('Statusbar.textMoveForward')}
|
|
|
|
</ActionsButton>
|
|
|
|
</ActionsGroup>
|
|
|
|
<ActionsGroup>
|
|
|
|
<ActionsButton>{t('Statusbar.textCancel')}</ActionsButton>
|
|
|
|
</ActionsGroup>
|
|
|
|
</Actions>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const PageListMove = props => {
|
|
|
|
const { sheets, onMenuMoveClick } = props;
|
|
|
|
const allSheets = sheets.sheets;
|
|
|
|
const visibleSheets = sheets.visibleWorksheets();
|
|
|
|
const [stateActionsOpened, setOpenActions] = useState(false);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Page>
|
|
|
|
<List>
|
|
|
|
{ allSheets.map(model =>
|
|
|
|
model.hidden ? null :
|
|
|
|
<ListItem className={model.active ? '' : 'disabled'} key={model.name} title={model.name}>
|
|
|
|
<div slot='after'
|
|
|
|
onClick={() => setOpenActions(true) }>
|
|
|
|
<Icon icon='icon-menu-comment'/>
|
|
|
|
</div>
|
|
|
|
</ListItem>)
|
|
|
|
}
|
|
|
|
</List>
|
|
|
|
<MoveMenuActions opened={stateActionsOpened} setOpenActions={setOpenActions} onMenuMoveClick={onMenuMoveClick} visibleSheets={visibleSheets}/>
|
|
|
|
</Page>
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
2022-02-01 09:29:01 +00:00
|
|
|
const PageAllList = (props) => {
|
|
|
|
const { t } = useTranslation();
|
|
|
|
const { sheets, onTabListClick } = props;
|
|
|
|
const allSheets = sheets.sheets;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Page>
|
|
|
|
<List>
|
|
|
|
{ allSheets.map( (model,sheetIndex) =>
|
|
|
|
<ListItem className='item-list' key={model.name} title={model.name} checkbox checked={model.active} onClick={() => onTabListClick(sheetIndex)}>
|
|
|
|
{model.hidden ?
|
|
|
|
<div slot='after'>
|
|
|
|
{t('Statusbar.textHidden')}
|
|
|
|
</div>
|
|
|
|
: null}
|
|
|
|
</ListItem>)
|
|
|
|
}
|
|
|
|
</List>
|
|
|
|
</Page>
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
2021-08-31 13:01:44 +00:00
|
|
|
const StatusbarView = inject('storeAppOptions', 'sheets', 'users')(observer(props => {
|
2021-03-23 13:43:10 +00:00
|
|
|
const { t } = useTranslation();
|
|
|
|
const _t = t('Statusbar', {returnObjects: true});
|
2021-03-24 17:50:09 +00:00
|
|
|
const isAndroid = Device.android;
|
|
|
|
const isPhone = Device.isPhone;
|
2021-08-31 13:01:44 +00:00
|
|
|
const {sheets, storeAppOptions, users} = props;
|
2021-07-28 15:19:46 +00:00
|
|
|
const allSheets = sheets.sheets;
|
|
|
|
const hiddenSheets = sheets.hiddenWorksheets();
|
2021-10-06 09:03:06 +00:00
|
|
|
const isWorkbookLocked = sheets.isWorkbookLocked;
|
|
|
|
const isProtectedWorkbook = sheets.isProtectedWorkbook;
|
2021-07-28 15:19:46 +00:00
|
|
|
const isEdit = storeAppOptions.isEdit;
|
2021-08-31 13:01:44 +00:00
|
|
|
const isDisconnected = users.isDisconnected;
|
2021-10-22 15:52:59 +00:00
|
|
|
const isDisabledEditSheet = sheets.isDisabledEditSheet;
|
2021-03-30 12:17:24 +00:00
|
|
|
|
2021-07-28 15:19:46 +00:00
|
|
|
return (
|
2021-03-23 13:43:10 +00:00
|
|
|
<Fragment>
|
|
|
|
<View id="idx-statusbar" className="statusbar" style={viewStyle}>
|
2021-11-11 08:37:06 +00:00
|
|
|
{isEdit &&
|
2022-02-01 09:29:01 +00:00
|
|
|
<div id="idx-box-add-tab" className={`${isDisconnected || isWorkbookLocked || isProtectedWorkbook ? 'disabled box-tab' : 'box-tab'}`}>
|
2021-11-11 08:37:06 +00:00
|
|
|
<Link href={false} id="idx-btn-addtab" className={`tab${isDisabledEditSheet || isDisconnected || isWorkbookLocked || isProtectedWorkbook ? ' disabled' : ''}`} onClick={props.onAddTabClicked}>
|
2022-01-25 18:08:58 +00:00
|
|
|
<Icon className={`icon icon-plus ${isAndroid ? 'bold' : ''}`}/>
|
2021-11-11 08:37:06 +00:00
|
|
|
</Link>
|
2022-02-01 09:29:01 +00:00
|
|
|
<Link href={false} id="idx-btn-all-list-tab" className={`tab${isDisabledEditSheet || isDisconnected || isWorkbookLocked || isProtectedWorkbook ? ' disabled' : ''}`} onClick={(e) => f7.popover.open('#idx-all-list', e.target)}>
|
|
|
|
<Icon className={`icon icon-list ${isAndroid ? 'bold' : ''}`}/>
|
|
|
|
</Link>
|
2021-11-11 08:37:06 +00:00
|
|
|
</div>
|
|
|
|
}
|
2020-12-28 20:52:32 +00:00
|
|
|
<div className="statusbar--box-tabs">
|
|
|
|
<ul className="sheet-tabs bottom">
|
2021-03-30 12:17:24 +00:00
|
|
|
{allSheets.map((model,i) =>
|
|
|
|
model.hidden ? null :
|
2021-07-28 15:19:46 +00:00
|
|
|
<li className={`tab${model.active ? ' active' : ''} ${model.locked ? 'locked' : ''}`} key={i} onClick={(e) => props.onTabClick(i, e.target)}>
|
|
|
|
<a>{model.name}</a>
|
2020-12-28 20:52:32 +00:00
|
|
|
</li>
|
2021-03-30 12:17:24 +00:00
|
|
|
|
2020-12-28 20:52:32 +00:00
|
|
|
)}
|
|
|
|
</ul>
|
|
|
|
</div>
|
2021-03-23 13:43:10 +00:00
|
|
|
</View>
|
2021-06-10 22:08:23 +00:00
|
|
|
{isEdit ?
|
|
|
|
<Popover id="idx-tab-context-menu-popover"
|
|
|
|
className="document-menu"
|
|
|
|
backdrop={false}
|
|
|
|
closeByBackdropClick={false}
|
|
|
|
closeByOutsideClick={false}
|
|
|
|
>
|
|
|
|
{isPhone || isAndroid ? (
|
|
|
|
<List className="list-block">
|
|
|
|
<ListButton title={_t.textDuplicate} onClick={() => props.onTabMenu('copy')} />
|
|
|
|
<ListButton title={_t.textDelete} onClick={() => props.onTabMenu('del')} />
|
|
|
|
<ListButton title={_t.textMore} onClick={() => props.onTabMenu('showMore')} />
|
|
|
|
</List>
|
|
|
|
) : (
|
|
|
|
<List className="list-block">
|
|
|
|
<ListButton title={_t.textDuplicate} onClick={() => props.onTabMenu('copy')} />
|
|
|
|
<ListButton title={_t.textDelete} onClick={() => props.onTabMenu('del')} />
|
|
|
|
<ListButton title={_t.textRename} onClick={() => props.onTabMenu('ren')} />
|
|
|
|
<ListButton title={_t.textHide} onClick={() => props.onTabMenu('hide')} />
|
2021-12-19 12:38:19 +00:00
|
|
|
<ListButton title={_t.textMove} onClick={() => props.onTabMenu('move')} />
|
2021-06-10 22:08:23 +00:00
|
|
|
{hiddenSheets.length ? (
|
|
|
|
<ListButton title={_t.textUnhide} onClick={() => props.onTabMenu('unhide')} />
|
|
|
|
) : null}
|
|
|
|
</List>
|
|
|
|
)}
|
|
|
|
</Popover>
|
|
|
|
: null}
|
2021-03-24 17:50:09 +00:00
|
|
|
{isPhone || isAndroid ? (
|
|
|
|
<Actions id="idx-tab-menu-actions" backdrop={true} closeByBackdropClick={true}>
|
|
|
|
<ActionsGroup>
|
|
|
|
<ActionsButton onClick={() => props.onTabMenu('ren')}>{_t.textRename}</ActionsButton>
|
|
|
|
<ActionsButton onClick={() => props.onTabMenu('hide')}>{_t.textHide}</ActionsButton>
|
2021-12-19 12:38:19 +00:00
|
|
|
<ActionsButton onClick={() => props.onTabMenu('move')}>{_t.textMove}</ActionsButton>
|
2021-03-25 20:34:22 +00:00
|
|
|
{hiddenSheets.length ? (
|
|
|
|
<ActionsButton onClick={() => props.onTabMenu('unhide')}>{_t.textUnhide}</ActionsButton>
|
|
|
|
) : null}
|
2021-03-24 17:50:09 +00:00
|
|
|
</ActionsGroup>
|
|
|
|
<ActionsGroup>
|
2021-03-25 20:34:22 +00:00
|
|
|
<ActionsButton bold={true}>{_t.textCancel}</ActionsButton>
|
|
|
|
</ActionsGroup>
|
2021-03-24 17:50:09 +00:00
|
|
|
</Actions>
|
|
|
|
) : null}
|
2022-02-01 09:29:01 +00:00
|
|
|
{
|
|
|
|
<Popover style={{height: '240px'}} id="idx-all-list" className="all-list">
|
|
|
|
<PageAllList sheets={sheets} onTabListClick={props.onTabListClick}/>
|
|
|
|
</Popover>
|
|
|
|
}
|
2021-12-19 12:38:19 +00:00
|
|
|
{isPhone ?
|
|
|
|
<Sheet style={{height: '48%'}} className='move-sheet' swipeToClose={true} backdrop={false}>
|
|
|
|
<div className='swipe-container'>
|
|
|
|
<Icon icon='icon-swipe'/>
|
|
|
|
</div>
|
|
|
|
<PageListMove sheets={sheets} onMenuMoveClick={props.onMenuMoveClick}/>
|
|
|
|
</Sheet>
|
|
|
|
:
|
|
|
|
<Popover style={{height: '420px'}} id="idx-move-sheet-popover" closeByOutsideClick={false}>
|
|
|
|
<PageListMove sheets={sheets} onMenuMoveClick={props.onMenuMoveClick}/>
|
|
|
|
</Popover>
|
|
|
|
}
|
2021-03-23 13:43:10 +00:00
|
|
|
{hiddenSheets.length ? (
|
|
|
|
<Popover id="idx-hidden-sheets-popover"
|
|
|
|
className="document-menu"
|
|
|
|
backdrop={false}
|
|
|
|
closeByBackdropClick={false}
|
|
|
|
closeByOutsideClick={false}
|
|
|
|
>
|
|
|
|
<List className="list-block">
|
|
|
|
{hiddenSheets.map(sheet => {
|
|
|
|
return (
|
2021-03-23 22:46:37 +00:00
|
|
|
<ListButton key={sheet.index} data-event={`reveal:${sheet.index}`} title={sheet.name}
|
|
|
|
onClick={() => props.onTabMenu(`reveal:${sheet.index}`)} />
|
2021-03-23 13:43:10 +00:00
|
|
|
)
|
|
|
|
})}
|
|
|
|
</List>
|
|
|
|
</Popover>
|
|
|
|
) : null}
|
|
|
|
</Fragment>
|
2021-03-19 22:38:40 +00:00
|
|
|
)
|
2021-07-28 15:19:46 +00:00
|
|
|
}));
|
2021-03-19 22:38:40 +00:00
|
|
|
|
2021-03-23 13:43:10 +00:00
|
|
|
export {StatusbarView};
|