Socket
Socket
Sign inDemoInstall

react-apple-login

Package Overview
Dependencies
8
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.14 to 1.1.0

2

dist/index.d.ts

@@ -1,2 +0,1 @@

/// <reference types="react" />
export interface AppleLoginProps {

@@ -11,2 +10,3 @@ clientId: string;

nonce?: string;
usePopup?: string;
designProp?: {

@@ -13,0 +13,0 @@ height?: number;

@@ -1,3 +0,55 @@

import React, { useEffect } from 'react';
import React, { useEffect, useState } from 'react';
/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */
function __awaiter(thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
}
function __generator(thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (_) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
}
var generateQueryString = function (q) {

@@ -21,41 +73,132 @@ var queryString = '';

// Hook
var cachedScripts = [];
var useScript = function (src) {
// Keeping track of script loaded and error state
var _a = useState({
loaded: false,
error: false,
}), state = _a[0], setState = _a[1];
useEffect(function () {
// If cachedScripts array already includes src that means another instance ...
// ... of this hook already loaded this script, so no need to load again.
if (cachedScripts.includes(src)) {
setState({
loaded: true,
error: false,
});
return function () { };
}
else {
cachedScripts.push(src);
// Create script
var script_1 = document.createElement('script');
script_1.src = src;
script_1.async = true;
// Script event listener callbacks for load and error
var onScriptLoad_1 = function () {
setState({
loaded: true,
error: false,
});
};
var onScriptError_1 = function () {
// Remove from cachedScripts we can try loading again
var index = cachedScripts.indexOf(src);
if (index >= 0)
cachedScripts.splice(index, 1);
script_1.remove();
setState({
loaded: true,
error: true,
});
};
script_1.addEventListener('load', onScriptLoad_1);
script_1.addEventListener('error', onScriptError_1);
// Add script to document body
document.body.appendChild(script_1);
// Remove event listeners on cleanup
return function () {
script_1.removeEventListener('load', onScriptLoad_1);
script_1.removeEventListener('error', onScriptError_1);
};
}
}, [src]); // Only re-run effect if script src changes
return [state.loaded, state.error];
};
var _this = undefined;
var AppleLogin = function (props) {
var clientId = props.clientId, redirectURI = props.redirectURI, _a = props.state, state = _a === void 0 ? "" : _a, render = props.render, _b = props.designProp, designProp = _b === void 0 ? {} : _b, _c = props.responseMode, responseMode = _c === void 0 ? "query" : _c, _d = props.responseType, responseType = _d === void 0 ? "code" : _d, nonce = props.nonce, callback = props.callback, scope = props.scope, _e = props.autoLoad, autoLoad = _e === void 0 ? false : _e;
var clientId = props.clientId, redirectURI = props.redirectURI, _a = props.state, state = _a === void 0 ? "" : _a, render = props.render, _b = props.designProp, designProp = _b === void 0 ? {
locale: "en_US"
} : _b, _c = props.responseMode, responseMode = _c === void 0 ? "query" : _c, _d = props.responseType, responseType = _d === void 0 ? "code" : _d, nonce = props.nonce, callback = props.callback, scope = props.scope, _e = props.autoLoad, autoLoad = _e === void 0 ? false : _e, _f = props.usePopup, usePopup = _f === void 0 ? false : _f;
var loaded = useScript("https://appleid.cdn-apple.com/appleauth/static/jsapi/appleid/1/" + ((props &&
props.designProp &&
props.designProp.locale) ||
"en_US") + "/appleid.auth.js")[0];
var onClick = function (e) {
if (e === void 0) { e = null; }
if (e) {
e.preventDefault();
}
window.location.href = "https://appleid.apple.com/auth/authorize?" + generateQueryString({
response_type: responseType,
response_mode: responseMode,
client_id: clientId,
redirect_uri: encodeURIComponent(redirectURI),
state: state,
nonce: nonce,
scope: responseMode === "query" ? "" : scope
return __awaiter(_this, void 0, void 0, function () {
var data, err_1;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
if (e) {
e.preventDefault();
}
if (!!usePopup) return [3 /*break*/, 1];
window.location.href = "https://appleid.apple.com/auth/authorize?" + generateQueryString({
response_type: responseType,
response_mode: responseMode,
client_id: clientId,
redirect_uri: encodeURIComponent(redirectURI),
state: state,
nonce: nonce,
scope: responseMode === "query" ? "" : scope
});
return [3 /*break*/, 4];
case 1:
_a.trys.push([1, 3, , 4]);
return [4 /*yield*/, AppleID.auth.signIn()];
case 2:
data = _a.sent();
if (typeof callback === "function" && data) {
callback(data);
}
return [3 /*break*/, 4];
case 3:
err_1 = _a.sent();
if (typeof callback === "function") {
callback({ error: err_1 });
}
return [3 /*break*/, 4];
case 4: return [2 /*return*/];
}
});
});
};
useEffect(function () {
if (autoLoad) {
onClick();
}
if (typeof callback === "function" &&
responseMode === "query" &&
responseType === "code" &&
window &&
window.location) {
var match = void 0;
var pl_1 = /\+/g, // Regex for replacing addition symbol with a space
search = /([^&=]+)=?([^&]*)/g, decode = function (s) {
return decodeURIComponent(s.replace(pl_1, " "));
}, query = window.location.search.substring(1);
var urlParams = {};
while ((match = search.exec(query))) {
urlParams[decode(match[1])] = decode(match[2]);
if (!usePopup) {
if (autoLoad) {
onClick();
}
if (urlParams["code"]) {
callback({
code: urlParams["code"]
});
if (typeof callback === "function" &&
responseMode === "query" &&
responseType === "code" &&
window &&
window.location) {
var match = void 0;
var pl_1 = /\+/g, // Regex for replacing addition symbol with a space
search = /([^&=]+)=?([^&]*)/g, decode = function (s) {
return decodeURIComponent(s.replace(pl_1, " "));
}, query = window.location.search.substring(1);
var urlParams = {};
while ((match = search.exec(query))) {
urlParams[decode(match[1])] = decode(match[2]);
}
if (urlParams["code"]) {
callback({
code: urlParams["code"]
});
}
}

@@ -65,2 +208,19 @@ }

}, []);
useEffect(function () {
if (usePopup && loaded) {
AppleID.auth.init({
clientId: clientId,
scope: scope,
redirectURI: location.protocol + "//" + location.host,
state: state,
nonce: nonce,
usePopup: usePopup
});
// Call on auto load.
if (autoLoad) {
onClick();
}
}
return function () { };
}, [loaded, usePopup]);
if (typeof render === "function") {

@@ -67,0 +227,0 @@ return render({ onClick: onClick });

@@ -10,2 +10,54 @@ 'use strict';

/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */
function __awaiter(thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
}
function __generator(thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (_) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
}
var generateQueryString = function (q) {

@@ -29,41 +81,132 @@ var queryString = '';

// Hook
var cachedScripts = [];
var useScript = function (src) {
// Keeping track of script loaded and error state
var _a = React.useState({
loaded: false,
error: false,
}), state = _a[0], setState = _a[1];
React.useEffect(function () {
// If cachedScripts array already includes src that means another instance ...
// ... of this hook already loaded this script, so no need to load again.
if (cachedScripts.includes(src)) {
setState({
loaded: true,
error: false,
});
return function () { };
}
else {
cachedScripts.push(src);
// Create script
var script_1 = document.createElement('script');
script_1.src = src;
script_1.async = true;
// Script event listener callbacks for load and error
var onScriptLoad_1 = function () {
setState({
loaded: true,
error: false,
});
};
var onScriptError_1 = function () {
// Remove from cachedScripts we can try loading again
var index = cachedScripts.indexOf(src);
if (index >= 0)
cachedScripts.splice(index, 1);
script_1.remove();
setState({
loaded: true,
error: true,
});
};
script_1.addEventListener('load', onScriptLoad_1);
script_1.addEventListener('error', onScriptError_1);
// Add script to document body
document.body.appendChild(script_1);
// Remove event listeners on cleanup
return function () {
script_1.removeEventListener('load', onScriptLoad_1);
script_1.removeEventListener('error', onScriptError_1);
};
}
}, [src]); // Only re-run effect if script src changes
return [state.loaded, state.error];
};
var _this = undefined;
var AppleLogin = function (props) {
var clientId = props.clientId, redirectURI = props.redirectURI, _a = props.state, state = _a === void 0 ? "" : _a, render = props.render, _b = props.designProp, designProp = _b === void 0 ? {} : _b, _c = props.responseMode, responseMode = _c === void 0 ? "query" : _c, _d = props.responseType, responseType = _d === void 0 ? "code" : _d, nonce = props.nonce, callback = props.callback, scope = props.scope, _e = props.autoLoad, autoLoad = _e === void 0 ? false : _e;
var clientId = props.clientId, redirectURI = props.redirectURI, _a = props.state, state = _a === void 0 ? "" : _a, render = props.render, _b = props.designProp, designProp = _b === void 0 ? {
locale: "en_US"
} : _b, _c = props.responseMode, responseMode = _c === void 0 ? "query" : _c, _d = props.responseType, responseType = _d === void 0 ? "code" : _d, nonce = props.nonce, callback = props.callback, scope = props.scope, _e = props.autoLoad, autoLoad = _e === void 0 ? false : _e, _f = props.usePopup, usePopup = _f === void 0 ? false : _f;
var loaded = useScript("https://appleid.cdn-apple.com/appleauth/static/jsapi/appleid/1/" + ((props &&
props.designProp &&
props.designProp.locale) ||
"en_US") + "/appleid.auth.js")[0];
var onClick = function (e) {
if (e === void 0) { e = null; }
if (e) {
e.preventDefault();
}
window.location.href = "https://appleid.apple.com/auth/authorize?" + generateQueryString({
response_type: responseType,
response_mode: responseMode,
client_id: clientId,
redirect_uri: encodeURIComponent(redirectURI),
state: state,
nonce: nonce,
scope: responseMode === "query" ? "" : scope
return __awaiter(_this, void 0, void 0, function () {
var data, err_1;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
if (e) {
e.preventDefault();
}
if (!!usePopup) return [3 /*break*/, 1];
window.location.href = "https://appleid.apple.com/auth/authorize?" + generateQueryString({
response_type: responseType,
response_mode: responseMode,
client_id: clientId,
redirect_uri: encodeURIComponent(redirectURI),
state: state,
nonce: nonce,
scope: responseMode === "query" ? "" : scope
});
return [3 /*break*/, 4];
case 1:
_a.trys.push([1, 3, , 4]);
return [4 /*yield*/, AppleID.auth.signIn()];
case 2:
data = _a.sent();
if (typeof callback === "function" && data) {
callback(data);
}
return [3 /*break*/, 4];
case 3:
err_1 = _a.sent();
if (typeof callback === "function") {
callback({ error: err_1 });
}
return [3 /*break*/, 4];
case 4: return [2 /*return*/];
}
});
});
};
React.useEffect(function () {
if (autoLoad) {
onClick();
}
if (typeof callback === "function" &&
responseMode === "query" &&
responseType === "code" &&
window &&
window.location) {
var match = void 0;
var pl_1 = /\+/g, // Regex for replacing addition symbol with a space
search = /([^&=]+)=?([^&]*)/g, decode = function (s) {
return decodeURIComponent(s.replace(pl_1, " "));
}, query = window.location.search.substring(1);
var urlParams = {};
while ((match = search.exec(query))) {
urlParams[decode(match[1])] = decode(match[2]);
if (!usePopup) {
if (autoLoad) {
onClick();
}
if (urlParams["code"]) {
callback({
code: urlParams["code"]
});
if (typeof callback === "function" &&
responseMode === "query" &&
responseType === "code" &&
window &&
window.location) {
var match = void 0;
var pl_1 = /\+/g, // Regex for replacing addition symbol with a space
search = /([^&=]+)=?([^&]*)/g, decode = function (s) {
return decodeURIComponent(s.replace(pl_1, " "));
}, query = window.location.search.substring(1);
var urlParams = {};
while ((match = search.exec(query))) {
urlParams[decode(match[1])] = decode(match[2]);
}
if (urlParams["code"]) {
callback({
code: urlParams["code"]
});
}
}

@@ -73,2 +216,19 @@ }

}, []);
React.useEffect(function () {
if (usePopup && loaded) {
AppleID.auth.init({
clientId: clientId,
scope: scope,
redirectURI: location.protocol + "//" + location.host,
state: state,
nonce: nonce,
usePopup: usePopup
});
// Call on auto load.
if (autoLoad) {
onClick();
}
}
return function () { };
}, [loaded, usePopup]);
if (typeof render === "function") {

@@ -75,0 +235,0 @@ return render({ onClick: onClick });

{
"name": "react-apple-login",
"version": "1.0.14",
"version": "1.1.0",
"description": "A Apple Log-in Component for React",

@@ -5,0 +5,0 @@ "author": "Mayank Patel <patelmayankce@gmail.com>",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc