mirror of
https://github.com/owncast/owncast.git
synced 2024-11-26 14:56:14 +03:00
e50b23d081
* chore(js): be stricter about dead code warnings * chore(js): remove dead code and unused exports * rebase * chore: remove unused files * chore(deps): remove unused prop-types dep * chore(js): remove unused function * chore(deps): remove + check unused deps * chore(js): remove unused exports. Closes #3036
35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
import { FC } from 'react';
|
|
import { useRecoilValue } from 'recoil';
|
|
import styles from './Footer.module.scss';
|
|
import { ServerStatus } from '../../../interfaces/server-status.model';
|
|
import { serverStatusState } from '../../stores/ClientConfigStore';
|
|
|
|
export type FooterProps = {
|
|
dynamicPaddingValue?: string;
|
|
};
|
|
|
|
export const Footer: FC<FooterProps> = ({ dynamicPaddingValue }) => {
|
|
const clientStatus = useRecoilValue<ServerStatus>(serverStatusState);
|
|
const { versionNumber } = clientStatus;
|
|
const dynamicPaddingStyle = dynamicPaddingValue
|
|
? { paddingRight: `calc(${dynamicPaddingValue} + var(--footer-padding-x)` }
|
|
: null;
|
|
return (
|
|
<footer className={styles.footer} id="footer" style={dynamicPaddingStyle}>
|
|
<span>
|
|
Powered by <a href="https://owncast.online">Owncast v{versionNumber}</a>
|
|
</span>
|
|
<span className={styles.links}>
|
|
<a href="https://owncast.online/docs" target="_blank" rel="noreferrer">
|
|
Documentation
|
|
</a>
|
|
<a href="https://owncast.online/help" target="_blank" rel="noreferrer">
|
|
Contribute
|
|
</a>
|
|
<a href="https://github.com/owncast/owncast" target="_blank" rel="noreferrer">
|
|
Source
|
|
</a>
|
|
</span>
|
|
</footer>
|
|
);
|
|
};
|