mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
124 lines
3.8 KiB
CoffeeScript
124 lines
3.8 KiB
CoffeeScript
View = require 'views/kinds/RootView'
|
|
template = require 'templates/kinds/search'
|
|
forms = require('lib/forms')
|
|
app = require('application')
|
|
|
|
class SearchCollection extends Backbone.Collection
|
|
initialize: (modelURL, @model, @term) ->
|
|
@url = "#{modelURL}/search?project=true"
|
|
@url += "&term=#{term}" if @term
|
|
|
|
module.exports = class SearchView extends View
|
|
template: template
|
|
className: 'search-view'
|
|
|
|
# to overwrite in subclasses
|
|
modelLabel: '' # 'Article'
|
|
model: null # Article
|
|
modelURL: null # '/db/article'
|
|
tableTemplate: null # require 'templates/editor/article/table'
|
|
|
|
events:
|
|
'change input#search': 'runSearch'
|
|
'keydown input#search': 'runSearch'
|
|
'click button.new-model-submit': 'makeNewModel'
|
|
'submit form': 'makeNewModel'
|
|
'shown.bs.modal #new-model-modal': 'focusOnName'
|
|
'hidden.bs.modal #new-model-modal': 'onModalHidden'
|
|
|
|
getRenderData: ->
|
|
context = super()
|
|
switch @modelLabel
|
|
when 'Level'
|
|
context.currentEditor = 'editor.level_title'
|
|
context.currentNew = 'editor.new_level_title'
|
|
context.currentNewSignup = 'editor.new_level_title_login'
|
|
context.currentSearch = 'editor.level_search_title'
|
|
when 'Thang Type'
|
|
context.currentEditor = 'editor.thang_title'
|
|
context.currentNew = 'editor.new_thang_title'
|
|
context.currentNewSignup = 'editor.new_thang_title_login'
|
|
context.currentSearch = 'editor.thang_search_title'
|
|
when 'Article'
|
|
context.currentEditor = 'editor.article_title'
|
|
context.currentNew = 'editor.new_article_title'
|
|
context.currentNewSignup = 'editor.new_article_title_login'
|
|
context.currentSearch = 'editor.article_search_title'
|
|
@$el.i18n()
|
|
context
|
|
|
|
constructor: (options) ->
|
|
@runSearch = _.debounce(@runSearch, 500)
|
|
super options
|
|
|
|
afterRender: ->
|
|
super()
|
|
hash = document.location.hash[1..]
|
|
searchInput = @$el.find('#search')
|
|
searchInput.val(hash) if hash?
|
|
delete @collection?.term
|
|
searchInput.trigger('change')
|
|
searchInput.focus()
|
|
|
|
runSearch: =>
|
|
term = @$el.find('input#search').val()
|
|
return if @sameSearch(term)
|
|
@removeOldSearch()
|
|
|
|
@collection = new SearchCollection(@modelURL, @model, term)
|
|
@collection.term = term # needed?
|
|
@listenTo(@collection, 'sync', @onSearchChange)
|
|
@showLoading(@$el.find('.results'))
|
|
|
|
@updateHash(term)
|
|
@collection.fetch()
|
|
|
|
updateHash: (term) ->
|
|
newPath = document.location.pathname + (if term then "#" + term else "")
|
|
currentPath = document.location.pathname + document.location.hash
|
|
app.router.navigate(newPath) if newPath isnt currentPath
|
|
|
|
sameSearch: (term) ->
|
|
return false unless @collection
|
|
return term is @collection.term
|
|
|
|
onSearchChange: ->
|
|
@hideLoading()
|
|
documents = @collection.models
|
|
table = $(@tableTemplate(documents:documents))
|
|
@$el.find('table').replaceWith(table)
|
|
@$el.find('table').i18n()
|
|
|
|
removeOldSearch: ->
|
|
return unless @collection?
|
|
@collection.off()
|
|
@collection = null
|
|
|
|
makeNewModel: (e) ->
|
|
e.preventDefault()
|
|
name = @$el.find('#name').val()
|
|
model = new @model()
|
|
model.set('name', name)
|
|
if @model.schema.properties.permissions
|
|
model.set 'permissions', [{access: 'owner', target: me.id}]
|
|
res = model.save()
|
|
return unless res
|
|
|
|
modal = @$el.find('#new-model-modal')
|
|
forms.clearFormAlerts(modal)
|
|
@showLoading(modal.find('.modal-body'))
|
|
res.error =>
|
|
@hideLoading()
|
|
forms.applyErrorsToForm(modal, JSON.parse(res.responseText))
|
|
that = @
|
|
res.success ->
|
|
that.model = model
|
|
modal.modal('hide')
|
|
|
|
onModalHidden: ->
|
|
# Can only redirect after the modal hidden event has triggered
|
|
base = document.location.pathname[1..] + '/'
|
|
app.router.navigate(base + (@model.get('slug') or @model.id), {trigger:true})
|
|
|
|
focusOnName: ->
|
|
@$el.find('#name').focus()
|