|
|
|
@ -2,24 +2,35 @@ import { useEffect } from 'react';
|
|
|
|
|
import styled from 'styled-components';
|
|
|
|
|
import { SessionTheme } from '../themes/SessionTheme';
|
|
|
|
|
import { switchThemeTo } from '../themes/switchTheme';
|
|
|
|
|
import { SessionToastContainer } from './SessionToastContainer';
|
|
|
|
|
import { Flex } from './basic/Flex';
|
|
|
|
|
import { SessionButtonType } from './basic/SessionButton';
|
|
|
|
|
import { CopyToClipboardButton } from './buttons/CopyToClipboardButton';
|
|
|
|
|
|
|
|
|
|
const StyledContent = styled.div`
|
|
|
|
|
const StyledContent = styled(Flex)`
|
|
|
|
|
background-color: var(--background-primary-color);
|
|
|
|
|
color: var(--text-primary-color);
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
font-family: var(--font-default);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-size: var(--font-size-sm);
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: var(--text-primary-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
padding: 12px;
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
margin: var(--margins-lg) 0 var(--margins-md);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: var(--text-primary-color);
|
|
|
|
|
.session-button {
|
|
|
|
|
font-size: var(--font-size-sm);
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
min-height: var(--font-size-sm);
|
|
|
|
|
height: font-size: var(--font-size-sm);
|
|
|
|
|
margin-bottom: var(--margins-xs;
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
@ -34,35 +45,63 @@ export const AboutView = () => {
|
|
|
|
|
states.push(window.getAppInstance());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const versionInfo = `v${window.getVersion()}`;
|
|
|
|
|
const commitInfo = `Commit ${window.getCommitHash()}` || '';
|
|
|
|
|
const osInfo = `${window.getOSRelease()}`;
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (window.theme) {
|
|
|
|
|
void switchThemeTo({
|
|
|
|
|
theme: window.theme,
|
|
|
|
|
usePrimaryColor: true,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<SessionTheme>
|
|
|
|
|
<StyledContent>
|
|
|
|
|
<SessionToastContainer />
|
|
|
|
|
<StyledContent
|
|
|
|
|
container={true}
|
|
|
|
|
flexDirection={'column'}
|
|
|
|
|
justifyContent={'center'}
|
|
|
|
|
alignItems={'center'}
|
|
|
|
|
>
|
|
|
|
|
<img src="images/session/session_icon.png" width="250" height="250" alt="session icon" />
|
|
|
|
|
|
|
|
|
|
<div className="version">{`v${window.getVersion()}`}</div>
|
|
|
|
|
<div className="commitHash">{window.getCommitHash() || ''}</div>
|
|
|
|
|
<div className="environment">{states.join(' - ')}</div>
|
|
|
|
|
<div>
|
|
|
|
|
<a href="https://getsession.org">getsession.org</a>
|
|
|
|
|
</div>
|
|
|
|
|
<CopyToClipboardButton
|
|
|
|
|
className="version"
|
|
|
|
|
text={versionInfo}
|
|
|
|
|
copyContent={versionInfo}
|
|
|
|
|
buttonType={SessionButtonType.Simple}
|
|
|
|
|
/>
|
|
|
|
|
<CopyToClipboardButton
|
|
|
|
|
className="commitHash"
|
|
|
|
|
text={commitInfo}
|
|
|
|
|
copyContent={commitInfo}
|
|
|
|
|
buttonType={SessionButtonType.Simple}
|
|
|
|
|
/>
|
|
|
|
|
<CopyToClipboardButton
|
|
|
|
|
className="os"
|
|
|
|
|
text={osInfo}
|
|
|
|
|
copyContent={osInfo}
|
|
|
|
|
buttonType={SessionButtonType.Simple}
|
|
|
|
|
/>
|
|
|
|
|
<CopyToClipboardButton
|
|
|
|
|
className="environment"
|
|
|
|
|
text={states.join(' - ')}
|
|
|
|
|
copyContent={states.join(' - ')}
|
|
|
|
|
buttonType={SessionButtonType.Simple}
|
|
|
|
|
/>
|
|
|
|
|
<a href="https://getsession.org">https://getsession.org</a>
|
|
|
|
|
<br />
|
|
|
|
|
<a className="privacy" href="https://getsession.org/privacy-policy">
|
|
|
|
|
{window.i18n('privacyPolicy')}
|
|
|
|
|
</a>
|
|
|
|
|
<a className="privacy" href="https://getsession.org/terms-of-service/">
|
|
|
|
|
{window.i18n('termsOfService')}
|
|
|
|
|
</a>
|
|
|
|
|
<br />
|
|
|
|
|
<div>
|
|
|
|
|
<a className="privacy" href="https://getsession.org/privacy-policy">
|
|
|
|
|
Privacy Policy
|
|
|
|
|
</a>
|
|
|
|
|
<br />
|
|
|
|
|
<a className="privacy" href="https://getsession.org/terms-of-service/">
|
|
|
|
|
Terms of Service
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</StyledContent>
|
|
|
|
|
</SessionTheme>
|
|
|
|
|
);
|
|
|
|
|