mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-11 18:30:30 +00:00
109 lines
2.5 KiB
TypeScript
109 lines
2.5 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { useHistory } from 'react-router-dom';
|
|
import { Text } from '@blueprintjs/core';
|
|
import { Icon, For, FormattedMessage as T, Stack } from '@/components';
|
|
import { getFooterLinks } from '@/constants/footerLinks';
|
|
import { useAuthActions } from '@/hooks/state';
|
|
import style from './SetupLeftSection.module.scss';
|
|
import { useAuthMetadata } from '@/hooks/query';
|
|
|
|
/**
|
|
* Footer item link.
|
|
*/
|
|
function FooterLinkItem({ title, link }) {
|
|
return (
|
|
<div class="content__links-item">
|
|
<a href={link} target="_blank">
|
|
{title}
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Setup left section footer.
|
|
*/
|
|
function SetupLeftSectionFooter() {
|
|
// Retrieve the footer links.
|
|
const footerLinks = getFooterLinks();
|
|
|
|
const { data: authMeta } = useAuthMetadata();
|
|
const demoUrl = authMeta?.meta?.one_click_demo?.demo_url;
|
|
|
|
const handleDemoBtnClick = () => {
|
|
window.open(demoUrl);
|
|
};
|
|
|
|
return (
|
|
<div className={'content__footer'}>
|
|
{demoUrl && (
|
|
<Stack spacing={16}>
|
|
<Text className={style.demoButtonLabel}>Not Now?</Text>
|
|
<button className={style.demoButton} onClick={handleDemoBtnClick}>
|
|
Try Demo Account
|
|
</button>
|
|
</Stack>
|
|
)}
|
|
|
|
<div className={'content__links'}>
|
|
<For render={FooterLinkItem} of={footerLinks} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Setup left section header.
|
|
*/
|
|
function SetupLeftSectionHeader() {
|
|
const { setLogout } = useAuthActions();
|
|
|
|
// Handle logout link click.
|
|
const onClickLogout = () => {
|
|
setLogout();
|
|
};
|
|
|
|
return (
|
|
<div className={'content__header'}>
|
|
<h1 className={'content__title'}>
|
|
<T id={'setup.left_side.title'} />
|
|
</h1>
|
|
|
|
<p className={'content__text'}>
|
|
<T id={'setup.left_side.description'} />
|
|
</p>
|
|
|
|
<div className={'content__organization'}>
|
|
<span class="signout">
|
|
<a onClick={onClickLogout} href="#">
|
|
<T id={'sign_out'} />
|
|
</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Wizard setup left section.
|
|
*/
|
|
export default function SetupLeftSection() {
|
|
return (
|
|
<section className={'setup-page__left-section'}>
|
|
<div className={'content'}>
|
|
<div className={'content__logo'}>
|
|
<Icon
|
|
icon="bigcapital"
|
|
className={'bigcapital--alt'}
|
|
height={37}
|
|
width={190}
|
|
/>
|
|
</div>
|
|
<SetupLeftSectionHeader />
|
|
<SetupLeftSectionFooter />
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|