Browse Source

Update Timeline.vue embed modal

Daniel Supernault 5 years ago
parent
commit
3d6445d5c7
1 changed files with 53 additions and 2 deletions
  1. 53 2
      resources/assets/js/components/Timeline.vue

+ 53 - 2
resources/assets/js/components/Timeline.vue

@@ -430,7 +430,29 @@
 	size="md"
 	size="md"
 	body-class="p-2 rounded">
 	body-class="p-2 rounded">
 	<div>
 	<div>
-		<textarea class="form-control disabled" rows="1" style="border: 1px solid #efefef; font-size: 14px; line-height: 12px; height: 37px; margin: 0 0 7px; resize: none; white-space: nowrap;" v-model="ctxEmbedPayload"></textarea>
+		<div class="form-group">
+			<textarea class="form-control disabled text-monospace" rows="8" style="overflow-y:hidden;border: 1px solid #efefef; font-size: 12px; line-height: 18px; margin: 0 0 7px;resize:none;" v-model="ctxEmbedPayload" disabled=""></textarea>
+		</div>
+		<div class="form-group pl-2 d-flex justify-content-center">
+			<div class="form-check mr-3">
+				<input class="form-check-input" type="checkbox" v-model="ctxEmbedShowCaption" :disabled="ctxEmbedCompactMode == true">
+				<label class="form-check-label font-weight-light">
+					Show Caption
+				</label>
+			</div>
+			<div class="form-check mr-3">
+				<input class="form-check-input" type="checkbox" v-model="ctxEmbedShowLikes" :disabled="ctxEmbedCompactMode == true">
+				<label class="form-check-label font-weight-light">
+					Show Likes
+				</label>
+			</div>
+			<div class="form-check">
+				<input class="form-check-input" type="checkbox" v-model="ctxEmbedCompactMode">
+				<label class="form-check-label font-weight-light">
+					Compact Mode
+				</label>
+			</div>
+		</div>
 		<hr>
 		<hr>
 		<button :class="copiedEmbed ? 'btn btn-primary btn-block btn-sm py-1 font-weight-bold disabed': 'btn btn-primary btn-block btn-sm py-1 font-weight-bold'" @click="ctxCopyEmbed" :disabled="copiedEmbed">{{copiedEmbed ? 'Embed Code Copied!' : 'Copy Embed Code'}}</button>
 		<button :class="copiedEmbed ? 'btn btn-primary btn-block btn-sm py-1 font-weight-bold disabed': 'btn btn-primary btn-block btn-sm py-1 font-weight-bold'" @click="ctxCopyEmbed" :disabled="copiedEmbed">{{copiedEmbed ? 'Embed Code Copied!' : 'Copy Embed Code'}}</button>
 		<p class="mb-0 px-2 small text-muted">By using this embed, you agree to our <a href="/site/terms">Terms of Use</a></p>
 		<p class="mb-0 px-2 small text-muted">By using this embed, you agree to our <a href="/site/terms">Terms of Use</a></p>
@@ -603,9 +625,35 @@
 				showTips: true,
 				showTips: true,
 				userStory: false,
 				userStory: false,
 				replySending: false,
 				replySending: false,
+				ctxEmbedShowCaption: true,
+				ctxEmbedShowLikes: false,
+				ctxEmbedCompactMode: false,
+			}
+		},
+		watch: {
+			ctxEmbedShowCaption: function (n,o) {
+				if(n == true) {
+					this.ctxEmbedCompactMode = false;
+				}
+				let mode = this.ctxEmbedCompactMode ? 'compact' : 'full';
+				this.ctxEmbedPayload = window.App.util.embed.post(this.ctxMenuStatus.url, this.ctxEmbedShowCaption, this.ctxEmbedShowLikes, mode);
+			},
+			ctxEmbedShowLikes: function (n,o) {
+				if(n == true) {
+					this.ctxEmbedCompactMode = false;
+				}
+				let mode = this.ctxEmbedCompactMode ? 'compact' : 'full';
+				this.ctxEmbedPayload = window.App.util.embed.post(this.ctxMenuStatus.url, this.ctxEmbedShowCaption, this.ctxEmbedShowLikes, mode);
+			},
+			ctxEmbedCompactMode: function (n,o) {
+				if(n == true) {
+					this.ctxEmbedShowCaption = false;
+					this.ctxEmbedShowLikes = false;
+				}
+				let mode = this.ctxEmbedCompactMode ? 'compact' : 'full';
+				this.ctxEmbedPayload = window.App.util.embed.post(this.ctxMenuStatus.url, this.ctxEmbedShowCaption, this.ctxEmbedShowLikes, mode);
 			}
 			}
 		},
 		},
-
 		beforeMount() {
 		beforeMount() {
 			this.fetchProfile();
 			this.fetchProfile();
 			this.fetchTimelineApi();
 			this.fetchTimelineApi();
@@ -1349,6 +1397,9 @@
 
 
 			ctxCopyEmbed() {
 			ctxCopyEmbed() {
 				navigator.clipboard.writeText(this.ctxEmbedPayload);
 				navigator.clipboard.writeText(this.ctxEmbedPayload);
+				this.ctxEmbedShowCaption = true;
+				this.ctxEmbedShowLikes = false;
+				this.ctxEmbedCompactMode = false;
 				this.$refs.ctxEmbedModal.hide();
 				this.$refs.ctxEmbedModal.hide();
 			},
 			},