/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-devtools-shared/src/devtools/views/context.js
55 строк
2 KB
Jan Kassens
Upgrade prettier (#26081)
31 янв 2023, 16:25
Не верифицирован
31 янв 2023, 16:25
6b30832
Код
Авторство
О чём код?
/** * 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. * * @flow */ import type {ReactContext} from 'shared/ReactTypes'; import {createContext} from 'react'; import Store from '../store'; import type {ViewAttributeSource} from 'react-devtools-shared/src/devtools/views/DevTools'; import type {FrontendBridge} from 'react-devtools-shared/src/bridge'; export const BridgeContext: ReactContext<FrontendBridge> = createContext<FrontendBridge>(((null: any): FrontendBridge)); BridgeContext.displayName = 'BridgeContext'; export const StoreContext: ReactContext<Store> = createContext<Store>( ((null: any): Store), ); StoreContext.displayName = 'StoreContext'; export type ContextMenuContextType = { isEnabledForInspectedElement: boolean, viewAttributeSourceFunction: ViewAttributeSource | null, }; export const ContextMenuContext: ReactContext<ContextMenuContextType> = createContext<ContextMenuContextType>({ isEnabledForInspectedElement: false, viewAttributeSourceFunction: null, }); ContextMenuContext.displayName = 'ContextMenuContext'; export type OptionsContextType = { readOnly: boolean, hideSettings: boolean, hideToggleErrorAction: boolean, hideToggleSuspenseAction: boolean, hideLogAction: boolean, hideViewSourceAction: boolean, }; export const OptionsContext: ReactContext<OptionsContextType> = createContext<OptionsContextType>({ readOnly: false, hideSettings: false, hideToggleErrorAction: false, hideToggleSuspenseAction: false, hideLogAction: false, hideViewSourceAction: false, });