Skip to content
Snippets Groups Projects
Commit 6ff4621c authored by Lewis Liu's avatar Lewis Liu
Browse files

Added height transition on save question modal fields

parent 15704fd0
No related branches found
No related tags found
No related merge requests found
:local(.saveQuestionModalFields) {
overflow: hidden;
}
.saveQuestionModalFields {
overflow: hidden;
}
.saveQuestionModalFields-enter {
max-height: 0px;
}
.saveQuestionModalFields-enter.saveQuestionModalFields-enter-active {
/* using 100% max-height breaks the transition */
max-height: 300px;
transition: max-height 500ms ease-out;
}
.saveQuestionModalFields-leave {
max-height: 300px;
}
.saveQuestionModalFields-leave.saveQuestionModalFields-leave-active {
max-height: 0px;
transition: max-height 500ms ease-out;
}
\ No newline at end of file
import React, { Component, PropTypes } from "react";
import ReactCSSTransitionGroup from "react-addons-css-transition-group";
import FormField from "metabase/components/FormField.jsx";
import ModalContent from "metabase/components/ModalContent.jsx";
......@@ -8,6 +10,8 @@ import { cancelable } from "metabase/lib/promise";
import cx from "classnames";
import S from "./SaveQuestionModal.css";
export default class SaveQuestionModal extends Component {
......@@ -161,23 +165,30 @@ export default class SaveQuestionModal extends Component {
<form className="flex flex-column flex-full" onSubmit={(e) => this.formSubmitted(e)}>
<div className="Form-inputs">
{saveOrUpdate}
{ details.saveType === "create" && [
<FormField
key="name"
displayName="Name"
fieldName="name"
errors={this.state.errors}>
<input className="Form-input full" name="name" placeholder="What is the name of your card?" value={this.state.details.name} onChange={(e) => this.onChange("name", e.target.value)} autoFocus/>
</FormField>,
<FormField
key="description"
displayName="Description"
fieldName="description"
errors={this.state.errors}>
<textarea className="Form-input full" name="description" placeholder="It's optional but oh, so helpful" value={this.state.details.description} onChange={(e) => this.onChange("description", e.target.value)} />
</FormField>
]}
<ReactCSSTransitionGroup
transitionName="saveQuestionModalFields"
transitionEnterTimeout={500}
transitionLeaveTimeout={500}
>
{ details.saveType === "create" &&
<div key="saveQuestionModalFields" className={S.saveQuestionModalFields}>
<FormField
key="name"
displayName="Name"
fieldName="name"
errors={this.state.errors}>
<input className="Form-input full" name="name" placeholder="What is the name of your card?" value={this.state.details.name} onChange={(e) => this.onChange("name", e.target.value)} autoFocus/>
</FormField>
<FormField
key="description"
displayName="Description"
fieldName="description"
errors={this.state.errors}>
<textarea className="Form-input full" name="description" placeholder="It's optional but oh, so helpful" value={this.state.details.description} onChange={(e) => this.onChange("description", e.target.value)} />
</FormField>
</div>
}
</ReactCSSTransitionGroup>
</div>
<div className="Form-actions">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment