gdpr-consent
Version:
GDPR banner to comply with the European cookie law. Inspired by tarteaucitronjs.
28 lines (26 loc) • 920 B
text/typescript
import { GDPRConsentUser, ServiceInterface, ServiceLoader } from "../interfaces/index.js";
import { addScript } from "../utils/index.js";
export const signinwithapple = ((user: GDPRConsentUser): ServiceInterface => {
return {
key: "signinwithapple",
type: "other",
name: "Sign In with Apple",
uri: "https://www.apple.com/legal/privacy/en-ww/cookies/",
needConsent: true,
lazyConsent: true,
cookies: [],
js: function () {
if (typeof user.signinwithappleMore === "function") {
addScript(
"https://appleid.cdn-apple.com/appleauth/static/jsapi/appleid/1/en_US/appleid.auth.js",
undefined,
function () {
(user.signinwithappleMore as () => void)();
}
);
} else {
addScript("https://appleid.cdn-apple.com/appleauth/static/jsapi/appleid/1/en_US/appleid.auth.js");
}
},
};
}) as ServiceLoader;