183 lines
5.8 KiB
JavaScript
183 lines
5.8 KiB
JavaScript
import React, {useState, useEffect} from 'react';
|
|
import {observer, inject} from "mobx-react";
|
|
import { Popover, Sheet, View, Page, Navbar, NavRight, NavLeft, NavTitle, Tabs, Tab, Link } from 'framework7-react';
|
|
import { f7 } from 'framework7-react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import {Device} from '../../../../../common/mobile/utils/device';
|
|
|
|
import EditSlideController from "../../controller/edit/EditSlide";
|
|
import EditTextController from "../../controller/edit/EditText";
|
|
//import EditShapeController from "../../controller/edit/EditShape";
|
|
//import EditImageController from "../../controller/edit/EditImage";
|
|
//import EditTableController from "../../controller/edit/EditTable";
|
|
//import EditChartController from "../../controller/edit/EditChart";
|
|
//import EditLinkController from "../../controller/edit/EditLink";
|
|
|
|
const routes = [
|
|
|
|
];
|
|
|
|
const EmptyEditLayout = () => {
|
|
const { t } = useTranslation();
|
|
const _t = t('View.Edit', {returnObjects: true});
|
|
return (
|
|
<Page>
|
|
<div className="content-block inset">
|
|
<div className="content-block-inner">
|
|
<p>{_t.textSelectObjectToEdit}</p>
|
|
</div>
|
|
</div>
|
|
</Page>
|
|
)
|
|
};
|
|
|
|
const EditLayoutNavbar = ({ editors, inPopover }) => {
|
|
const isAndroid = Device.android;
|
|
return (
|
|
<Navbar>
|
|
{
|
|
editors.length > 1 ?
|
|
<div className='tab-buttons tabbar'>
|
|
{editors.map((item, index) => <Link key={"pe-link-" + item.id} tabLink={"#" + item.id} tabLinkActive={index === 0}>{item.caption}</Link>)}
|
|
{isAndroid && <span className='tab-link-highlight' style={{width: 100 / editors.lenght + '%'}}></span>}
|
|
</div> :
|
|
<NavTitle>{ editors[0].caption }</NavTitle>
|
|
}
|
|
{ !inPopover && <NavRight><Link icon='icon-expand-down' sheetClose></Link></NavRight> }
|
|
</Navbar>
|
|
)
|
|
};
|
|
|
|
const EditLayoutContent = ({ editors }) => {
|
|
if (editors.length > 1) {
|
|
return (
|
|
<Tabs animated>
|
|
{editors.map((item, index) =>
|
|
<Tab key={"pe-tab-" + item.id} id={item.id} className="page-content" tabActive={index === 0}>
|
|
{item.component}
|
|
</Tab>
|
|
)}
|
|
</Tabs>
|
|
)
|
|
} else {
|
|
return (
|
|
<Page>
|
|
{editors[0].component}
|
|
</Page>
|
|
)
|
|
}
|
|
};
|
|
|
|
const EditTabs = props => {
|
|
const { t } = useTranslation();
|
|
const _t = t('View.Edit', {returnObjects: true});
|
|
|
|
const settings = props.storeFocusObjects.settings;
|
|
let editors = [];
|
|
if (settings.length < 1) {
|
|
editors.push({
|
|
caption: _t.textSettings,
|
|
component: <EmptyEditLayout />
|
|
});
|
|
} else {
|
|
if (settings.indexOf('slide') > -1) {
|
|
editors.push({
|
|
caption: _t.textSlide,
|
|
id: 'edit-slide',
|
|
component: <EditSlideController />
|
|
})
|
|
}
|
|
if (settings.indexOf('text') > -1) {
|
|
editors.push({
|
|
caption: _t.textText,
|
|
id: 'edit-text',
|
|
component: <EditTextController />
|
|
})
|
|
}
|
|
/*if (settings.indexOf('table') > -1) {
|
|
editors.push({
|
|
caption: _t.textTable,
|
|
id: 'edit-table',
|
|
component: <EditTableController />
|
|
})
|
|
}
|
|
if (settings.indexOf('shape') > -1) {
|
|
editors.push({
|
|
caption: _t.textShape,
|
|
id: 'edit-shape',
|
|
component: <EditShapeController />
|
|
})
|
|
}
|
|
if (settings.indexOf('image') > -1) {
|
|
editors.push({
|
|
caption: _t.textImage,
|
|
id: 'edit-image',
|
|
component: <EditImageController />
|
|
})
|
|
}
|
|
if (settings.indexOf('chart') > -1) {
|
|
editors.push({
|
|
caption: _t.textChart,
|
|
id: 'edit-chart',
|
|
component: <EditChartController />
|
|
})
|
|
}
|
|
if (settings.indexOf('hyperlink') > -1) {
|
|
editors.push({
|
|
caption: _t.textHyperlink,
|
|
id: 'edit-link',
|
|
component: <EditLinkController />
|
|
})
|
|
}*/
|
|
}
|
|
|
|
return (
|
|
<View style={props.style} stackPages={true} routes={routes}>
|
|
<Page pageContent={false}>
|
|
<EditLayoutNavbar editors={editors} inPopover={props.inPopover}/>
|
|
<EditLayoutContent editors={editors} />
|
|
</Page>
|
|
</View>
|
|
)
|
|
};
|
|
|
|
const EditTabsContainer = inject("storeFocusObjects")(observer(EditTabs));
|
|
|
|
const EditView = props => {
|
|
const onOptionClick = (page) => {
|
|
$f7.views.current.router.navigate(page);
|
|
};
|
|
const show_popover = props.usePopover;
|
|
return (
|
|
show_popover ?
|
|
<Popover id="edit-popover" className="popover__titled" onPopoverClosed={() => props.onClosed()}>
|
|
<EditTabsContainer inPopover={true} onOptionClick={onOptionClick} style={{height: '410px'}} />
|
|
</Popover> :
|
|
<Sheet id="edit-sheet" push onSheetClosed={() => props.onClosed()}>
|
|
<EditTabsContainer onOptionClick={onOptionClick} />
|
|
</Sheet>
|
|
)
|
|
};
|
|
|
|
const EditOptions = props => {
|
|
useEffect(() => {
|
|
if ( Device.phone )
|
|
f7.sheet.open('#edit-sheet');
|
|
else f7.popover.open('#edit-popover', '#btn-edit');
|
|
|
|
return () => {
|
|
// component will unmount
|
|
}
|
|
});
|
|
|
|
const onviewclosed = () => {
|
|
if ( props.onclosed )
|
|
props.onclosed();
|
|
};
|
|
|
|
return (
|
|
<EditView usePopover={!Device.phone} onClosed={onviewclosed} />
|
|
)
|
|
};
|
|
|
|
export default EditOptions; |