button(@click="gotoBegin") GotoBegin
button(@click="gotoEnd") GotoEnd
#fenDiv(v-if="showFen && !!vr")
- p {{ vr.getFen() }}
+ p(@click="gotoFenContent") {{ vr.getFen() }}
#pgnDiv
a#download(href="#")
button(@click="download") {{ st.tr["Download PGN"] }}
this.cursor = L-1;
this.lastMove = (L > 0 ? this.moves[L-1] : null);
},
+ gotoFenContent: function(event) {
+ this.$router.push("/analyze/" + this.game.vname +
+ "/?fen=" + event.target.innerText.replace(/ /g, "_"));
+ },
download: function() {
const content = this.getPgn();
// Prepare and trigger download link
br
textarea#mailContent
fieldset
- button(type="button" onClick="trySendMessage()") Send
+ button(type="button" @click="trySendMessage") Send
p#emailSent {{ st.tr["Email sent!"] }}
</template>
<script>
import { ajax } from "../utils/ajax";
import { store } from "@/store";
+import { checkNameEmail } from "@/data/userCheck";
+
export default {
name: "my-contact-form",
data: function() {
"Variants": "Variants",
"My games": "My games",
"Forum": "Forum",
- "Contact form": "Contact form",
- "Source code": "Source code",
+ "Contact": "Contact",
+ "About": "About",
"Language": "Language",
"Email": "Email",
input#inputFen(type="text" v-model="newchallenge.fen")
button(@click="newChallenge") {{ st.tr["Send challenge"] }}
.row
- .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
+ .col-sm-12.col-md-9.col-md-offset-3
button(onClick="doClick('modalNewgame')") New game
.row
- .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
+ .col-sm-12.col-md-3
+ Chat(:players="[]")
+ .col-sm-12.col-md-9
.collapse
input#challengeSection(type="radio" checked aria-hidden="true" name="accordion")
label(for="challengeSection" aria-hidden="true") Challenges
import { ArrayFun } from "@/utils/array";
import { ajax } from "@/utils/ajax";
import { getRandString, shuffle } from "@/utils/alea";
+import Chat from "@/components/Chat.vue";
import GameList from "@/components/GameList.vue";
import ChallengeList from "@/components/ChallengeList.vue";
import { GameStorage } from "@/utils/gameStorage";
export default {
name: "my-hall",
components: {
+ Chat,
GameList,
ChallengeList,
},
let router = require("express").Router();
const mailer = require(__dirname.replace("/routes", "/utils/mailer"));
+const params = require(__dirname.replace("/routes", "/config/parameters"));
// Send a message through contact form
router.post("/messages", (req,res,next) => {
if (!req.xhr)
return res.json({errmsg: "Unauthorized access"});
- const from = req.body["email"];
+ console.log(req.body);
+ const from = req.body["email"];
const subject = req.body["subject"];
- const body = req.body["body"];
+ const body = req.body["content"];
+
// TODO: sanitize ?
- mailer.send(from, mailer.contact, subject, body, err => {
+ mailer(from, params.mail.contact, subject, body, err => {
if (!!err)
return res.json({errmsg:err});
// OK, everything fine