debian-mirror-gitlab/app/assets/javascripts/ide/components/new_dropdown/modal.vue

172 lines
4.4 KiB
Vue
Raw Normal View History

2018-05-09 12:01:36 +05:30
<script>
2020-01-01 13:55:28 +05:30
import { mapActions, mapState, mapGetters } from 'vuex';
2019-07-07 11:18:12 +05:30
import flash from '~/flash';
import { __, sprintf, s__ } from '~/locale';
2020-05-24 23:13:21 +05:30
import { GlModal } from '@gitlab/ui';
2018-11-18 11:00:15 +05:30
import { modalTypes } from '../../constants';
2020-05-24 23:13:21 +05:30
import { trimPathComponents } from '../../utils';
2018-05-09 12:01:36 +05:30
export default {
components: {
2020-05-24 23:13:21 +05:30
GlModal,
2018-05-09 12:01:36 +05:30
},
data() {
return {
2020-05-24 23:13:21 +05:30
entryName: '',
modalType: modalTypes.blob,
path: '',
2018-05-09 12:01:36 +05:30
};
},
computed: {
2020-05-24 23:13:21 +05:30
...mapState(['entries']),
2018-11-20 20:47:30 +05:30
...mapGetters('fileTemplates', ['templateTypes']),
2018-05-09 12:01:36 +05:30
modalTitle() {
2020-05-24 23:13:21 +05:30
const entry = this.entries[this.path];
if (this.modalType === modalTypes.tree) {
2018-05-09 12:01:36 +05:30
return __('Create new directory');
2020-05-24 23:13:21 +05:30
} else if (this.modalType === modalTypes.rename) {
return entry.type === modalTypes.tree ? __('Rename folder') : __('Rename file');
2018-05-09 12:01:36 +05:30
}
return __('Create new file');
},
buttonLabel() {
2020-05-24 23:13:21 +05:30
const entry = this.entries[this.path];
if (this.modalType === modalTypes.tree) {
2018-05-09 12:01:36 +05:30
return __('Create directory');
2020-05-24 23:13:21 +05:30
} else if (this.modalType === modalTypes.rename) {
return entry.type === modalTypes.tree ? __('Rename folder') : __('Rename file');
2018-05-09 12:01:36 +05:30
}
return __('Create file');
},
2019-07-07 11:18:12 +05:30
isCreatingNewFile() {
2020-05-24 23:13:21 +05:30
return this.modalType === modalTypes.blob;
2019-07-07 11:18:12 +05:30
},
placeholder() {
return this.isCreatingNewFile ? 'dir/file_name' : 'dir/';
2018-11-20 20:47:30 +05:30
},
2018-05-09 12:01:36 +05:30
},
methods: {
2018-11-18 11:00:15 +05:30
...mapActions(['createTempEntry', 'renameEntry']),
submitForm() {
2020-05-24 23:13:21 +05:30
this.entryName = trimPathComponents(this.entryName);
if (this.modalType === modalTypes.rename) {
2019-07-07 11:18:12 +05:30
if (this.entries[this.entryName] && !this.entries[this.entryName].deleted) {
flash(
2020-03-13 15:44:24 +05:30
sprintf(s__('The name "%{name}" is already taken in this directory.'), {
name: this.entryName,
2019-07-07 11:18:12 +05:30
}),
'alert',
document,
null,
false,
true,
);
} else {
let parentPath = this.entryName.split('/');
2020-05-24 23:13:21 +05:30
const name = parentPath.pop();
2019-07-07 11:18:12 +05:30
parentPath = parentPath.join('/');
2020-03-13 15:44:24 +05:30
this.renameEntry({
2020-05-24 23:13:21 +05:30
path: this.path,
name,
2020-03-13 15:44:24 +05:30
parentPath,
});
2019-07-07 11:18:12 +05:30
}
2018-11-18 11:00:15 +05:30
} else {
this.createTempEntry({
2020-05-24 23:13:21 +05:30
name: this.entryName,
type: this.modalType,
2018-11-18 11:00:15 +05:30
});
}
},
2018-11-20 20:47:30 +05:30
createFromTemplate(template) {
this.createTempEntry({
name: template.name,
2020-05-24 23:13:21 +05:30
type: this.modalType,
2018-11-20 20:47:30 +05:30
});
2020-05-24 23:13:21 +05:30
this.$refs.modal.toggle();
2018-11-20 20:47:30 +05:30
},
2018-11-18 11:00:15 +05:30
focusInput() {
2020-05-24 23:13:21 +05:30
const name = this.entries[this.entryName]?.name;
2019-07-07 11:18:12 +05:30
const inputValue = this.$refs.fieldName.value;
2018-11-18 11:00:15 +05:30
this.$refs.fieldName.focus();
2019-07-07 11:18:12 +05:30
if (name) {
this.$refs.fieldName.setSelectionRange(inputValue.indexOf(name), inputValue.length);
}
2018-05-09 12:01:36 +05:30
},
2020-05-24 23:13:21 +05:30
resetData() {
this.entryName = '';
this.path = '';
this.modalType = modalTypes.blob;
},
open(type = modalTypes.blob, path = '') {
this.modalType = type;
this.path = path;
if (this.modalType === modalTypes.rename) {
this.entryName = path;
} else {
this.entryName = path ? `${path}/` : '';
}
this.$refs.modal.show();
// wait for modal to show first
this.$nextTick(() => this.focusInput());
},
close() {
this.$refs.modal.hide();
2018-05-09 12:01:36 +05:30
},
},
};
</script>
<template>
2018-11-18 11:00:15 +05:30
<gl-modal
2020-05-24 23:13:21 +05:30
ref="modal"
modal-id="ide-new-entry"
modal-class="qa-new-file-modal"
:title="modalTitle"
:ok-title="buttonLabel"
ok-variant="success"
size="lg"
@ok="submitForm"
@hide="resetData"
2018-05-09 12:01:36 +05:30
>
2019-02-15 15:39:39 +05:30
<div class="form-group row">
<label class="label-bold col-form-label col-sm-2"> {{ __('Name') }} </label>
2018-11-20 20:47:30 +05:30
<div class="col-sm-10">
2018-11-08 19:23:39 +05:30
<input
ref="fieldName"
2020-05-24 23:13:21 +05:30
v-model.trim="entryName"
2018-11-08 19:23:39 +05:30
type="text"
2018-12-13 13:39:08 +05:30
class="form-control qa-full-file-path"
2019-07-07 11:18:12 +05:30
:placeholder="placeholder"
2018-11-08 19:23:39 +05:30
/>
2019-07-07 11:18:12 +05:30
<ul
v-if="isCreatingNewFile"
class="file-templates prepend-top-default list-inline qa-template-list"
>
2019-02-15 15:39:39 +05:30
<li v-for="(template, index) in templateTypes" :key="index" class="list-inline-item">
2018-11-20 20:47:30 +05:30
<button
type="button"
class="btn btn-missing p-1 pr-2 pl-2"
2019-03-02 22:35:43 +05:30
@click="createFromTemplate(template)"
2018-11-20 20:47:30 +05:30
>
{{ template.name }}
</button>
</li>
</ul>
2018-11-08 19:23:39 +05:30
</div>
2018-11-18 11:00:15 +05:30
</div>
</gl-modal>
2018-05-09 12:01:36 +05:30
</template>