codecombat/app/views/clans/ClansView.coffee

85 lines
2.9 KiB
CoffeeScript
Raw Normal View History

app = require 'core/application'
2015-04-01 18:24:45 -04:00
AuthModal = require 'views/core/AuthModal'
RootView = require 'views/core/RootView'
template = require 'templates/clans/clans'
CocoCollection = require 'collections/CocoCollection'
Clan = require 'models/Clan'
# TODO: Waiting for async messages
# TODO: Invalid clan name message
# TODO: Refresh data instead of page
module.exports = class MainAdminView extends RootView
id: 'clans-view'
template: template
events:
'click .create-clan-btn': 'onClickCreateClan'
2015-04-01 18:24:45 -04:00
'click .join-clan-btn': 'onJoinClan'
'click .leave-clan-btn': 'onLeaveClan'
constructor: (options) ->
super options
@publicClans = new CocoCollection([], { url: '/db/clan', model: Clan, comparator:'_id' })
2015-04-02 20:00:28 -04:00
@listenTo @publicClans, 'sync', => @render?()
@supermodel.loadCollection(@publicClans, 'public_clans', {cache: false})
2015-04-02 20:00:28 -04:00
@myClans = new CocoCollection([], { url: '/db/user/-/clans', model: Clan, comparator:'_id' })
@listenTo @myClans, 'sync', => @render?()
@supermodel.loadCollection(@myClans, 'my_clans', {cache: false})
@listenTo me, 'sync', => @render?()
destroy: ->
@stopListening?()
getRenderData: ->
context = super()
context.publicClans = @publicClans.models
2015-04-02 20:00:28 -04:00
context.myClans = @myClans.models
context.myClanIDs = me.get('clans') ? []
context
onClickCreateClan: (e) ->
2015-04-01 18:24:45 -04:00
return @openModalView(new AuthModal()) if me.isAnonymous()
if name = $('.create-clan-name').val()
clan = new Clan()
clan.set 'type', 'public'
clan.set 'name', name
clan.save {},
error: (model, response, options) =>
2015-04-01 18:24:45 -04:00
console.error 'Error saving clan', response.status
success: (model, response, options) =>
app.router.navigate "/clans/#{model.id}"
window.location.reload()
else
console.log 'Invalid name'
2015-04-01 18:24:45 -04:00
onJoinClan: (e) ->
return @openModalView(new AuthModal()) if me.isAnonymous()
if clanID = $(e.target).data('id')
options =
url: "/db/clan/#{clanID}/join"
method: 'PUT'
error: (model, response, options) =>
console.error 'Error joining clan', response
success: (model, response, options) =>
app.router.navigate "/clans/#{clanID}"
window.location.reload()
2015-04-01 18:24:45 -04:00
@supermodel.addRequestResource( 'join_clan', options).load()
else
console.error "No clan ID attached to join button."
onLeaveClan: (e) ->
if clanID = $(e.target).data('id')
options =
url: "/db/clan/#{clanID}/leave"
method: 'PUT'
error: (model, response, options) =>
console.error 'Error leaving clan', response
success: (model, response, options) =>
2015-04-02 20:00:28 -04:00
me.fetch cache: false
@publicClans.fetch cache: false
@myClans.fetch cache: false
@supermodel.addRequestResource( 'leave_clan', options).load()
else
console.error "No clan ID attached to leave button."