Use new-environment component to toggle
- Moves the form to the innermost place it can go
This commit is contained in:
parent
408fa4e618
commit
ab874a06f8
24
js/components/forms/new_environment.js
Normal file
24
js/components/forms/new_environment.js
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import FormMixin from '../../mixins/form'
|
||||||
|
import textinput from '../text_input'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'new-environment',
|
||||||
|
|
||||||
|
mixins: [FormMixin],
|
||||||
|
|
||||||
|
components: {
|
||||||
|
textinput,
|
||||||
|
},
|
||||||
|
|
||||||
|
data: function() {
|
||||||
|
return {
|
||||||
|
open: false,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
toggle: function() {
|
||||||
|
this.open = !this.open
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
@ -38,6 +38,7 @@ import SidenavToggler from './components/sidenav_toggler'
|
|||||||
import KoReview from './components/forms/ko_review'
|
import KoReview from './components/forms/ko_review'
|
||||||
import BaseForm from './components/forms/base_form'
|
import BaseForm from './components/forms/base_form'
|
||||||
import DeleteConfirmation from './components/delete_confirmation'
|
import DeleteConfirmation from './components/delete_confirmation'
|
||||||
|
import NewEnvironment from './components/forms/new_environment'
|
||||||
|
|
||||||
Vue.config.productionTip = false
|
Vue.config.productionTip = false
|
||||||
|
|
||||||
@ -78,6 +79,7 @@ const app = new Vue({
|
|||||||
BaseForm,
|
BaseForm,
|
||||||
DeleteConfirmation,
|
DeleteConfirmation,
|
||||||
nestedcheckboxinput,
|
nestedcheckboxinput,
|
||||||
|
NewEnvironment,
|
||||||
},
|
},
|
||||||
|
|
||||||
mounted: function() {
|
mounted: function() {
|
||||||
|
@ -1,53 +1,42 @@
|
|||||||
{% from "components/alert.html" import Alert %}
|
{% from "components/alert.html" import Alert %}
|
||||||
{% from 'components/save_button.html' import SaveButton %}
|
{% from 'components/save_button.html' import SaveButton %}
|
||||||
{% from "components/text_input.html" import TextInput %}
|
{% from "components/text_input.html" import TextInput %}
|
||||||
{% from "components/toggle_list.html" import ToggleButton, ToggleSection %}
|
|
||||||
|
|
||||||
|
<new-environment inline-template>
|
||||||
|
<div>
|
||||||
|
<div v-if="open">
|
||||||
<form method='POST' id="add-new-env" action='{{ url_for("applications.new_environment", application_id=application.id) }}' autocomplete="off" enctype="multipart/form-data">
|
<form method='POST' id="add-new-env" action='{{ url_for("applications.new_environment", application_id=application.id) }}' autocomplete="off" enctype="multipart/form-data">
|
||||||
{{ new_env_form.csrf_token }}
|
{{ new_env_form.csrf_token }}
|
||||||
|
|
||||||
<toggler inline-template>
|
|
||||||
<div>
|
|
||||||
{% set add_env_link %}
|
|
||||||
<div class="panel__footer">
|
|
||||||
<div class="action-group">
|
|
||||||
<a class='icon-link'>
|
|
||||||
{{ "portfolios.applications.add_environment" | translate }}
|
|
||||||
{{ Icon('plus') }}
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% endset %}
|
|
||||||
|
|
||||||
{% call ToggleSection(section_name="add-new-environment") %}
|
|
||||||
<div class="accordion-table__item-content new-env">
|
<div class="accordion-table__item-content new-env">
|
||||||
{{ Alert(
|
{{ Alert(
|
||||||
title=("portfolios.applications.create_new_env" | translate),
|
title=("portfolios.applications.create_new_env" | translate),
|
||||||
message=("portfolios.applications.create_new_env_info" | translate )
|
message=("portfolios.applications.create_new_env_info" | translate )
|
||||||
) }}
|
) }}
|
||||||
<div class="h4">{{ "portfolios.applications.enter_env_name" | translate }}</div>
|
<div class="h4">{{ "portfolios.applications.enter_env_name" | translate }}</div>
|
||||||
{{ TextInput(new_env_form.name, label="") }}
|
{{ TextInput(new_env_form.name, label="", validation="requiredField") }}
|
||||||
</div>
|
</div>
|
||||||
<div class="panel__footer">
|
<div class="panel__footer">
|
||||||
<div class="action-group">
|
<div class="action-group">
|
||||||
<div class='action-group-cancel'>
|
<div class='action-group-cancel'>
|
||||||
<a class='action-group-cancel__action icon-link icon-link--default' v-on:click="toggleSection('members')">
|
<a class='action-group-cancel__action icon-link icon-link--default' v-on:click="toggle">
|
||||||
{{ "common.cancel" | translate }}
|
{{ "common.cancel" | translate }}
|
||||||
</a>
|
</a>
|
||||||
{{ SaveButton(text=('common.save' | translate), element="input", form="add-new-env") }}
|
{{ SaveButton(text=('common.save' | translate), element="input", form="add-new-env") }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endcall %}
|
|
||||||
|
|
||||||
{{
|
|
||||||
ToggleButton(
|
|
||||||
open_html=add_env_link,
|
|
||||||
close_html="",
|
|
||||||
section_name="add-new-environment"
|
|
||||||
)
|
|
||||||
}}
|
|
||||||
</div>
|
|
||||||
</toggler>
|
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-else class="panel__footer">
|
||||||
|
<div class="action-group">
|
||||||
|
<a class='icon-link' v-on:click="toggle">
|
||||||
|
{{ "portfolios.applications.add_environment" | translate }}
|
||||||
|
{{ Icon('plus') }}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</new-environment>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user