Summary: To avoid showing the Ugly spinner in the context menu as well as a better UX we prefetch the IDE resolved path. It was important to limit the concurrency of the running arc jobs otherwise lots of bad things happen and the whole machine stalls out. The general idea is as the frame comes off the wire we send them to react query to prefetch. by setting the cache time sending the same key twice will not result in 2 fetches, so we dont need to worry about deduplication on our side Reviewed By: antonk52 Differential Revision: D47210292 fbshipit-source-id: 4a1d8efdfae754c1a73c6a868b02d1f3a0a5b567
23 lines
490 B
TypeScript
23 lines
490 B
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
import React from 'react';
|
|
|
|
import {UINode} from '../../types';
|
|
|
|
export async function prefetchSourceFileLocation(_: UINode) {}
|
|
|
|
export function IDEContextMenuItems(_: {node: UINode}) {
|
|
return <></>;
|
|
}
|
|
|
|
export function BigGrepContextMenuItems(_: {node: UINode}) {
|
|
return <></>;
|
|
}
|