mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-15 19:10:47 +02:00
150 lines
4.9 KiB
TypeScript
150 lines
4.9 KiB
TypeScript
import { Flex } from '@mantine/core';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useCookieConsent } from '@app/hooks/useCookieConsent';
|
|
import { useFooterInfo } from '@app/hooks/useFooterInfo';
|
|
|
|
interface FooterProps {
|
|
privacyPolicy?: string;
|
|
termsAndConditions?: string;
|
|
accessibilityStatement?: string;
|
|
cookiePolicy?: string;
|
|
impressum?: string;
|
|
analyticsEnabled?: boolean;
|
|
forceLightMode?: boolean;
|
|
}
|
|
|
|
export default function Footer({
|
|
privacyPolicy,
|
|
termsAndConditions,
|
|
accessibilityStatement,
|
|
cookiePolicy,
|
|
impressum,
|
|
analyticsEnabled,
|
|
forceLightMode = false
|
|
}: FooterProps) {
|
|
const { t } = useTranslation();
|
|
const { footerInfo } = useFooterInfo();
|
|
|
|
// Use props if provided, otherwise fall back to fetched footer info
|
|
const finalAnalyticsEnabled = analyticsEnabled ?? footerInfo?.analyticsEnabled ?? false;
|
|
const finalPrivacyPolicy = privacyPolicy ?? footerInfo?.privacyPolicy;
|
|
const finalTermsAndConditions = termsAndConditions ?? footerInfo?.termsAndConditions;
|
|
const finalAccessibilityStatement = accessibilityStatement ?? footerInfo?.accessibilityStatement;
|
|
const finalCookiePolicy = cookiePolicy ?? footerInfo?.cookiePolicy;
|
|
const finalImpressum = impressum ?? footerInfo?.impressum;
|
|
|
|
const { showCookiePreferences } = useCookieConsent({ analyticsEnabled: finalAnalyticsEnabled, forceLightMode });
|
|
|
|
// Default URLs
|
|
const defaultTermsUrl = "https://www.stirling.com/legal/terms-of-service";
|
|
const defaultPrivacyUrl = "https://www.stirling.com/legal/privacy-policy";
|
|
const defaultAccessibilityUrl = "https://www.stirling.com/accessibility";
|
|
|
|
// Use provided URLs or fall back to defaults
|
|
const finalTermsUrl = finalTermsAndConditions || defaultTermsUrl;
|
|
const finalPrivacyUrl = finalPrivacyPolicy || defaultPrivacyUrl;
|
|
const finalAccessibilityUrl = finalAccessibilityStatement || defaultAccessibilityUrl;
|
|
|
|
// Helper to check if a value is valid (not null/undefined/empty string)
|
|
const isValidLink = (link?: string) => link && link.trim().length > 0;
|
|
|
|
return (
|
|
<div style={{
|
|
height: 'var(--footer-height)',
|
|
backgroundColor: forceLightMode ? '#f1f3f5' : 'var(--mantine-color-gray-1)',
|
|
borderTop: forceLightMode ? '1px solid #e9ecef' : '1px solid var(--mantine-color-gray-2)',
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
justifyContent: 'center',
|
|
}}>
|
|
<Flex gap="md"
|
|
justify="center"
|
|
align="center"
|
|
direction="row"
|
|
style={{
|
|
fontSize: '0.75rem',
|
|
color: forceLightMode ? '#495057' : undefined
|
|
}}>
|
|
<a
|
|
className="footer-link px-3"
|
|
id="survey"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href="https://stirlingpdf.info/s/cm28y3niq000o56dv7liv8wsu"
|
|
>
|
|
{t('survey.nav', 'Survey')}
|
|
</a>
|
|
<a
|
|
className="footer-link px-3"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href={finalPrivacyUrl}
|
|
>
|
|
{t('legal.privacy', 'Privacy Policy')}
|
|
</a>
|
|
<a
|
|
className="footer-link px-3"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href={finalTermsUrl}
|
|
>
|
|
{t('legal.terms', 'Terms and Conditions')}
|
|
</a>
|
|
<a
|
|
className="footer-link px-3"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href="https://discord.gg/Cn8pWhQRxZ"
|
|
>
|
|
{t('footer.discord', 'Discord')}
|
|
</a>
|
|
<a
|
|
className="footer-link px-3"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href="https://github.com/Stirling-Tools/Stirling-PDF"
|
|
>
|
|
{t('footer.issues', 'GitHub')}
|
|
</a>
|
|
<a
|
|
className="footer-link px-3"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href={finalAccessibilityUrl}
|
|
>
|
|
{t('legal.accessibility', 'Accessibility')}
|
|
</a>
|
|
{isValidLink(finalCookiePolicy) && (
|
|
<a
|
|
className="footer-link px-3"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href={finalCookiePolicy}
|
|
>
|
|
{t('legal.cookie', 'Cookie Policy')}
|
|
</a>
|
|
)}
|
|
{isValidLink(finalImpressum) && (
|
|
<a
|
|
className="footer-link px-3"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href={finalImpressum}
|
|
>
|
|
{t('legal.impressum', 'Impressum')}
|
|
</a>
|
|
)}
|
|
{finalAnalyticsEnabled && (
|
|
<button
|
|
className="footer-link px-3"
|
|
id="cookieBanner"
|
|
onClick={showCookiePreferences}
|
|
>
|
|
{t('legal.showCookieBanner', 'Cookie Preferences')}
|
|
</button>
|
|
)}
|
|
</Flex>
|
|
</div>
|
|
);
|
|
}
|