39 lines
992 B
TypeScript
39 lines
992 B
TypeScript
import {PrivacyLink} from '@holllo/preact-components';
|
|
import {html} from 'htm/preact';
|
|
import {Component} from 'preact';
|
|
import type browser from 'webextension-polyfill';
|
|
|
|
type Props = {
|
|
manifest: browser.Manifest.ManifestBase;
|
|
};
|
|
|
|
export class PageFooter extends Component<Props> {
|
|
render() {
|
|
const {manifest} = this.props;
|
|
const version = manifest.version;
|
|
|
|
const donateAttributes = {
|
|
href: 'https://liberapay.com/Holllo',
|
|
};
|
|
const donateLink = html`
|
|
<${PrivacyLink} attributes="${donateAttributes}">Donate<//>
|
|
`;
|
|
|
|
const versionLinkAttributes = {
|
|
href: `https://git.bauke.xyz/Holllo/fangs/releases/tag/${version}`,
|
|
};
|
|
const versionLink = html`
|
|
<${PrivacyLink} attributes=${versionLinkAttributes}>v${version}<//>
|
|
`;
|
|
|
|
return html`
|
|
<footer class="page-footer">
|
|
<p>
|
|
${donateLink} 💖 ${versionLink} © Holllo — Free and open-source,
|
|
forever.
|
|
</p>
|
|
</footer>
|
|
`;
|
|
}
|
|
}
|