File size: 9,397 Bytes
25f22bf c146841 25f22bf 9d384b6 6219ad4 9d384b6 25f22bf e4de23f 9d384b6 6219ad4 9d384b6 6219ad4 9d384b6 6219ad4 b48b9dd 6219ad4 9d384b6 e4de23f 6219ad4 25f22bf 6219ad4 25f22bf 6219ad4 25f22bf e4de23f 25f22bf c146841 9d384b6 c146841 25f22bf 6219ad4 25f22bf b48b9dd 6219ad4 25f22bf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 |
import React, { useEffect, useState } from 'react';
import { useDispatch, useSelector } from 'react-redux';
import { useLocation, useNavigate } from 'react-router-dom';
import { handleLinkedInCallback, clearLinkedInError, fetchLinkedInAccounts } from '../../store/reducers/linkedinAccountsSlice';
import apiClient from '../../services/apiClient';
const LinkedInCallbackHandler = () => {
const dispatch = useDispatch();
const location = useLocation();
const navigate = useNavigate();
const { oauthLoading, oauthError } = useSelector(state => state.linkedinAccounts);
const [status, setStatus] = useState('processing');
const [message, setMessage] = useState('Processing LinkedIn authentication...');
useEffect(() => {
const handleCallback = async () => {
try {
// Parse URL parameters
const urlParams = new URLSearchParams(location.search);
const error = urlParams.get('error');
const oauthSuccess = urlParams.get('oauth_success');
const accountLinked = urlParams.get('account_linked');
const from = urlParams.get('from');
// DEBUG: Log callback parameters
console.log('π [Frontend] LinkedIn callback handler started');
console.log('π [Frontend] URL parameters:', {
error,
oauthSuccess,
accountLinked,
from
});
// Check if we're coming from LinkedIn OAuth
if (from === 'linkedin') {
if (error) {
console.error('π [Frontend] OAuth error:', error);
setStatus('error');
setMessage(`Authentication failed: ${error}`);
return;
}
if (oauthSuccess === 'true') {
if (accountLinked === 'true') {
console.log('π [Frontend] Account linked successfully!');
setStatus('success');
setMessage('LinkedIn account linked successfully!');
// Dispatch success action to update Redux state
await dispatch(fetchLinkedInAccounts());
// Redirect to accounts page after a short delay
setTimeout(() => {
console.log('π [Frontend] Redirecting to accounts page...');
window.location.href = '/accounts'; // Use direct navigation instead of React Router
}, 2000);
} else {
console.log('π [Frontend] OAuth successful but account not linked');
setStatus('processing');
setMessage('Processing account linking...');
// The backend should handle everything, so we just wait
setTimeout(() => {
setStatus('success');
setMessage('LinkedIn account linked successfully!');
dispatch(fetchLinkedInAccounts());
setTimeout(() => navigate('/sources'), 2000);
}, 1000);
}
return;
}
}
// Fallback: if this looks like an OAuth callback but we don't recognize it
if (location.search.includes('code=') || location.search.includes('error=')) {
console.log('π [Frontend] Unrecognized OAuth callback format');
setStatus('error');
setMessage('Authentication process incomplete. Please try again.');
return;
}
// Normal page load
console.log('π [Frontend] Not a callback URL, normal page load');
} catch (error) {
console.error('π [Frontend] Callback handler error:', error);
console.error('π [Frontend] Error details:', {
message: error.message,
response: error.response?.data,
status: error.response?.status
});
setStatus('error');
setMessage('An error occurred during authentication');
}
};
// Check if we're on the callback URL
if (location.search.includes('code=') || location.search.includes('error=') || location.search.includes('oauth_success=')) {
console.log('π [Frontend] Detected callback URL, processing...');
handleCallback();
} else {
console.log('π [Frontend] Not a callback URL, normal page load');
}
}, [dispatch, location, navigate]);
const handleRetry = () => {
dispatch(clearLinkedInError());
navigate('/accounts');
};
return (
<div className="linkedin-callback-handler">
<div className="callback-container">
<div className="callback-content">
{status === 'processing' && (
<div className="processing-state">
<div className="spinner"></div>
<h2>{message}</h2>
<p>Please wait while we complete the authentication process...</p>
</div>
)}
{status === 'success' && (
<div className="success-state">
<div className="success-icon">β</div>
<h2>{message}</h2>
<p>Redirecting to your accounts...</p>
</div>
)}
{status === 'error' && (
<div className="error-state">
<div className="error-icon">β</div>
<h2>{message}</h2>
<p>There was an issue with the LinkedIn authentication process.</p>
<div className="error-actions">
<button onClick={handleRetry} className="btn btn-primary">
Try Again
</button>
<button onClick={() => window.location.href = '/accounts'} className="btn btn-secondary">
Go to Accounts
</button>
</div>
</div>
)}
</div>
</div>
<style jsx>{`
.linkedin-callback-handler {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
padding: 20px;
}
.callback-container {
background: white;
border-radius: 12px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
padding: 40px;
max-width: 500px;
width: 100%;
text-align: center;
}
.callback-content {
min-height: 200px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.processing-state,
.success-state,
.error-state {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.spinner {
width: 48px;
height: 48px;
border: 4px solid #f3f3f3;
border-top: 4px solid #910029;
border-radius: 50%;
animation: spin 1s linear infinite;
margin-bottom: 24px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.success-icon {
width: 64px;
height: 64px;
background: #28a745;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 32px;
font-weight: bold;
margin-bottom: 24px;
}
.error-icon {
width: 64px;
height: 64px;
background: #dc3545;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 32px;
font-weight: bold;
margin-bottom: 24px;
}
.processing-state h2,
.success-state h2,
.error-state h2 {
margin: 0 0 16px 0;
font-size: 24px;
font-weight: 600;
color: #333;
}
.processing-state p,
.success-state p,
.error-state p {
margin: 0 0 24px 0;
color: #666;
font-size: 16px;
line-height: 1.5;
}
.error-actions {
display: flex;
gap: 12px;
justify-content: center;
}
.btn {
padding: 12px 24px;
border: none;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
text-decoration: none;
display: inline-block;
}
.btn:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.btn-primary {
background-color: #910029;
color: white;
}
.btn-primary:hover:not(:disabled) {
background-color: #7a0023;
}
.btn-secondary {
background-color: #6c757d;
color: white;
}
.btn-secondary:hover:not(:disabled) {
background-color: #5a6268;
}
@media (max-width: 600px) {
.callback-container {
padding: 24px;
margin: 10px;
}
.error-actions {
flex-direction: column;
width: 100%;
}
.btn {
width: 100%;
}
}
`}</style>
</div>
);
};
export default LinkedInCallbackHandler; |