Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/merge_requests/generated_content.js')
-rw-r--r--app/assets/javascripts/merge_requests/generated_content.js64
1 files changed, 64 insertions, 0 deletions
diff --git a/app/assets/javascripts/merge_requests/generated_content.js b/app/assets/javascripts/merge_requests/generated_content.js
new file mode 100644
index 00000000000..0184801ce80
--- /dev/null
+++ b/app/assets/javascripts/merge_requests/generated_content.js
@@ -0,0 +1,64 @@
+export class MergeRequestGeneratedContent {
+ constructor({ editor } = {}) {
+ this.warningElement = document.querySelector('.js-ai-description-warning');
+ this.markdownEditor = editor;
+ this.generatedContent = null;
+
+ this.connectToDOM();
+ }
+
+ get hasEditor() {
+ return Boolean(this.markdownEditor);
+ }
+ get hasWarning() {
+ return Boolean(this.warningElement);
+ }
+ get canReplaceContent() {
+ return this.hasEditor && Boolean(this.generatedContent);
+ }
+
+ connectToDOM() {
+ let close;
+ let cancel;
+ let approve;
+
+ if (this.hasWarning) {
+ approve = this.warningElement.querySelector('.js-ai-override-description');
+ cancel = this.warningElement.querySelector('.js-cancel-btn');
+ close = this.warningElement.querySelector('.js-close-btn');
+
+ approve.addEventListener('click', () => {
+ this.replaceDescription();
+ this.hideWarning();
+ });
+
+ cancel.addEventListener('click', () => this.hideWarning());
+ close.addEventListener('click', () => this.hideWarning());
+ }
+ }
+
+ setEditor(markdownEditor) {
+ this.markdownEditor = markdownEditor;
+ }
+ setGeneratedContent(newContent) {
+ this.generatedContent = newContent;
+ }
+ clearGeneratedContent() {
+ this.generatedContent = null;
+ }
+
+ showWarning() {
+ if (this.canReplaceContent) {
+ this.warningElement?.classList.remove('hidden');
+ }
+ }
+ hideWarning() {
+ this.warningElement?.classList.add('hidden');
+ }
+ replaceDescription() {
+ if (this.canReplaceContent) {
+ this.markdownEditor.setValue(this.generatedContent);
+ this.clearGeneratedContent();
+ }
+ }
+}