mirror of
https://github.com/correl/planning-poker.git
synced 2024-11-25 03:00:12 +00:00
71 lines
2 KiB
JavaScript
71 lines
2 KiB
JavaScript
// 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"
|
|
|
|
import { Socket, Presence } from "phoenix"
|
|
import { Elm } from "../src/Main.elm"
|
|
import uuid4 from "uuid4"
|
|
|
|
var player_id = uuid4()
|
|
var room_id = uuid4()
|
|
|
|
var socket = new Socket("/socket", {params: {player_id: player_id}})
|
|
socket.connect()
|
|
|
|
var app = Elm.Main.init({
|
|
node: document.getElementById("elm-main"),
|
|
flags: {
|
|
player: player_id,
|
|
room: room_id
|
|
}
|
|
})
|
|
|
|
app.ports.joinRoom.subscribe(options => {
|
|
let channel = socket.channel("room:" + options.room, {})
|
|
|
|
// Presence events
|
|
let presences = {}
|
|
channel.on("presence_state", state => {
|
|
console.log("presence state", state)
|
|
presences = Presence.syncState(presences, state)
|
|
app.ports.gotPresence.send(presences)
|
|
})
|
|
channel.on("presence_diff", diff => {
|
|
console.log("presence diff", diff)
|
|
presences = Presence.syncDiff(presences, diff)
|
|
app.ports.gotPresence.send(presences)
|
|
})
|
|
|
|
// Incoming room events
|
|
const handle = (type) => (data) =>
|
|
app.ports.roomEvents.send({
|
|
"type": type,
|
|
"data": data
|
|
})
|
|
["vote", "reset"]
|
|
.forEach(event => channel.on(event, handle(event)))
|
|
|
|
// Outgoing room events
|
|
app.ports.roomActions.subscribe(action => {
|
|
channel.push(action.type, action.data)
|
|
})
|
|
|
|
channel.join()
|
|
.receive("ok", resp => {
|
|
console.log("Joined successfully", resp);
|
|
})
|
|
.receive("error", resp => { console.log("Unable to join", resp) })
|
|
|
|
})
|