stage-manager/assets/coffee/wyrm.coffee

32 lines
897 B
CoffeeScript

$(document).ready(() ->
$('.channel-path').click(updateAttribute)
$('.video-status').click(updateAttribute)
$('.video-serial').click(updateAttribute)
)
updateAttribute = (e) ->
elem = $(this)
type = elem.data('type')
attr = elem.data('attribute')
newValue = prompt('Enter new ' + type + ' ' + attr + ':', elem.find('span').text())
if newValue
if attr == 'status'
newValue = newValue.toLowerCase()
payload =
value: newValue
objectId = $('#' + type + '-id').val()
url = '/' + type + '/' + objectId + '/edit/' + attr
$.post(url, payload, (data) ->
if data == 'success'
if attr == 'status'
newValue = capitalizeWord(newValue)
elem.find('span').text(newValue)
)
else
console.log('User canceled attribute "' + attr + '" update.')
capitalizeWord = (str) ->
return str.charAt(0).toUpperCase() + str.slice(1)