Browse Source

Fix 'Send test' not reflecting campaign body on first page load

Kailash Nadh 4 years ago
parent
commit
50e488fc01
2 changed files with 14 additions and 1 deletions
  1. 7 0
      frontend/src/components/Editor.vue
  2. 7 1
      frontend/src/views/Campaign.vue

+ 7 - 0
frontend/src/components/Editor.vue

@@ -118,6 +118,7 @@ export default {
       isPreviewing: false,
       isMediaVisible: false,
       isEditorFullscreen: false,
+      isReady: false,
       form: {
         body: '',
         format: this.contentType,
@@ -195,6 +196,8 @@ export default {
     },
 
     onEditorReady() {
+      this.isReady = true;
+
       // Hack to focus the editor on page load.
       this.$nextTick(() => {
         window.setTimeout(() => this.$refs.quill.quill.focus(), 100);
@@ -202,6 +205,10 @@ export default {
     },
 
     onEditorChange() {
+      if (!this.isReady) {
+        return;
+      }
+
       // The parent's v-model gets { contentType, body }.
       this.$emit('input', { contentType: this.form.format, body: this.form.body });
     },

+ 7 - 1
frontend/src/views/Campaign.vue

@@ -198,7 +198,13 @@ export default Vue.extend({
     getCampaign(id) {
       return this.$api.getCampaign(id).then((data) => {
         this.data = data;
-        this.form = { ...this.form, ...data };
+        this.form = {
+          ...this.form,
+          ...data,
+
+          // The structure that is populated by editor input event.
+          content: { contentType: data.contentType, body: data.body },
+        };
 
         if (data.sendAt !== null) {
           this.form.sendLater = true;