planning-poker/assets/js/app.js

54 lines
1.6 KiB
JavaScript
Raw Normal View History

2020-05-02 21:55:20 +00:00
// We need to import the CSS so that webpack will load it.
// The MiniCssExtractPlugin is used to separate it out into
// its own CSS file.
import "../css/app.scss"
// webpack automatically bundles all modules in your
// entry points. Those entry points can be configured
// in "webpack.config.js".
//
// Import deps with the dep name or local files with a relative path, for example:
//
// import {Socket} from "phoenix"
// import socket from "./socket"
//
import "phoenix_html"
2020-05-06 05:30:43 +00:00
import { Socket, Presence } from "phoenix"
import { Elm } from "../src/Main.elm"
import uuid4 from "uuid4"
var player_id = uuid4()
var socket = new Socket("/socket", {params: {player_id: player_id}})
socket.connect()
2020-05-02 21:55:20 +00:00
var app = Elm.Main.init({
2020-05-06 05:30:43 +00:00
node: document.getElementById("elm-main"),
flags: "player:" + player_id
})
app.ports.joinRoom.subscribe(options => {
2020-05-07 00:03:31 +00:00
let channel = socket.channel("room:" + options.room, {})
2020-05-06 05:30:43 +00:00
let presences = {}
channel.on("presence_state", state => {
2020-05-07 00:03:31 +00:00
console.log("presence state", state)
2020-05-06 05:30:43 +00:00
presences = Presence.syncState(presences, state)
app.ports.gotPresence.send(presences)
})
channel.on("presence_diff", diff => {
2020-05-07 00:03:31 +00:00
console.log("presence diff", diff)
2020-05-06 05:30:43 +00:00
presences = Presence.syncDiff(presences, diff)
app.ports.gotPresence.send(presences)
})
2020-05-07 00:03:31 +00:00
app.ports.newProfile.subscribe(profile => {
channel.push("new_profile", { "name": profile.playerName })
})
channel.join()
.receive("ok", resp => {
console.log("Joined successfully", resp);
})
.receive("error", resp => { console.log("Unable to join", resp) })
2020-05-06 05:30:43 +00:00
})