Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
5450d974
Unverified
Commit
5450d974
authored
1 year ago
by
Uladzimir Havenchyk
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Use FormProvider in SaveQuestionModal (#30418)
parent
44208008
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/src/metabase/containers/SaveQuestionModal.jsx
+54
-55
54 additions, 55 deletions
frontend/src/metabase/containers/SaveQuestionModal.jsx
with
54 additions
and
55 deletions
frontend/src/metabase/containers/SaveQuestionModal.jsx
+
54
−
55
View file @
5450d974
/* eslint-disable react/prop-types */
import
React
,
{
Component
}
from
"
react
"
;
import
PropTypes
from
"
prop-types
"
;
import
{
CSSTransition
,
TransitionGroup
}
from
"
react-transition-group
"
;
import
{
t
}
from
"
ttag
"
;
import
*
as
Yup
from
"
yup
"
;
import
Form
,
{
FormField
,
FormFooter
}
from
"
metabase/containers/FormikForm
"
;
import
ModalContent
from
"
metabase/components/ModalContent
"
;
import
Radio
from
"
metabase/core/components/Radio
"
;
import
validate
from
"
metabase/lib/validate
"
;
import
FormProvider
from
"
metabase/core/components/FormProvider/FormProvider
"
;
import
FormCollectionPicker
from
"
metabase/collections/containers/FormCollectionPicker/FormCollectionPicker
"
;
import
Form
from
"
metabase/core/components/Form
"
;
import
FormInput
from
"
metabase/core/components/FormInput
"
;
import
FormFooter
from
"
metabase/core/components/FormFooter
"
;
import
FormTextArea
from
"
metabase/core/components/FormTextArea
"
;
import
FormErrorMessage
from
"
metabase/core/components/FormErrorMessage
"
;
import
Button
from
"
metabase/core/components/Button
"
;
import
FormSubmitButton
from
"
metabase/core/components/FormSubmitButton
"
;
import
FormRadio
from
"
metabase/core/components/FormRadio
"
;
import
{
canonicalCollectionId
}
from
"
metabase/collections/utils
"
;
import
*
as
Errors
from
"
metabase/core/utils/errors
"
;
import
"
./SaveQuestionModal.css
"
;
...
...
@@ -22,6 +30,17 @@ const getSingleStepTitle = (questionType, showSaveType) => {
}
};
const
SAVE_QUESTION_SCHEMA
=
Yup
.
object
({
saveType
:
Yup
.
string
(),
name
:
Yup
.
string
().
when
(
"
saveType
"
,
{
// We don't care if the form is valid when overwrite mode is enabled,
// as original question's data will be submitted instead of the form values
is
:
value
=>
value
!==
"
overwrite
"
,
then
:
Yup
.
string
().
required
(
Errors
.
required
),
otherwise
:
Yup
.
string
().
nullable
(
true
),
}),
});
export
default
class
SaveQuestionModal
extends
Component
{
static
propTypes
=
{
question
:
PropTypes
.
object
.
isRequired
,
...
...
@@ -30,14 +49,7 @@ export default class SaveQuestionModal extends Component {
onSave
:
PropTypes
.
func
.
isRequired
,
onClose
:
PropTypes
.
func
.
isRequired
,
multiStep
:
PropTypes
.
bool
,
};
validateName
=
(
name
,
{
values
})
=>
{
if
(
values
.
saveType
!==
"
overwrite
"
)
{
// We don't care if the form is valid when overwrite mode is enabled,
// as original question's data will be submitted instead of the form values
return
validate
.
required
()(
name
);
}
initialCollectionId
:
PropTypes
.
number
,
};
handleSubmit
=
async
details
=>
{
...
...
@@ -119,29 +131,28 @@ export default class SaveQuestionModal extends Component {
title
=
{
title
}
onClose
=
{
this
.
props
.
onClose
}
>
<
Form
<
Form
Provider
initialValues
=
{
initialValues
}
fields
=
{
[
{
name
:
"
saveType
"
},
{
name
:
"
name
"
,
validate
:
this
.
validateName
,
},
{
name
:
"
description
"
},
{
name
:
"
collection_id
"
},
]
}
onSubmit
=
{
this
.
handleSubmit
}
overwriteOnInitialValuesChange
validationSchema
=
{
SAVE_QUESTION_SCHEMA
}
enableReinitialize
>
{
({
values
,
Form
})
=>
(
{
({
values
})
=>
(
<
Form
>
<
FormField
name
=
"saveType"
title
=
{
t
`Replace or save as new?`
}
type
=
{
SaveTypeInput
}
hidden
=
{
!
showSaveType
}
originalQuestion
=
{
originalQuestion
}
/>
{
showSaveType
&&
(
<
FormRadio
name
=
"saveType"
title
=
{
t
`Replace or save as new?`
}
options
=
{
[
{
name
:
t
`Replace original question, "
${
originalQuestion
?.
displayName
()}
"`
,
value
:
"
overwrite
"
,
},
{
name
:
t
`Save as new question`
,
value
:
"
create
"
},
]
}
vertical
/>
)
}
<
TransitionGroup
>
{
values
.
saveType
===
"
create
"
&&
(
<
CSSTransition
...
...
@@ -152,49 +163,37 @@ export default class SaveQuestionModal extends Component {
}
}
>
<
div
className
=
"saveQuestionModalFields"
>
<
Form
Field
<
Form
Input
autoFocus
name
=
"name"
title
=
{
t
`Name`
}
placeholder
=
{
nameInputPlaceholder
}
/>
<
Form
Field
<
Form
TextArea
name
=
"description"
type
=
"text"
title
=
{
t
`Description`
}
placeholder
=
{
t
`It's optional but oh, so helpful`
}
/>
<
Form
Field
<
Form
CollectionPicker
name
=
"collection_id"
title
=
{
t
`Which collection should this go in?`
}
type
=
"collection"
/>
</
div
>
</
CSSTransition
>
)
}
</
TransitionGroup
>
<
FormFooter
submitTitle
=
{
t
`Save`
}
onCancel
=
{
this
.
props
.
onClose
}
/>
<
FormFooter
>
<
FormErrorMessage
inline
/>
<
Button
type
=
"button"
onClick
=
{
this
.
props
.
onClose
}
>
{
t
`Cancel`
}
</
Button
>
<
FormSubmitButton
title
=
{
t
`Save`
}
primary
/>
</
FormFooter
>
</
Form
>
)
}
</
Form
>
</
Form
Provider
>
</
ModalContent
>
);
}
}
const
SaveTypeInput
=
({
field
,
originalQuestion
})
=>
(
<
Radio
{
...
field
}
type
=
{
""
}
options
=
{
[
{
name
:
t
`Replace original question, "
${
originalQuestion
&&
originalQuestion
.
displayName
()
}
"`
,
value
:
"
overwrite
"
,
},
{
name
:
t
`Save as new question`
,
value
:
"
create
"
},
]
}
vertical
/>
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment