suddjian commented on a change in pull request #9051: [explore] Modal to edit chart properties URL: https://github.com/apache/incubator-superset/pull/9051#discussion_r373592116
########## File path: superset/assets/src/explore/components/PropertiesModal.jsx ########## @@ -0,0 +1,241 @@ +/** + * 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, { useState, useEffect, useRef } from 'react'; +import { connect } from 'react-redux'; +import { bindActionCreators } from 'redux'; +import { + Button, + Modal, + Row, + Col, + FormControl, + FormGroup, +} from 'react-bootstrap'; +import Dialog from 'react-bootstrap-dialog'; +import Select from 'react-select'; +import { t } from '@superset-ui/translation'; +import { SupersetClient } from '@superset-ui/connection'; + +import { sliceUpdated } from '../actions/exploreActions'; +import getClientErrorObject from '../../utils/getClientErrorObject'; + +function PropertiesModalWrapper({ show, onHide, animation, slice, onSave }) { + // The wrapper is a separate component so that hooks only run when the modal opens + return ( + <Modal show={show} onHide={onHide} animation={animation} bsSize="large"> + <PropertiesModal slice={slice} onHide={onHide} onSave={onSave} /> + </Modal> + ); +} + +function PropertiesModal({ slice, onHide, onSave }) { + const [submitting, setSubmitting] = useState(false); + const errorDialog = useRef(); + + function showError({ error, statusText }) { + errorDialog.current.show({ + title: 'Error', + bsSize: 'medium', + bsStyle: 'danger', + actions: [Dialog.DefaultAction('Ok', () => {}, 'btn-danger')], + body: error || statusText || t('An error has occurred'), + }); + } + + // values of form inputs + const [name, setName] = useState(slice.slice_name || ''); + const [description, setDescription] = useState(slice.description || ''); + const [cacheTimeout, setCacheTimeout] = useState(slice.cache_timeout || ''); Review comment: Good catch ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
