queue/source/utilities/components/page-footer.ts

27 lines
668 B
TypeScript
Raw Normal View History

2020-11-11 17:17:37 +00:00
import {html} from 'htm/preact';
import {Link, QComponent, QManifest, Settings} from '../..';
2020-11-11 17:17:37 +00:00
type FooterProps = {
manifest: QManifest;
showVersionUpdated: boolean;
2020-11-11 17:17:37 +00:00
};
export function PageFooter(props: FooterProps): QComponent {
const version = props.manifest.version;
const versionLink = html`<${Link}
text="v${version}"
url="https://github.com/Holllo/queue/releases/tag/${version}"
/>`;
const versionUpdated = props.showVersionUpdated ? 'Updated to' : '';
2020-11-11 17:17:37 +00:00
return html`
<footer class="page-footer">
<p>
${versionUpdated} ${versionLink} 🄯 Holllo Free and open-source,
forever.
2020-11-11 17:17:37 +00:00
</p>
</footer>
`;
}