Step toward a one-page application
[vchess.git] / public / javascripts / components / problemSummary.js
index e7e1db7..54602e0 100644 (file)
@@ -1,15 +1,20 @@
-// Show a problem summary on variant page or new problem preview
+// Preview a problem on variant page
 Vue.component('my-problem-summary', {
-       props: ['prob','preview'],
+       props: ['prob','userid','preview'],
        template: `
-               <div class="problem row" @click="showProblem()">
-                       <div class="col-sm-12 col-md-6 col-lg-3 diagram"
+               <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 col-lg-9">
+                       <div class="col-sm-12 col-md-6">
                                <p v-html="prob.instructions"></p>
-                               <p v-if="preview" v-html="prob.solution"></p>
+                               <p v-if="!!prob.preview" v-html="prob.solution"></p>
                                <p v-else class="problem-time">{{ timestamp2date(prob.added) }}</p>
+                               <button v-show="!preview" @click="$emit('show-problem')">Show</button>
+                               <div v-show="prob.uid==userid && !preview" class="button-group">
+                                       <button @click="$emit('edit-problem')">Edit</button>
+                                       <button @click="$emit('delete-problem')">Delete</button>
+                               </div>
                        </div>
                </div>
        `,
@@ -25,9 +30,5 @@ Vue.component('my-problem-summary', {
                timestamp2date(ts) {
                        return getDate(new Date(ts));
                },
-               // Propagate "show problem" event to parent component (my-problems)
-               showProblem: function() {
-                       this.$emit('show-problem');
-               },
        },
 })