codecombat/app/views/clans/ClansView.coffee
2015-04-01 15:24:45 -07:00

60 lines
2.1 KiB
CoffeeScript

app = require 'core/application'
AuthModal = require 'views/core/AuthModal'
RootView = require 'views/core/RootView'
template = require 'templates/clans/clans'
CocoCollection = require 'collections/CocoCollection'
Clan = require 'models/Clan'
module.exports = class MainAdminView extends RootView
id: 'clans-view'
template: template
events:
'click .create-clan-btn': 'onClickCreateClan'
'click .join-clan-btn': 'onJoinClan'
constructor: (options) ->
super options
@publicClans = new CocoCollection([], { url: '/db/clan', model: Clan, comparator:'_id' })
@supermodel.loadCollection(@publicClans, 'public_clans', {cache: false})
getRenderData: ->
context = super()
context.publicClans = @publicClans.models
context.myClans = _.filter @publicClans.models, (c) ->
return true if c.ownerID is me.get('_id')
return true for member in c.get('members') when me.get('_id') is member.id
context.myClanIDs = _.map context.myClans, (c) -> c.id
context
onClickCreateClan: (e) ->
return @openModalView(new AuthModal()) if me.isAnonymous()
if name = $('.create-clan-name').val()
# TODO: async creating message
clan = new Clan()
clan.set 'type', 'public'
clan.set 'name', name
clan.save {},
error: (model, response, options) =>
console.error 'Error saving clan', response.status
success: (model, response, options) =>
app.router.navigate "/clans/#{model.id}"
window.location.reload()
else
# TODO: Invalid name message
console.log 'Invalid name'
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) =>
console.log 'Joined clan', clanID
@render()
@supermodel.addRequestResource( 'join_clan', options).load()
else
console.error "No clan ID attached to join button."