mirror of
https://github.com/Dahlgren/arma-server-web-admin.git
synced 2024-08-30 17:22:10 +00:00
56 lines
1.1 KiB
JavaScript
56 lines
1.1 KiB
JavaScript
var $ = require('jquery')
|
|
var _ = require('underscore')
|
|
var Marionette = require('marionette')
|
|
|
|
var ListView = require('app/views/mods/list')
|
|
var tpl = require('tpl/mods/index.html')
|
|
|
|
var template = _.template(tpl)
|
|
|
|
module.exports = Marionette.LayoutView.extend({
|
|
template: template,
|
|
templateHelpers: function () {
|
|
return {
|
|
filterValue: this.filterValue
|
|
}
|
|
},
|
|
|
|
regions: {
|
|
listView: '#list'
|
|
},
|
|
|
|
events: {
|
|
'click #refresh': 'refresh',
|
|
'keyup #filterMods': 'updateFilter'
|
|
},
|
|
|
|
initialize: function () {
|
|
this.filterValue = ''
|
|
this.modsListView = new ListView({ collection: this.options.mods, filterValue: this.filterValue })
|
|
},
|
|
|
|
updateFilter: function (event) {
|
|
this.filterValue = event.target.value
|
|
this.modsListView.filterValue = this.filterValue
|
|
this.modsListView.render()
|
|
},
|
|
|
|
onRender: function () {
|
|
this.listView.show(this.modsListView)
|
|
},
|
|
|
|
refresh: function (event) {
|
|
event.preventDefault()
|
|
$.ajax({
|
|
url: '/api/mods/refresh',
|
|
type: 'POST',
|
|
success: function (resp) {
|
|
|
|
},
|
|
error: function (resp) {
|
|
|
|
}
|
|
})
|
|
}
|
|
})
|