2018-11-29 13:47:49 +00:00
|
|
|
# libs
|
|
|
|
window.$ = require('jquery')
|
|
|
|
|
|
|
|
# on load
|
|
|
|
$ ->
|
|
|
|
# libs requiring full DOM
|
|
|
|
io = require 'socket.io-client'
|
|
|
|
|
|
|
|
# style sheet
|
|
|
|
require './style/custom.scss'
|
|
|
|
|
2018-12-16 01:38:43 +00:00
|
|
|
# # init Socket.IO
|
|
|
|
# socket = io()
|
|
|
|
|
|
|
|
# reset forms
|
|
|
|
$('form').each ->
|
|
|
|
that = @
|
|
|
|
@fullReset = ->
|
|
|
|
$('input', that).each ->
|
|
|
|
$(that).removeClass 'is-invalid'
|
|
|
|
$(that).removeClass 'is-valid'
|
|
|
|
that.reset()
|
2018-12-13 16:07:58 +00:00
|
|
|
|
|
|
|
# login form
|
|
|
|
$('form[name="login"]').submit ->
|
2018-12-16 01:38:43 +00:00
|
|
|
# inhibit normal form submission
|
|
|
|
event.preventDefault()
|
|
|
|
|
2018-12-13 16:07:58 +00:00
|
|
|
# gather form data
|
2018-12-16 01:38:43 +00:00
|
|
|
login = $('input[name="login"]', @)
|
2018-12-13 16:07:58 +00:00
|
|
|
password = $('input[name="password"]', @)
|
|
|
|
|
|
|
|
# transmit form data
|
|
|
|
socket.emit 'login', uname.val(), password.val()
|
|
|
|
console.log 'emitted "login", "%s", "%s"', uname.val(), password.val()
|
|
|
|
|
|
|
|
# reset form
|
2018-12-16 01:38:43 +00:00
|
|
|
@fullReset()
|
2018-12-13 16:07:58 +00:00
|
|
|
|
|
|
|
# register form
|
2018-12-16 01:38:43 +00:00
|
|
|
$('form[name="register"]').submit (event) ->
|
|
|
|
# inhibit normal form submission
|
|
|
|
event.preventDefault()
|
|
|
|
|
2018-12-13 16:07:58 +00:00
|
|
|
# gather form data
|
2018-12-16 01:38:43 +00:00
|
|
|
login = $('input[name="login"]', @)
|
2018-12-13 16:07:58 +00:00
|
|
|
password = $('input[name="password"]', @)
|
|
|
|
confirm = $('input[name="confirm"]', @)
|
|
|
|
|
|
|
|
# check form data
|
|
|
|
if password.val() == confirm.val()
|
|
|
|
|
|
|
|
# transmit form data
|
|
|
|
socket.emit 'register', uname.val(), password.val()
|
|
|
|
console.log 'emitted "register", "%s", "%s"', uname.val(), password.val()
|
|
|
|
|
|
|
|
# reset form
|
2018-12-16 01:38:43 +00:00
|
|
|
@fullReset()
|
2018-12-13 16:07:58 +00:00
|
|
|
|
|
|
|
else
|
|
|
|
confirm.val ''
|
|
|
|
confirm.addClass 'is-invalid'
|
|
|
|
confirm.focus()
|