File size: 566 Bytes
48414d2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// This function will be called when the PWA receives a share
function handleShareTarget() {
  const urlParams = new URLSearchParams(window.location.search);
  const sharedUrl = urlParams.get('url') || urlParams.get('text');

  if (sharedUrl) {
    // Redirect to the main page with the shared URL as a parameter
    window.location.href = `/index.html?url=${encodeURIComponent(sharedUrl)}`;
  } else {
    // If no URL is shared, just go to the main page
    window.location.href = '/index.html';
  }
}

// Call the function when the page loads
handleShareTarget();