131 lines
6.6 KiB
JavaScript
131 lines
6.6 KiB
JavaScript
import React, { Fragment } from 'react';
|
|
import { observer, inject } from "mobx-react";
|
|
import { Page, Navbar, Link } from "framework7-react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { Device } from '../../utils/device';
|
|
|
|
const PageAbout = props => {
|
|
const { t } = useTranslation();
|
|
const _t = t("About", { returnObjects: true });
|
|
const store = props.storeAppOptions;
|
|
const isCanBranding = store.canBranding;
|
|
const licInfo = isCanBranding ? store.customization : null;
|
|
const customer = licInfo ? licInfo.customer : null;
|
|
const nameCustomer = customer ? customer.name : null;
|
|
const mailCustomer = customer ? customer.mail : null;
|
|
const phoneCustomer = customer ? customer.phone : null;
|
|
const addressCustomer = customer ? customer.address : null;
|
|
const urlCustomer = customer ? customer.www : null;
|
|
const infoCustomer = customer ? customer.info : null;
|
|
const logoCustomer = customer ? customer.logo : null;
|
|
|
|
const publisherUrl = __PUBLISHER_URL__,
|
|
publisherPrintUrl = publisherUrl.replace(/https?:\/{2}|\/$/g,"");
|
|
const publisherName = __PUBLISHER_NAME__.replace(/\\"/g, '"');
|
|
|
|
const editors = {
|
|
de: 'DOCUMENT EDITOR',
|
|
pe: 'PRESENTATION EDITOR',
|
|
sse: 'SPREADSHEET EDITOR'
|
|
};
|
|
|
|
const nameEditor = (_t.textEditor || editors[editorType]).toUpperCase();
|
|
|
|
return (
|
|
<Page className={"about" + (!Device.phone ? " about_tablet" : Device.ios ? " about_ios" : " about_android")}>
|
|
<Navbar title={_t.textAbout} backLink={_t.textBack} />
|
|
{licInfo && typeof licInfo == 'object' && typeof(customer) == 'object' ? (
|
|
<Fragment>
|
|
<div className="logo-block">
|
|
{logoCustomer && logoCustomer.length ? (
|
|
<div id="settings-about-logo" className="logo-block__elem">
|
|
<img src={logoCustomer} alt="" />
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
<div className="about__editor">
|
|
<p className="about__text">{nameEditor}</p>
|
|
<p className="about__text">{_t.textVersion} {__PRODUCT_VERSION__}</p>
|
|
</div>
|
|
{mailCustomer || phoneCustomer ? (
|
|
<div className="about__customer">
|
|
{mailCustomer && mailCustomer.length ? (
|
|
<p className="about__text">
|
|
<Link id="settings-about-email" external={true} href={"mailto:"+mailCustomer}>{mailCustomer}</Link>
|
|
</p>
|
|
) : null}
|
|
{phoneCustomer && phoneCustomer.length ? (
|
|
<p className="about__text">
|
|
<Link id="settings-about-tel" external={true} href={"tel:"+phoneCustomer}>{phoneCustomer}</Link>
|
|
</p>
|
|
) : null}
|
|
</div>
|
|
) : null}
|
|
{addressCustomer && addressCustomer.length ? (
|
|
<div className="about__customer">
|
|
<p className="about__text">
|
|
<Link id="settings-about-address" external={true}>{addressCustomer}</Link>
|
|
</p>
|
|
</div>
|
|
) : null}
|
|
{nameCustomer || infoCustomer || urlCustomer ? (
|
|
<div className="about__customer">
|
|
{nameCustomer && nameCustomer.length ? (
|
|
<p id="settings-about-name" className="about__text">{nameCustomer}</p>
|
|
) : null}
|
|
{infoCustomer && infoCustomer.length ? (
|
|
<p className="about__text">{infoCustomer}</p>
|
|
) : null}
|
|
{urlCustomer && urlCustomer.length ? (
|
|
<p className="about__text">
|
|
<Link id="settings-about-url" external={true} target="_blank"
|
|
href={!/^https?:\/{2}/i.test(urlCustomer) ? "http:\/\/" : '' + urlCustomer}>
|
|
{urlCustomer}
|
|
</Link>
|
|
</p>
|
|
) : null}
|
|
</div>
|
|
) : null}
|
|
<div className="about__contacts">
|
|
<p className="about__text" id="settings-about-address">
|
|
{__PUBLISHER_ADDRESS__}
|
|
</p>
|
|
</div>
|
|
<div className="about__licensor" id="settings-about-licensor">
|
|
<p className="about__text">{publisherName}</p>
|
|
<p className="about__text">
|
|
<Link external={true} target="_blank" href={publisherUrl}>{publisherPrintUrl}</Link>
|
|
</p>
|
|
</div>
|
|
</Fragment>
|
|
) : (
|
|
<Fragment>
|
|
<div className="about__logo"></div>
|
|
<div className="about__editor">
|
|
<p className="about__text">{nameEditor}</p>
|
|
<p className="about__text">{_t.textVersion} {__PRODUCT_VERSION__}</p>
|
|
</div>
|
|
<div className="about__contacts">
|
|
<p className="about__text" id="settings-about-address">
|
|
{__PUBLISHER_ADDRESS__}
|
|
</p>
|
|
</div>
|
|
<div className="about__licensor">
|
|
<p className="about__text" id="settings-about-name">{publisherName}</p>
|
|
<p className="about__text">
|
|
<Link id="settings-about-url" external={true} target="_blank" href={publisherUrl}>{publisherPrintUrl}</Link>
|
|
</p>
|
|
</div>
|
|
</Fragment>
|
|
)}
|
|
</Page>
|
|
);
|
|
};
|
|
|
|
const About = inject("storeAppOptions")(observer(PageAbout));
|
|
About.appVersion = () => (__PRODUCT_VERSION__).match(/\d+.\d+.\d+/)[0]; // skip build number
|
|
About.compareVersions = () => /d$/.test(__PRODUCT_VERSION__);
|
|
About.developVersion = () => /(?:d|debug)$/.test(__PRODUCT_VERSION__);
|
|
|
|
|
|
export default About; |