blob: e1e1193205bdc9229eb279695a55ca019cac36a1 [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import React from 'react';
import styled from 'styled-components';
import store from '../../store';
import QueryInput from '../../components/QueryInput';
import TextButton from '../../components/TextButton';
import CodePreview from '../../components/CodePreview';
import AdvancedOptions from './AdvancedOptions';
import { State } from '../../store/types';
import { dispatch } from '../../libs/reduced-state';
import { useReducedState } from '../../libs/reduced-state/useReducedState';
import { SET_QUERY_INPUT, TOGGLE_SHOULD_SHOW_ADVANCED_OPTIONS } from '../../store/actions';
const ExpandableAdvancedOptionsWrapper = styled.div<{ $isExpanded: boolean }>`
max-height: ${({ $isExpanded }) => ($isExpanded ? '240px' : '0')};
box-shadow: inset white 0 0 10px 0;
overflow: hidden;
transition: 0.5s;
`;
const QueryFormatter = () => {
const state = useReducedState<State>(store);
return (
<div>
<QueryInput value={state.queryInput} onChange={({ target }) => dispatch(SET_QUERY_INPUT, target.value)} />
<TextButton
label={state.shouldShowAdvancedOptions ? 'Hide advanced options' : 'Show advanced options'}
onClick={() => dispatch(TOGGLE_SHOULD_SHOW_ADVANCED_OPTIONS)}
/>
<ExpandableAdvancedOptionsWrapper $isExpanded={state.shouldShowAdvancedOptions}>
<AdvancedOptions />
</ExpandableAdvancedOptionsWrapper>
{state.queryOutput ? <CodePreview maxLineLength={state.maxLineLength}>{state.queryOutput}</CodePreview> : null}
</div>
);
};
export default QueryFormatter;