Advance on problems page
[vchess.git] / public / javascripts / components / problemSummary.js
diff --git a/public/javascripts/components/problemSummary.js b/public/javascripts/components/problemSummary.js
new file mode 100644 (file)
index 0000000..2c9ea94
--- /dev/null
@@ -0,0 +1,36 @@
+// Preview a problem on variant page
+Vue.component('my-problem-preview', {
+       props: ['prob','userid'],
+       template: `
+               <div class="row problem">
+                       <div class="col-sm-12 col-md-6 diagram"
+                               v-html="getDiagram(prob.fen)">
+                       </div>
+                       <div class="col-sm-12 col-md-6">
+                               <p v-html="prob.instructions"></p>
+                               <p v-if="!!prob.preview" v-html="prob.solution"></p>
+                               <p v-else class="problem-time">{{ timestamp2date(prob.added) }}</p>
+                               <div v-show="prob.uid==userid" class="button-group">
+                                       <button @click="sendSignal('edit')'">Edit</button>
+                                       <button @click="sendSignal('delete')">Delete</button>
+                               </div>
+                       </div>
+               </div>
+       `,
+       methods: {
+               getDiagram: function(fen) {
+                       const fenParsed = V.ParseFen(fen);
+                       return getDiagram({
+                               position: fenParsed.position,
+                               turn: fenParsed.turn,
+                               // No need for flags here
+                       });
+               },
+               timestamp2date(ts) {
+                       return getDate(new Date(ts));
+               },
+               sendSignal: function(action) {
+                       this.$emit(action + "-problem");
+               },
+       },
+})