2020-04-21 11:21:10 -04:00
|
|
|
<script>
|
|
|
|
import { GlButton, GlLoadingIcon } from '@gitlab/ui';
|
|
|
|
|
|
|
|
import Flash from '~/flash';
|
|
|
|
import { __, sprintf } from '~/locale';
|
|
|
|
import TitleField from '~/vue_shared/components/form/title.vue';
|
2020-07-17 05:09:43 -04:00
|
|
|
import { redirectTo } from '~/lib/utils/url_utility';
|
2020-04-21 11:21:10 -04:00
|
|
|
import FormFooterActions from '~/vue_shared/components/form/form_footer_actions.vue';
|
|
|
|
|
|
|
|
import UpdateSnippetMutation from '../mutations/updateSnippet.mutation.graphql';
|
|
|
|
import CreateSnippetMutation from '../mutations/createSnippet.mutation.graphql';
|
|
|
|
import { getSnippetMixin } from '../mixins/snippets';
|
2020-06-02 02:08:01 -04:00
|
|
|
import {
|
|
|
|
SNIPPET_VISIBILITY_PRIVATE,
|
|
|
|
SNIPPET_CREATE_MUTATION_ERROR,
|
|
|
|
SNIPPET_UPDATE_MUTATION_ERROR,
|
2020-07-17 05:09:43 -04:00
|
|
|
SNIPPET_BLOB_ACTION_CREATE,
|
|
|
|
SNIPPET_BLOB_ACTION_UPDATE,
|
|
|
|
SNIPPET_BLOB_ACTION_MOVE,
|
2020-06-02 02:08:01 -04:00
|
|
|
} from '../constants';
|
2020-08-12 17:09:54 -04:00
|
|
|
import SnippetBlobActionsEdit from './snippet_blob_actions_edit.vue';
|
2020-04-21 11:21:10 -04:00
|
|
|
import SnippetVisibilityEdit from './snippet_visibility_edit.vue';
|
|
|
|
import SnippetDescriptionEdit from './snippet_description_edit.vue';
|
2020-07-31 17:10:12 -04:00
|
|
|
import { SNIPPET_MARK_EDIT_APP_START } from '~/performance_constants';
|
2020-04-21 11:21:10 -04:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
SnippetDescriptionEdit,
|
|
|
|
SnippetVisibilityEdit,
|
2020-08-12 17:09:54 -04:00
|
|
|
SnippetBlobActionsEdit,
|
2020-04-21 11:21:10 -04:00
|
|
|
TitleField,
|
|
|
|
FormFooterActions,
|
|
|
|
GlButton,
|
|
|
|
GlLoadingIcon,
|
|
|
|
},
|
|
|
|
mixins: [getSnippetMixin],
|
|
|
|
props: {
|
|
|
|
markdownPreviewPath: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
markdownDocsPath: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
visibilityHelpLink: {
|
|
|
|
type: String,
|
|
|
|
default: '',
|
|
|
|
required: false,
|
|
|
|
},
|
|
|
|
projectPath: {
|
|
|
|
type: String,
|
|
|
|
default: '',
|
|
|
|
required: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2020-07-17 05:09:43 -04:00
|
|
|
blobsActions: {},
|
2020-04-21 11:21:10 -04:00
|
|
|
isUpdating: false,
|
|
|
|
newSnippet: false,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
2020-07-17 05:09:43 -04:00
|
|
|
getActionsEntries() {
|
|
|
|
return Object.values(this.blobsActions);
|
|
|
|
},
|
|
|
|
allBlobsHaveContent() {
|
|
|
|
const entries = this.getActionsEntries;
|
|
|
|
return entries.length > 0 && !entries.find(action => !action.content);
|
|
|
|
},
|
|
|
|
allBlobChangesRegistered() {
|
|
|
|
const entries = this.getActionsEntries;
|
|
|
|
return entries.length > 0 && !entries.find(action => action.action === '');
|
|
|
|
},
|
2020-04-21 11:21:10 -04:00
|
|
|
updatePrevented() {
|
2020-07-17 05:09:43 -04:00
|
|
|
return this.snippet.title === '' || !this.allBlobsHaveContent || this.isUpdating;
|
2020-04-21 11:21:10 -04:00
|
|
|
},
|
|
|
|
isProjectSnippet() {
|
|
|
|
return Boolean(this.projectPath);
|
|
|
|
},
|
|
|
|
apiData() {
|
|
|
|
return {
|
|
|
|
id: this.snippet.id,
|
|
|
|
title: this.snippet.title,
|
|
|
|
description: this.snippet.description,
|
|
|
|
visibilityLevel: this.snippet.visibilityLevel,
|
2020-07-17 14:09:20 -04:00
|
|
|
blobActions: this.getActionsEntries.filter(entry => entry.action !== ''),
|
2020-04-21 11:21:10 -04:00
|
|
|
};
|
|
|
|
},
|
|
|
|
saveButtonLabel() {
|
|
|
|
if (this.newSnippet) {
|
|
|
|
return __('Create snippet');
|
|
|
|
}
|
|
|
|
return this.isUpdating ? __('Saving') : __('Save changes');
|
|
|
|
},
|
|
|
|
cancelButtonHref() {
|
|
|
|
if (this.newSnippet) {
|
2020-07-23 11:09:28 -04:00
|
|
|
return this.projectPath ? `/${this.projectPath}/-/snippets` : `/-/snippets`;
|
2020-04-21 11:21:10 -04:00
|
|
|
}
|
|
|
|
return this.snippet.webUrl;
|
|
|
|
},
|
|
|
|
titleFieldId() {
|
|
|
|
return `${this.isProjectSnippet ? 'project' : 'personal'}_snippet_title`;
|
|
|
|
},
|
|
|
|
descriptionFieldId() {
|
|
|
|
return `${this.isProjectSnippet ? 'project' : 'personal'}_snippet_description`;
|
|
|
|
},
|
|
|
|
},
|
2020-07-31 17:10:12 -04:00
|
|
|
beforeCreate() {
|
|
|
|
performance.mark(SNIPPET_MARK_EDIT_APP_START);
|
|
|
|
},
|
2020-06-17 11:08:36 -04:00
|
|
|
created() {
|
|
|
|
window.addEventListener('beforeunload', this.onBeforeUnload);
|
|
|
|
},
|
|
|
|
destroyed() {
|
|
|
|
window.removeEventListener('beforeunload', this.onBeforeUnload);
|
|
|
|
},
|
2020-04-21 11:21:10 -04:00
|
|
|
methods: {
|
2020-06-17 11:08:36 -04:00
|
|
|
onBeforeUnload(e = {}) {
|
|
|
|
const returnValue = __('Are you sure you want to lose unsaved changes?');
|
|
|
|
|
2020-07-20 17:09:23 -04:00
|
|
|
if (!this.allBlobChangesRegistered || this.isUpdating) return undefined;
|
2020-06-17 11:08:36 -04:00
|
|
|
|
|
|
|
Object.assign(e, { returnValue });
|
|
|
|
return returnValue;
|
|
|
|
},
|
2020-07-17 05:09:43 -04:00
|
|
|
updateBlobActions(args = {}) {
|
|
|
|
// `_constants` is the internal prop that
|
|
|
|
// should not be sent to the mutation. Hence we filter it out from
|
|
|
|
// the argsToUpdateAction that is the data-basis for the mutation.
|
|
|
|
const { _constants: blobConstants, ...argsToUpdateAction } = args;
|
|
|
|
const { previousPath, filePath, content } = argsToUpdateAction;
|
|
|
|
let actionEntry = this.blobsActions[blobConstants.id] || {};
|
|
|
|
let tunedActions = {
|
|
|
|
action: '',
|
|
|
|
previousPath,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (this.newSnippet) {
|
|
|
|
// new snippet, hence new blob
|
|
|
|
tunedActions = {
|
|
|
|
action: SNIPPET_BLOB_ACTION_CREATE,
|
|
|
|
previousPath: '',
|
|
|
|
};
|
|
|
|
} else if (previousPath && filePath) {
|
|
|
|
// renaming of a blob + renaming & content update
|
|
|
|
const renamedToOriginal = filePath === blobConstants.originalPath;
|
|
|
|
tunedActions = {
|
|
|
|
action: renamedToOriginal ? SNIPPET_BLOB_ACTION_UPDATE : SNIPPET_BLOB_ACTION_MOVE,
|
|
|
|
previousPath: !renamedToOriginal ? blobConstants.originalPath : '',
|
|
|
|
};
|
|
|
|
} else if (content !== blobConstants.originalContent) {
|
|
|
|
// content update only
|
|
|
|
tunedActions = {
|
|
|
|
action: SNIPPET_BLOB_ACTION_UPDATE,
|
|
|
|
previousPath: '',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
actionEntry = { ...actionEntry, ...argsToUpdateAction, ...tunedActions };
|
|
|
|
|
|
|
|
this.$set(this.blobsActions, blobConstants.id, actionEntry);
|
2020-04-21 11:21:10 -04:00
|
|
|
},
|
|
|
|
flashAPIFailure(err) {
|
2020-06-02 02:08:01 -04:00
|
|
|
const defaultErrorMsg = this.newSnippet
|
|
|
|
? SNIPPET_CREATE_MUTATION_ERROR
|
|
|
|
: SNIPPET_UPDATE_MUTATION_ERROR;
|
|
|
|
Flash(sprintf(defaultErrorMsg, { err }));
|
|
|
|
this.isUpdating = false;
|
2020-04-21 11:21:10 -04:00
|
|
|
},
|
|
|
|
onNewSnippetFetched() {
|
|
|
|
this.newSnippet = true;
|
|
|
|
this.snippet = this.$options.newSnippetSchema;
|
|
|
|
},
|
|
|
|
onExistingSnippetFetched() {
|
|
|
|
this.newSnippet = false;
|
|
|
|
},
|
|
|
|
onSnippetFetch(snippetRes) {
|
|
|
|
if (snippetRes.data.snippets.edges.length === 0) {
|
|
|
|
this.onNewSnippetFetched();
|
|
|
|
} else {
|
|
|
|
this.onExistingSnippetFetched();
|
|
|
|
}
|
|
|
|
},
|
2020-06-15 08:08:44 -04:00
|
|
|
getAttachedFiles() {
|
|
|
|
const fileInputs = Array.from(this.$el.querySelectorAll('[name="files[]"]'));
|
|
|
|
return fileInputs.map(node => node.value);
|
|
|
|
},
|
|
|
|
createMutation() {
|
|
|
|
return {
|
|
|
|
mutation: CreateSnippetMutation,
|
|
|
|
variables: {
|
|
|
|
input: {
|
|
|
|
...this.apiData,
|
|
|
|
uploadedFiles: this.getAttachedFiles(),
|
|
|
|
projectPath: this.projectPath,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
updateMutation() {
|
|
|
|
return {
|
|
|
|
mutation: UpdateSnippetMutation,
|
|
|
|
variables: {
|
|
|
|
input: this.apiData,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
2020-04-21 11:21:10 -04:00
|
|
|
handleFormSubmit() {
|
|
|
|
this.isUpdating = true;
|
|
|
|
this.$apollo
|
2020-06-15 08:08:44 -04:00
|
|
|
.mutate(this.newSnippet ? this.createMutation() : this.updateMutation())
|
2020-04-21 11:21:10 -04:00
|
|
|
.then(({ data }) => {
|
|
|
|
const baseObj = this.newSnippet ? data?.createSnippet : data?.updateSnippet;
|
|
|
|
|
|
|
|
const errors = baseObj?.errors;
|
|
|
|
if (errors.length) {
|
|
|
|
this.flashAPIFailure(errors[0]);
|
2020-06-04 05:08:01 -04:00
|
|
|
} else {
|
2020-06-17 11:08:36 -04:00
|
|
|
this.originalContent = this.content;
|
2020-06-04 05:08:01 -04:00
|
|
|
redirectTo(baseObj.snippet.webUrl);
|
2020-04-21 11:21:10 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(e => {
|
|
|
|
this.flashAPIFailure(e);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
newSnippetSchema: {
|
|
|
|
title: '',
|
|
|
|
description: '',
|
|
|
|
visibilityLevel: SNIPPET_VISIBILITY_PRIVATE,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<form
|
|
|
|
class="snippet-form js-requires-input js-quick-submit common-note-form"
|
|
|
|
:data-snippet-type="isProjectSnippet ? 'project' : 'personal'"
|
2020-06-15 08:08:44 -04:00
|
|
|
data-testid="snippet-edit-form"
|
|
|
|
@submit.prevent="handleFormSubmit"
|
2020-04-21 11:21:10 -04:00
|
|
|
>
|
|
|
|
<gl-loading-icon
|
|
|
|
v-if="isLoading"
|
|
|
|
:label="__('Loading snippet')"
|
|
|
|
size="lg"
|
|
|
|
class="loading-animation prepend-top-20 append-bottom-20"
|
|
|
|
/>
|
|
|
|
<template v-else>
|
2020-04-22 05:09:36 -04:00
|
|
|
<title-field
|
|
|
|
:id="titleFieldId"
|
|
|
|
v-model="snippet.title"
|
2020-06-05 02:08:40 -04:00
|
|
|
data-qa-selector="snippet_title_field"
|
2020-04-22 05:09:36 -04:00
|
|
|
required
|
|
|
|
:autofocus="true"
|
|
|
|
/>
|
2020-04-21 11:21:10 -04:00
|
|
|
<snippet-description-edit
|
|
|
|
:id="descriptionFieldId"
|
|
|
|
v-model="snippet.description"
|
|
|
|
:markdown-preview-path="markdownPreviewPath"
|
|
|
|
:markdown-docs-path="markdownDocsPath"
|
|
|
|
/>
|
2020-08-12 17:09:54 -04:00
|
|
|
<snippet-blob-actions-edit :blobs="blobs" @blob-updated="updateBlobActions" />
|
2020-07-17 05:09:43 -04:00
|
|
|
|
2020-04-21 11:21:10 -04:00
|
|
|
<snippet-visibility-edit
|
|
|
|
v-model="snippet.visibilityLevel"
|
|
|
|
:help-link="visibilityHelpLink"
|
|
|
|
:is-project-snippet="isProjectSnippet"
|
|
|
|
/>
|
|
|
|
<form-footer-actions>
|
|
|
|
<template #prepend>
|
|
|
|
<gl-button
|
|
|
|
category="primary"
|
2020-06-15 08:08:44 -04:00
|
|
|
type="submit"
|
2020-04-21 11:21:10 -04:00
|
|
|
variant="success"
|
|
|
|
:disabled="updatePrevented"
|
2020-05-19 02:08:03 -04:00
|
|
|
data-qa-selector="submit_button"
|
2020-06-15 08:08:44 -04:00
|
|
|
data-testid="snippet-submit-btn"
|
2020-04-21 11:21:10 -04:00
|
|
|
>{{ saveButtonLabel }}</gl-button
|
|
|
|
>
|
|
|
|
</template>
|
|
|
|
<template #append>
|
2020-06-15 08:08:44 -04:00
|
|
|
<gl-button type="cancel" data-testid="snippet-cancel-btn" :href="cancelButtonHref">{{
|
2020-04-21 11:21:10 -04:00
|
|
|
__('Cancel')
|
|
|
|
}}</gl-button>
|
|
|
|
</template>
|
|
|
|
</form-footer-actions>
|
|
|
|
</template>
|
|
|
|
</form>
|
|
|
|
</template>
|