Summary: Converted the Navigation plugin to Sandy, and updated Locations bookmark accordingly. This is a prerequisite step of supporting the bookmarkswidgetin the new AppInspect tab. Updated LocationsButton accordingly, and overal simplified implementation a bit; locationsbutton now reuses the logic of the NavigationPlugin, rather than reimplemting it. This reduces code duplication and also makes sure the state between plugin and location button stays in sync. Made sure that search providers are derived and cached rather than stored, again simplifying logic That being said, the navigation plugin is buggy, but all these things failed before this diff as well: * No events happening when using iOS, despite the plugin being enabled. But these seems to be a long time know issue, looks like it was never implemented * Not sure if the parameterized bookmarks is working correctly * screenshots not always happening at the right time (but fixed a race condition where the wrong bookmark might get updated) * Locations button doesn't show up if the navigation plugin is supported but not enabled (will try to fix in next diff) Would be great if bnelo12 could do some exploratory testing to verify what ought to be working, but currently isn't. Reviewed By: cekkaewnumchai Differential Revision: D24860757 fbshipit-source-id: e4b56072de8c42af2ada0f5bb022cb9f8c04bb47
245 lines
6.9 KiB
TypeScript
245 lines
6.9 KiB
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow strict-local
|
|
*/
|
|
|
|
import {bufferToBlob} from 'flipper';
|
|
import {
|
|
BookmarksSidebar,
|
|
SaveBookmarkDialog,
|
|
SearchBar,
|
|
Timeline,
|
|
RequiredParametersDialog,
|
|
} from './components';
|
|
import {
|
|
removeBookmarkFromDB,
|
|
readBookmarksFromDB,
|
|
writeBookmarkToDB,
|
|
} from './util/indexedDB';
|
|
import {
|
|
appMatchPatternsToAutoCompleteProvider,
|
|
bookmarksToAutoCompleteProvider,
|
|
} from './util/autoCompleteProvider';
|
|
import {getAppMatchPatterns} from './util/appMatchPatterns';
|
|
import {getRequiredParameters, filterOptionalParameters} from './util/uri';
|
|
import {
|
|
Bookmark,
|
|
NavigationEvent,
|
|
AppMatchPattern,
|
|
URI,
|
|
RawNavigationEvent,
|
|
} from './types';
|
|
import React, {useMemo} from 'react';
|
|
import {
|
|
PluginClient,
|
|
createState,
|
|
useValue,
|
|
usePlugin,
|
|
Layout,
|
|
} from 'flipper-plugin';
|
|
|
|
export type State = {
|
|
shouldShowSaveBookmarkDialog: boolean;
|
|
shouldShowURIErrorDialog: boolean;
|
|
saveBookmarkURI: URI | null;
|
|
requiredParameters: Array<string>;
|
|
};
|
|
|
|
type Events = {
|
|
nav_event: RawNavigationEvent;
|
|
};
|
|
|
|
type Methods = {
|
|
navigate_to(params: {url: string}): Promise<void>;
|
|
};
|
|
|
|
export type NavigationPlugin = ReturnType<typeof plugin>;
|
|
|
|
export function plugin(client: PluginClient<Events, Methods>) {
|
|
const bookmarks = createState(new Map<URI, Bookmark>(), {
|
|
persist: 'bookmarks',
|
|
});
|
|
const navigationEvents = createState<NavigationEvent[]>([], {
|
|
persist: 'navigationEvents',
|
|
});
|
|
const appMatchPatterns = createState<AppMatchPattern[]>([], {
|
|
persist: 'appMatchPatterns',
|
|
});
|
|
const currentURI = createState('');
|
|
const shouldShowURIErrorDialog = createState(false);
|
|
const requiredParameters = createState<string[]>([]);
|
|
const shouldShowSaveBookmarkDialog = createState(false);
|
|
const saveBookmarkURI = createState<null | string>(null);
|
|
|
|
client.onMessage('nav_event', async (payload) => {
|
|
const navigationEvent: NavigationEvent = {
|
|
uri: payload.uri === undefined ? null : decodeURIComponent(payload.uri),
|
|
date: payload.date ? new Date(payload.date) : new Date(),
|
|
className: payload.class === undefined ? null : payload.class,
|
|
screenshot: null,
|
|
};
|
|
|
|
if (navigationEvent.uri) currentURI.set(navigationEvent.uri);
|
|
|
|
navigationEvents.update((draft) => {
|
|
draft.unshift(navigationEvent);
|
|
});
|
|
|
|
const screenshot: Buffer = await client.device.realDevice.screenshot();
|
|
const blobURL = URL.createObjectURL(bufferToBlob(screenshot));
|
|
// this process is async, make sure we update the correct one..
|
|
const navigationEventIndex = navigationEvents
|
|
.get()
|
|
.indexOf(navigationEvent);
|
|
if (navigationEventIndex !== -1) {
|
|
navigationEvents.update((draft) => {
|
|
draft[navigationEventIndex].screenshot = blobURL;
|
|
});
|
|
}
|
|
});
|
|
|
|
getAppMatchPatterns(client.appId, client.device.realDevice)
|
|
.then((patterns) => {
|
|
appMatchPatterns.set(patterns);
|
|
})
|
|
.catch((e) => {
|
|
console.error('[Navigation] Failed to find appMatchPatterns', e);
|
|
});
|
|
|
|
readBookmarksFromDB().then((bookmarksData) => {
|
|
bookmarks.set(bookmarksData);
|
|
});
|
|
|
|
function navigateTo(query: string) {
|
|
const filteredQuery = filterOptionalParameters(query);
|
|
currentURI.set(filteredQuery);
|
|
const params = getRequiredParameters(filteredQuery);
|
|
if (params.length === 0) {
|
|
if (client.appName === 'Facebook' && client.device.os === 'iOS') {
|
|
// use custom navigate_to event for Wilde
|
|
client.send('navigate_to', {
|
|
url: filterOptionalParameters(filteredQuery),
|
|
});
|
|
} else {
|
|
client.device.realDevice.navigateToLocation(
|
|
filterOptionalParameters(filteredQuery),
|
|
);
|
|
}
|
|
} else {
|
|
requiredParameters.set(params);
|
|
shouldShowURIErrorDialog.set(true);
|
|
}
|
|
}
|
|
|
|
function onFavorite(uri: string) {
|
|
// TODO: why does this need a dialog?
|
|
shouldShowSaveBookmarkDialog.set(true);
|
|
saveBookmarkURI.set(uri);
|
|
}
|
|
|
|
function addBookmark(bookmark: Bookmark) {
|
|
const newBookmark = {
|
|
uri: bookmark.uri,
|
|
commonName: bookmark.commonName,
|
|
};
|
|
|
|
bookmarks.update((draft) => {
|
|
draft.set(newBookmark.uri, newBookmark);
|
|
});
|
|
writeBookmarkToDB(newBookmark);
|
|
}
|
|
|
|
function removeBookmark(uri: string) {
|
|
bookmarks.update((draft) => {
|
|
draft.delete(uri);
|
|
});
|
|
removeBookmarkFromDB(uri);
|
|
}
|
|
|
|
return {
|
|
navigateTo,
|
|
onFavorite,
|
|
addBookmark,
|
|
removeBookmark,
|
|
bookmarks,
|
|
saveBookmarkURI,
|
|
shouldShowSaveBookmarkDialog,
|
|
shouldShowURIErrorDialog,
|
|
requiredParameters,
|
|
appMatchPatterns,
|
|
navigationEvents,
|
|
currentURI,
|
|
};
|
|
}
|
|
|
|
export function Component() {
|
|
const instance = usePlugin(plugin);
|
|
const bookmarks = useValue(instance.bookmarks);
|
|
const appMatchPatterns = useValue(instance.appMatchPatterns);
|
|
const saveBookmarkURI = useValue(instance.saveBookmarkURI);
|
|
const shouldShowSaveBookmarkDialog = useValue(
|
|
instance.shouldShowSaveBookmarkDialog,
|
|
);
|
|
const shouldShowURIErrorDialog = useValue(instance.shouldShowURIErrorDialog);
|
|
const requiredParameters = useValue(instance.requiredParameters);
|
|
const currentURI = useValue(instance.currentURI);
|
|
const navigationEvents = useValue(instance.navigationEvents);
|
|
|
|
const autoCompleteProviders = useMemo(
|
|
() => [
|
|
bookmarksToAutoCompleteProvider(bookmarks),
|
|
appMatchPatternsToAutoCompleteProvider(appMatchPatterns),
|
|
],
|
|
[bookmarks, appMatchPatterns],
|
|
);
|
|
return (
|
|
<Layout.Container>
|
|
<SearchBar
|
|
providers={autoCompleteProviders}
|
|
bookmarks={bookmarks}
|
|
onNavigate={instance.navigateTo}
|
|
onFavorite={instance.onFavorite}
|
|
uriFromAbove={currentURI}
|
|
/>
|
|
<Timeline
|
|
bookmarks={bookmarks}
|
|
events={navigationEvents}
|
|
onNavigate={instance.navigateTo}
|
|
onFavorite={instance.onFavorite}
|
|
/>
|
|
<BookmarksSidebar
|
|
bookmarks={bookmarks}
|
|
onRemove={instance.removeBookmark}
|
|
onNavigate={instance.navigateTo}
|
|
/>
|
|
<SaveBookmarkDialog
|
|
shouldShow={shouldShowSaveBookmarkDialog}
|
|
uri={saveBookmarkURI}
|
|
onHide={() => {
|
|
instance.shouldShowSaveBookmarkDialog.set(false);
|
|
}}
|
|
edit={saveBookmarkURI != null ? bookmarks.has(saveBookmarkURI) : false}
|
|
onSubmit={instance.addBookmark}
|
|
onRemove={instance.removeBookmark}
|
|
/>
|
|
<RequiredParametersDialog
|
|
shouldShow={shouldShowURIErrorDialog}
|
|
onHide={() => {
|
|
instance.shouldShowURIErrorDialog.set(false);
|
|
}}
|
|
uri={currentURI}
|
|
requiredParameters={requiredParameters}
|
|
onSubmit={instance.navigateTo}
|
|
/>
|
|
</Layout.Container>
|
|
);
|
|
}
|
|
|
|
/* @scarf-info: do not remove, more info: https://fburl.com/scarf */
|
|
/* @scarf-generated: flipper-plugin index.js.template 0bfa32e5-fb15-4705-81f8-86260a1f3f8e */
|