293 lines
8.8 KiB
Vue
293 lines
8.8 KiB
Vue
<script>
|
|
import { GlButton, GlLoadingIcon } from '@gitlab/ui';
|
|
|
|
import eventHub from '~/blob/components/eventhub';
|
|
import { deprecatedCreateFlash as Flash } from '~/flash';
|
|
import { redirectTo, joinPaths } from '~/lib/utils/url_utility';
|
|
import { __, sprintf } from '~/locale';
|
|
import {
|
|
SNIPPET_MARK_EDIT_APP_START,
|
|
SNIPPET_MEASURE_BLOBS_CONTENT,
|
|
} from '~/performance/constants';
|
|
import { performanceMarkAndMeasure } from '~/performance/utils';
|
|
import FormFooterActions from '~/vue_shared/components/form/form_footer_actions.vue';
|
|
import TitleField from '~/vue_shared/components/form/title.vue';
|
|
|
|
import { SNIPPET_CREATE_MUTATION_ERROR, SNIPPET_UPDATE_MUTATION_ERROR } from '../constants';
|
|
import { getSnippetMixin } from '../mixins/snippets';
|
|
import CreateSnippetMutation from '../mutations/createSnippet.mutation.graphql';
|
|
import UpdateSnippetMutation from '../mutations/updateSnippet.mutation.graphql';
|
|
import { markBlobPerformance } from '../utils/blob';
|
|
import { getErrorMessage } from '../utils/error';
|
|
|
|
import SnippetBlobActionsEdit from './snippet_blob_actions_edit.vue';
|
|
import SnippetDescriptionEdit from './snippet_description_edit.vue';
|
|
import SnippetVisibilityEdit from './snippet_visibility_edit.vue';
|
|
|
|
eventHub.$on(SNIPPET_MEASURE_BLOBS_CONTENT, markBlobPerformance);
|
|
|
|
export default {
|
|
components: {
|
|
SnippetDescriptionEdit,
|
|
SnippetVisibilityEdit,
|
|
SnippetBlobActionsEdit,
|
|
TitleField,
|
|
FormFooterActions,
|
|
CaptchaModal: () => import('~/captcha/captcha_modal.vue'),
|
|
GlButton,
|
|
GlLoadingIcon,
|
|
},
|
|
mixins: [getSnippetMixin],
|
|
inject: ['selectedLevel'],
|
|
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 {
|
|
isUpdating: false,
|
|
actions: [],
|
|
snippet: {
|
|
title: '',
|
|
description: '',
|
|
visibilityLevel: this.selectedLevel,
|
|
},
|
|
captchaResponse: '',
|
|
needsCaptchaResponse: false,
|
|
captchaSiteKey: '',
|
|
spamLogId: '',
|
|
};
|
|
},
|
|
computed: {
|
|
hasBlobChanges() {
|
|
return this.actions.length > 0;
|
|
},
|
|
hasNoChanges() {
|
|
return (
|
|
this.actions.every(
|
|
(action) => !action.content && !action.filePath && !action.previousPath,
|
|
) &&
|
|
!this.snippet.title &&
|
|
!this.snippet.description
|
|
);
|
|
},
|
|
hasValidBlobs() {
|
|
return this.actions.every((x) => x.content);
|
|
},
|
|
updatePrevented() {
|
|
return this.snippet.title === '' || !this.hasValidBlobs || this.isUpdating;
|
|
},
|
|
isProjectSnippet() {
|
|
return Boolean(this.projectPath);
|
|
},
|
|
apiData() {
|
|
return {
|
|
id: this.snippet.id,
|
|
title: this.snippet.title,
|
|
description: this.snippet.description,
|
|
visibilityLevel: this.snippet.visibilityLevel,
|
|
blobActions: this.actions,
|
|
...(this.spamLogId && { spamLogId: this.spamLogId }),
|
|
...(this.captchaResponse && { captchaResponse: this.captchaResponse }),
|
|
};
|
|
},
|
|
saveButtonLabel() {
|
|
if (this.newSnippet) {
|
|
return __('Create snippet');
|
|
}
|
|
return this.isUpdating ? __('Saving') : __('Save changes');
|
|
},
|
|
cancelButtonHref() {
|
|
if (this.newSnippet) {
|
|
return joinPaths('/', gon.relative_url_root, this.projectPath, '-/snippets');
|
|
}
|
|
return this.snippet.webUrl;
|
|
},
|
|
},
|
|
beforeCreate() {
|
|
performanceMarkAndMeasure({ mark: SNIPPET_MARK_EDIT_APP_START });
|
|
},
|
|
created() {
|
|
window.addEventListener('beforeunload', this.onBeforeUnload);
|
|
},
|
|
destroyed() {
|
|
window.removeEventListener('beforeunload', this.onBeforeUnload);
|
|
},
|
|
methods: {
|
|
onBeforeUnload(e = {}) {
|
|
const returnValue = __('Are you sure you want to lose unsaved changes?');
|
|
|
|
if (!this.hasBlobChanges || this.hasNoChanges || this.isUpdating) return undefined;
|
|
|
|
Object.assign(e, { returnValue });
|
|
return returnValue;
|
|
},
|
|
flashAPIFailure(err) {
|
|
const defaultErrorMsg = this.newSnippet
|
|
? SNIPPET_CREATE_MUTATION_ERROR
|
|
: SNIPPET_UPDATE_MUTATION_ERROR;
|
|
Flash(sprintf(defaultErrorMsg, { err }));
|
|
this.isUpdating = false;
|
|
},
|
|
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,
|
|
},
|
|
};
|
|
},
|
|
handleFormSubmit() {
|
|
this.isUpdating = true;
|
|
this.$apollo
|
|
.mutate(this.newSnippet ? this.createMutation() : this.updateMutation())
|
|
.then(({ data }) => {
|
|
const baseObj = this.newSnippet ? data?.createSnippet : data?.updateSnippet;
|
|
|
|
if (baseObj.needsCaptchaResponse) {
|
|
// If we need a captcha response, start process for receiving captcha response.
|
|
// We will resubmit after the response is obtained.
|
|
this.requestCaptchaResponse(baseObj.captchaSiteKey, baseObj.spamLogId);
|
|
return;
|
|
}
|
|
|
|
const errors = baseObj?.errors;
|
|
if (errors.length) {
|
|
this.flashAPIFailure(errors[0]);
|
|
} else {
|
|
redirectTo(baseObj.snippet.webUrl);
|
|
}
|
|
})
|
|
.catch((e) => {
|
|
// eslint-disable-next-line no-console
|
|
console.error('[gitlab] unexpected error while updating snippet', e);
|
|
|
|
this.flashAPIFailure(getErrorMessage(e));
|
|
});
|
|
},
|
|
updateActions(actions) {
|
|
this.actions = actions;
|
|
},
|
|
/**
|
|
* Start process for getting captcha response from user
|
|
*
|
|
* @param captchaSiteKey Stored in data and used to display the captcha.
|
|
* @param spamLogId Stored in data and included when the form is re-submitted.
|
|
*/
|
|
requestCaptchaResponse(captchaSiteKey, spamLogId) {
|
|
this.captchaSiteKey = captchaSiteKey;
|
|
this.spamLogId = spamLogId;
|
|
this.needsCaptchaResponse = true;
|
|
},
|
|
/**
|
|
* Handle the captcha response from the user
|
|
*
|
|
* @param captchaResponse The captchaResponse value emitted from the modal.
|
|
*/
|
|
receivedCaptchaResponse(captchaResponse) {
|
|
this.needsCaptchaResponse = false;
|
|
this.captchaResponse = captchaResponse;
|
|
|
|
if (this.captchaResponse) {
|
|
// If the user solved the captcha resubmit the form.
|
|
this.handleFormSubmit();
|
|
} else {
|
|
// If the user didn't solve the captcha (e.g. they just closed the modal),
|
|
// finish the update and allow them to continue editing or manually resubmit the form.
|
|
this.isUpdating = false;
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<template>
|
|
<form
|
|
class="snippet-form js-quick-submit common-note-form"
|
|
:data-snippet-type="isProjectSnippet ? 'project' : 'personal'"
|
|
data-testid="snippet-edit-form"
|
|
@submit.prevent="handleFormSubmit"
|
|
>
|
|
<gl-loading-icon
|
|
v-if="isLoading"
|
|
:label="__('Loading snippet')"
|
|
size="lg"
|
|
class="loading-animation prepend-top-20 gl-mb-6"
|
|
/>
|
|
<template v-else>
|
|
<captcha-modal
|
|
:captcha-site-key="captchaSiteKey"
|
|
:needs-captcha-response="needsCaptchaResponse"
|
|
@receivedCaptchaResponse="receivedCaptchaResponse"
|
|
/>
|
|
<title-field
|
|
id="snippet-title"
|
|
v-model="snippet.title"
|
|
data-qa-selector="snippet_title_field"
|
|
required
|
|
:autofocus="true"
|
|
/>
|
|
<snippet-description-edit
|
|
v-model="snippet.description"
|
|
:markdown-preview-path="markdownPreviewPath"
|
|
:markdown-docs-path="markdownDocsPath"
|
|
/>
|
|
<snippet-blob-actions-edit :init-blobs="blobs" @actions="updateActions" />
|
|
|
|
<snippet-visibility-edit
|
|
v-model="snippet.visibilityLevel"
|
|
:help-link="visibilityHelpLink"
|
|
:is-project-snippet="isProjectSnippet"
|
|
/>
|
|
<form-footer-actions>
|
|
<template #prepend>
|
|
<gl-button
|
|
category="primary"
|
|
type="submit"
|
|
variant="success"
|
|
:disabled="updatePrevented"
|
|
data-qa-selector="submit_button"
|
|
data-testid="snippet-submit-btn"
|
|
>{{ saveButtonLabel }}</gl-button
|
|
>
|
|
</template>
|
|
<template #append>
|
|
<gl-button type="cancel" data-testid="snippet-cancel-btn" :href="cancelButtonHref">{{
|
|
__('Cancel')
|
|
}}</gl-button>
|
|
</template>
|
|
</form-footer-actions>
|
|
</template>
|
|
</form>
|
|
</template>
|