Refactoring intent receivers for geo: locations
This commit is contained in:
parent
d5a8118c2a
commit
c3c93139ed
|
@ -92,21 +92,13 @@ const Map: Component = () => {
|
|||
);
|
||||
window.plugins.intentShim.onIntent(function (intent: any) {
|
||||
console.log({ caller: 'Intent receiver', intent });
|
||||
if (receiveIntent(intent)) {
|
||||
if (receiveIntent(intent, navigate)) {
|
||||
return;
|
||||
}
|
||||
if (intent.action === 'android.intent.action.VIEW') {
|
||||
const url = new URL(intent.data);
|
||||
console.log({ caller: 'Intent receiver', intent, url });
|
||||
if (url.protocol === 'geo:') {
|
||||
const q = url.search;
|
||||
const [, lat, lon] = q.match(/q=([0-9.-]+),([0-9.-]+)/);
|
||||
console.log({ caller: 'Intent receiver', intent, url, lat, lon });
|
||||
findLocation(navigate, [lon, lat]);
|
||||
} else if (
|
||||
url.protocol === 'https:' &&
|
||||
url.hostname === 'web.dyomedea.app'
|
||||
) {
|
||||
if (url.protocol === 'https:' && url.hostname === 'web.dyomedea.app') {
|
||||
location.hash = url.hash;
|
||||
location.pathname = url.pathname;
|
||||
}
|
||||
|
|
|
@ -0,0 +1,30 @@
|
|||
import { findLocation } from '../../components/finder';
|
||||
|
||||
const ACCEPTED_ACTIONS = ['android.intent.action.VIEW'];
|
||||
|
||||
const ACCEPTED_PROTOCOLS = ['geo:'];
|
||||
|
||||
export const geoLocationReceiver = (
|
||||
intent: any,
|
||||
url: URL | undefined,
|
||||
navigate: any
|
||||
) => {
|
||||
if (!ACCEPTED_ACTIONS.includes(intent.action)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!url) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!ACCEPTED_PROTOCOLS.includes(url.protocol)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const q = url.search;
|
||||
const [, lat, lon] = q.match(/q=([0-9.-]+),([0-9.-]+)/);
|
||||
console.log({ caller: 'geoLocationReceiver', intent, url, lat, lon });
|
||||
findLocation(navigate, [lon, lat]);
|
||||
|
||||
return true;
|
||||
};
|
|
@ -16,7 +16,11 @@ const ACCEPTED_TYPES = [
|
|||
'image/jpeg',
|
||||
];
|
||||
|
||||
export const gpxReceiver = (intent: any, url: URL | undefined) => {
|
||||
export const gpxReceiver = (
|
||||
intent: any,
|
||||
url: URL | undefined,
|
||||
navigate: any
|
||||
) => {
|
||||
if (!ACCEPTED_ACTIONS.includes(intent.action)) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
import { geoLocationReceiver } from './geo-location';
|
||||
import { gpxReceiver } from './gpx-receiver';
|
||||
import { invitationReceiver } from './invitation-receiver';
|
||||
|
||||
const receivers = {
|
||||
invitationReceiver,
|
||||
gpxReceiver,
|
||||
geoLocationReceiver,
|
||||
};
|
||||
|
||||
export const receiveIntent = (intent: any) => {
|
||||
export const receiveIntent = (intent: any, navigate: any) => {
|
||||
let url: URL | undefined;
|
||||
try {
|
||||
url = new URL(
|
||||
|
@ -19,7 +21,7 @@ export const receiveIntent = (intent: any) => {
|
|||
}
|
||||
|
||||
const found = Object.values(receivers).some((receiver) =>
|
||||
receiver(intent, url)
|
||||
receiver(intent, url, navigate)
|
||||
);
|
||||
|
||||
return found;
|
||||
|
|
|
@ -4,7 +4,11 @@ const ACCEPTED_ACTIONS = ['android.intent.action.VIEW'];
|
|||
|
||||
const ACCEPTED_PROTOCOLS = ['geo:'];
|
||||
|
||||
export const invitationReceiver = (intent: any, url: URL | undefined) => {
|
||||
export const invitationReceiver = (
|
||||
intent: any,
|
||||
url: URL | undefined,
|
||||
navigate: any
|
||||
) => {
|
||||
if (!ACCEPTED_ACTIONS.includes(intent.action)) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue