codecombat/app/views/kinds/SearchView.coffee

122 lines
3.7 KiB
CoffeeScript
Raw Normal View History

2014-01-03 13:32:13 -05:00
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=yes"
@url += "&term=#{term}" if @term
2014-01-03 13:32:13 -05:00
module.exports = class ThangTypeHomeView 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'
2014-02-27 12:17:19 -05:00
'submit form': 'makeNewModel'
'shown.bs.modal #new-model-modal': 'focusOnName'
'hidden.bs.modal #new-model-modal': 'onModalHidden'
2014-01-03 13:32:13 -05:00
getRenderData: ->
context = super()
switch @modelLabel
2014-03-01 01:52:51 -05:00
when 'Level'
context.currentEditor = 'editor.level_title'
context.currentNew = 'editor.new_level_title'
context.currentSearch = 'editor.level_search_title'
when 'Thang Type'
context.currentEditor = 'editor.thang_title'
context.currentNew = 'editor.new_thang_title'
context.currentSearch = 'editor.thang_search_title'
when 'Article'
context.currentEditor = 'editor.article_title'
context.currentNew = 'editor.new_article_title'
context.currentSearch = 'editor.article_search_title'
@$el.i18n()
context
2014-01-03 13:32:13 -05:00
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
2014-01-03 13:32:13 -05:00
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?
2014-03-24 02:53:41 -04:00
@listenTo(@collection, 'sync', @onSearchChange)
2014-01-03 13:32:13 -05:00
@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
2014-03-24 02:53:41 -04:00
onSearchChange: ->
2014-01-03 13:32:13 -05:00
@hideLoading()
2014-01-06 15:37:35 -05:00
documents = @collection.models
2014-01-03 13:32:13 -05:00
table = $(@tableTemplate(documents:documents))
@$el.find('table').replaceWith(table)
@$el.find('table').i18n()
2014-01-03 13:32:13 -05:00
removeOldSearch: ->
return unless @collection?
2014-03-24 12:07:09 -04:00
@collection.off()
2014-01-03 13:32:13 -05:00
@collection = null
makeNewModel: (e) ->
e.preventDefault()
name = @$el.find('#name').val()
model = new @model()
model.set('name', name)
if @model.schema.get('properties').permissions
model.set 'permissions', [{access: 'owner', target: me.id}]
res = model.save()
return unless res
modal = @$el.find('#new-model-modal')
2014-01-27 14:30:22 -05:00
forms.clearFormAlerts(modal)
2014-01-03 13:32:13 -05:00
@showLoading(modal.find('.modal-body'))
res.error =>
@hideLoading()
forms.applyErrorsToForm(modal, JSON.parse(res.responseText))
that = @
2014-01-03 13:32:13 -05:00
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: ->
2014-02-27 02:38:03 -05:00
@$el.find('#name').focus()