/* ============================================================================ * Copyright (c) Palo Alto Networks * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * ========================================================================== */ import React from "react"; import FormItem from "@theme/ApiExplorer/FormItem"; import FormSelect from "@theme/ApiExplorer/FormSelect"; import { useTypedDispatch, useTypedSelector } from "@theme/ApiItem/hooks"; import { setContentType } from "./slice"; import { clearEncodingSelection } from "@theme/ApiExplorer/EncodingSelection/slice"; function ContentType() { const value = useTypedSelector((state: any) => state.contentType.value); const options = useTypedSelector((state: any) => state.contentType.options); const dispatch = useTypedDispatch(); if (options.length <= 1) { return null; } return ( ) => { dispatch(setContentType(e.target.value)); dispatch(clearEncodingSelection()); }} /> ); } export default ContentType;