2014-04-09 15:11:59 -04:00
|
|
|
module.exports = class SuperModel extends Backbone.Model
|
2014-01-03 13:32:13 -05:00
|
|
|
constructor: ->
|
|
|
|
@models = {}
|
|
|
|
@collections = {}
|
2014-03-08 17:34:25 -05:00
|
|
|
@schemas = {}
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
populateModel: (model) ->
|
|
|
|
@mustPopulate = model
|
2014-01-26 17:46:25 -05:00
|
|
|
model.saveBackups = @shouldSaveBackups(model)
|
2014-04-09 15:11:59 -04:00
|
|
|
# model.fetch() unless model.loaded or model.loading
|
2014-04-10 16:59:08 -04:00
|
|
|
# @listenToOnce(model, 'sync', @modelLoaded) unless model.loaded
|
|
|
|
# @listenToOnce(model, 'error', @modelErrored) unless model.loaded
|
2014-01-03 13:32:13 -05:00
|
|
|
url = model.url()
|
|
|
|
@models[url] = model unless @models[url]?
|
|
|
|
@modelLoaded(model) if model.loaded
|
|
|
|
|
2014-04-09 15:11:59 -04:00
|
|
|
modelRes = @addModelResource(model, url)
|
|
|
|
schema = model.schema()
|
|
|
|
schemaRes = @addModelResource(schema, schema.urlRoot)
|
|
|
|
@schemas[schema.urlRoot] = schema
|
|
|
|
modelRes.addDependency(schemaRes.name)
|
|
|
|
|
|
|
|
modelRes.load()
|
|
|
|
|
2014-01-26 17:46:25 -05:00
|
|
|
# replace or overwrite
|
2014-02-15 18:44:45 -05:00
|
|
|
shouldLoadReference: (model) -> true
|
2014-02-15 20:29:54 -05:00
|
|
|
shouldLoadProjection: (model) -> false
|
2014-02-15 18:44:45 -05:00
|
|
|
shouldPopulate: (url) -> true
|
|
|
|
shouldSaveBackups: (model) -> false
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2014-02-11 19:09:44 -05:00
|
|
|
modelErrored: (model) ->
|
2014-01-03 13:32:13 -05:00
|
|
|
@trigger 'error'
|
2014-02-11 19:09:44 -05:00
|
|
|
@removeEventsFromModel(model)
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2014-04-10 16:59:08 -04:00
|
|
|
modelLoaded: (model) ->
|
2014-01-03 13:32:13 -05:00
|
|
|
@trigger 'loaded-one', model: model
|
2014-02-11 19:09:44 -05:00
|
|
|
@removeEventsFromModel(model)
|
2014-02-12 16:10:58 -05:00
|
|
|
|
2014-02-11 19:09:44 -05:00
|
|
|
removeEventsFromModel: (model) ->
|
|
|
|
model.off 'sync', @modelLoaded, @
|
|
|
|
model.off 'error', @modelErrored, @
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
getModel: (ModelClass_or_url, id) ->
|
|
|
|
return @getModelByURL(ModelClass_or_url) if _.isString(ModelClass_or_url)
|
|
|
|
m = new ModelClass_or_url(_id: id)
|
|
|
|
return @getModelByURL(m.url())
|
|
|
|
|
|
|
|
getModelByURL: (modelURL) ->
|
|
|
|
return @models[modelURL] or null
|
|
|
|
|
|
|
|
getModelByOriginalAndMajorVersion: (ModelClass, original, majorVersion=0) ->
|
|
|
|
_.find @models, (m) ->
|
|
|
|
m.get('original') is original and m.get('version').major is majorVersion and m.constructor.className is ModelClass.className
|
|
|
|
|
|
|
|
getModels: (ModelClass) ->
|
|
|
|
# can't use instanceof. SuperModel gets passed between windows, and one window
|
|
|
|
# will have different class objects than another window.
|
|
|
|
# So compare className instead.
|
|
|
|
return (m for key, m of @models when m.constructor.className is ModelClass.className) if ModelClass
|
|
|
|
return _.values @models
|
|
|
|
|
|
|
|
addModel: (model) ->
|
|
|
|
url = model.url()
|
|
|
|
return console.warn "Tried to add Model '#{url}' to SuperModel, but it wasn't loaded." unless model.loaded
|
|
|
|
#return console.warn "Tried to add Model '#{url}' to SuperModel when we already had it." if @models[url]?
|
|
|
|
@models[url] = model
|
|
|
|
|
|
|
|
getCollection: (collection) ->
|
|
|
|
url = collection.url
|
|
|
|
url = url() if _.isFunction(url)
|
|
|
|
return @collections[url] or collection
|
|
|
|
|
|
|
|
addCollection: (collection) ->
|
|
|
|
url = collection.url
|
|
|
|
url = url() if _.isFunction(url)
|
|
|
|
if @collections[url]?
|
|
|
|
return console.warn "Tried to add Collection '#{url}' to SuperModel when we already had it."
|
|
|
|
@collections[url] = collection
|
|
|
|
|
|
|
|
# consolidate models
|
|
|
|
for model, i in collection.models
|
|
|
|
cachedModel = @getModelByURL(model.url())
|
|
|
|
if cachedModel
|
|
|
|
collection.models[i] = cachedModel
|
|
|
|
else
|
|
|
|
@addModel(model)
|
|
|
|
collection
|
|
|
|
|
|
|
|
finished: ->
|
2014-04-10 16:59:08 -04:00
|
|
|
return ResourceManager.progress == 1.0 or Object.keys(ResourceManager.resources).length == 0
|
2014-04-09 15:11:59 -04:00
|
|
|
|
|
|
|
|
|
|
|
addModelResource: (modelOrCollection, name, fetchOptions, value=1)->
|
|
|
|
@checkName(name)
|
|
|
|
res = new ModelResource(modelOrCollection, name, fetchOptions, value)
|
|
|
|
@storeResource(name, res, value)
|
|
|
|
return res
|
|
|
|
|
|
|
|
addRequestResource: (name, jqxhrOptions, value=1)->
|
|
|
|
@checkName(name)
|
|
|
|
res = new RequestResource(name, jqxhrOptions, value)
|
|
|
|
@storeResource(name, res, value)
|
|
|
|
return res
|
|
|
|
|
|
|
|
addSomethingResource: (name, value=1)->
|
|
|
|
@checkName(name)
|
|
|
|
res = new SomethingResource(name, value)
|
|
|
|
@storeResource(name, res, value)
|
|
|
|
return res
|
|
|
|
|
|
|
|
checkName: (name)->
|
|
|
|
if not name
|
|
|
|
throw new Error('Resource name should not be empty.')
|
|
|
|
if name in ResourceManager.resources
|
|
|
|
throw new Error('Resource name has been used.')
|
|
|
|
|
|
|
|
storeResource: (name, resource, value)->
|
|
|
|
ResourceManager.resources[name] = resource
|
|
|
|
@listenToOnce(resource, 'resource:loaded', @onResourceLoaded)
|
|
|
|
@listenToOnce(resource, 'resource:failed', @onResourceFailed)
|
2014-04-10 16:59:08 -04:00
|
|
|
ResourceManager.denom += value
|
2014-04-09 15:11:59 -04:00
|
|
|
|
|
|
|
loadResources: ()->
|
|
|
|
for name, res of ResourceManager.resources
|
|
|
|
res.load()
|
|
|
|
|
|
|
|
onResourceLoaded: (r)=>
|
2014-04-10 16:59:08 -04:00
|
|
|
@modelLoaded(r.model)
|
2014-04-09 15:11:59 -04:00
|
|
|
# Check if the model has references
|
|
|
|
if r.constructor.name == 'ModelResource'
|
|
|
|
model = r.model
|
|
|
|
@addModelRefencesToLoad(model)
|
|
|
|
@updateProgress(r)
|
|
|
|
else
|
|
|
|
@updateProgress(r)
|
|
|
|
|
|
|
|
onResourceFailed: (r)=>
|
2014-04-10 16:59:08 -04:00
|
|
|
@modelErrored(r.model)
|
2014-04-09 15:11:59 -04:00
|
|
|
|
|
|
|
addModelRefencesToLoad: (model)->
|
|
|
|
schema = model.schema?()
|
|
|
|
return unless schema
|
|
|
|
|
|
|
|
refs = model.getReferencedModels(model.attributes, schema.attributes, '/', @shouldLoadProjection)
|
|
|
|
refs = [] unless @mustPopulate is model or @shouldPopulate(model)
|
|
|
|
|
|
|
|
for ref, i in refs when @shouldLoadReference ref
|
|
|
|
ref.saveBackups = @shouldSaveBackups(ref)
|
|
|
|
refURL = ref.url()
|
|
|
|
|
|
|
|
continue if @models[refURL]
|
|
|
|
|
|
|
|
@models[refURL] = ref
|
|
|
|
res = @addModelResource(ref, refURL)
|
|
|
|
res.load()
|
|
|
|
|
|
|
|
updateProgress: (r)=>
|
2014-04-10 16:59:08 -04:00
|
|
|
ResourceManager.num += r.value
|
|
|
|
ResourceManager.progress = ResourceManager.num / ResourceManager.denom
|
2014-04-09 15:11:59 -04:00
|
|
|
|
2014-04-10 16:59:08 -04:00
|
|
|
@trigger('superModel:updateProgress', ResourceManager.progress)
|
2014-04-09 15:11:59 -04:00
|
|
|
@trigger 'loaded-all' if @finished()
|
|
|
|
|
|
|
|
getResource: (name)->
|
|
|
|
return ResourceManager.resources[name]
|
|
|
|
|
2014-04-10 16:59:08 -04:00
|
|
|
getProgress: ()-> return ResourceManager.progress
|
|
|
|
|
2014-04-09 15:11:59 -04:00
|
|
|
# Both SuperModel and Resource access this class.
|
2014-04-10 16:59:08 -04:00
|
|
|
# Set resources as static so no need to load resources multiple times when more than one view is used.
|
2014-04-09 15:11:59 -04:00
|
|
|
class ResourceManager
|
2014-04-10 16:59:08 -04:00
|
|
|
@num = 0
|
|
|
|
@denom = 0
|
|
|
|
@showing = false
|
|
|
|
@progress = 0
|
2014-04-09 15:11:59 -04:00
|
|
|
@resources: {}
|
|
|
|
|
|
|
|
class Resource extends Backbone.Model
|
|
|
|
constructor: (name, value=1)->
|
|
|
|
@name = name
|
|
|
|
@value = value
|
|
|
|
@dependencies = []
|
|
|
|
@isLoading = false
|
|
|
|
@isLoaded = false
|
|
|
|
@model = null
|
|
|
|
@loadDeferred = null
|
|
|
|
@value = 1
|
|
|
|
|
|
|
|
addDependency: (name)->
|
|
|
|
depRes = ResourceManager.resources[name]
|
|
|
|
throw new Error('Resource not found') unless depRes
|
|
|
|
return if (depRes.isLoaded or name == @name)
|
|
|
|
@dependencies.push(name)
|
|
|
|
|
|
|
|
markLoaded: ()->
|
|
|
|
@trigger('resource:loaded', @) if not @isLoaded
|
|
|
|
@isLoaded = true
|
|
|
|
@isLoading = false
|
|
|
|
|
|
|
|
markFailed: ()->
|
|
|
|
@trigger('resource:failed', @) if not @isLoaded
|
|
|
|
@isLoaded = false
|
|
|
|
@isLoading = false
|
|
|
|
|
|
|
|
load: ()->
|
|
|
|
isReadyForLoad: ()-> return not (@isloaded and @isLoading)
|
|
|
|
getModel: ()-> @model
|
|
|
|
|
|
|
|
class ModelResource extends Resource
|
|
|
|
constructor: (modelOrCollection, name, fetchOptions, value)->
|
|
|
|
super(name, value)
|
|
|
|
@model = modelOrCollection
|
|
|
|
@fetchOptions = fetchOptions
|
|
|
|
|
|
|
|
load: ()->
|
|
|
|
return @loadDeferred.promise() if @isLoading or @isLoaded
|
|
|
|
|
|
|
|
@isLoading = true
|
|
|
|
@loadDeferred = $.Deferred()
|
|
|
|
$.when.apply($, @loadDependencies())
|
|
|
|
.then(@onLoadDependenciesSuccess, @onLoadDependenciesFailed)
|
|
|
|
.always(()=> @isLoading = false)
|
|
|
|
|
|
|
|
return @loadDeferred.promise()
|
|
|
|
|
|
|
|
loadDependencies: ()->
|
|
|
|
promises = []
|
|
|
|
|
|
|
|
for resName in @dependencies
|
|
|
|
dep = ResourceManager.resources[resName]
|
|
|
|
continue if not dep.isReadyForLoad()
|
|
|
|
promises.push(dep.load())
|
|
|
|
|
|
|
|
return promises
|
|
|
|
|
|
|
|
onLoadDependenciesSuccess: ()=>
|
|
|
|
@model.fetch(@fetchOptions)
|
|
|
|
|
|
|
|
@listenToOnce(@model, 'sync', ()=>
|
|
|
|
@markLoaded()
|
|
|
|
@loadDeferred.resolve(@)
|
|
|
|
)
|
|
|
|
|
|
|
|
@listenToOnce(@model, 'error', ()=>
|
|
|
|
@markFailed()
|
|
|
|
@loadDeferred.reject(@)
|
|
|
|
)
|
|
|
|
|
|
|
|
onLoadDependenciesFailed: ()=>
|
|
|
|
@markFailed()
|
|
|
|
@loadDeferred.reject(@)
|
|
|
|
|
|
|
|
|
|
|
|
class RequestResource extends Resource
|
|
|
|
constructor: (name, jqxhrOptions, value)->
|
|
|
|
super(name, value)
|
|
|
|
@model = $.ajax(jqxhrOptions)
|
|
|
|
@jqxhrOptions = jqxhrOptions
|
|
|
|
@loadDeferred = @model
|
|
|
|
|
|
|
|
load: ()->
|
|
|
|
return @loadDeferred.promise() if @isLoading or @isLoaded
|
|
|
|
|
|
|
|
@isLoading = true
|
|
|
|
$.when.apply($, @loadDependencies())
|
|
|
|
.then(@onLoadDependenciesSuccess, @onLoadDependenciesFailed)
|
|
|
|
.always(()=> @isLoading = false)
|
|
|
|
|
|
|
|
return @loadDeferred.promise()
|
|
|
|
|
|
|
|
loadDependencies: ()->
|
|
|
|
promises = []
|
|
|
|
for depName in @dependecies
|
|
|
|
dep = ResourceManager.resources[depName]
|
|
|
|
continue if not dep.isReadyForLoad()
|
|
|
|
promises.push(dep.load())
|
|
|
|
|
|
|
|
return promises
|
|
|
|
|
|
|
|
onLoadDependenciesSuccess: ()->
|
|
|
|
@model = $.ajax(@jqxhrOptions)
|
|
|
|
@model.done(()=> @markLoaded()).failed(()=> @markFailed())
|
|
|
|
|
|
|
|
onLoadDependenciesFailed: ()->
|
|
|
|
@markFailed()
|
|
|
|
|
|
|
|
|
|
|
|
class SomethingResource extends Resource
|
|
|
|
constructor: (name, value)->
|
|
|
|
super(value)
|
|
|
|
@name = name
|
|
|
|
@loadDeferred = $.Deferred()
|
|
|
|
|
|
|
|
load: ()->
|
|
|
|
return @loadDeferred.promise()
|
|
|
|
|
|
|
|
markLoaded: ()->
|
|
|
|
@loadDeferred.resolve()
|
|
|
|
super()
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2014-04-09 15:11:59 -04:00
|
|
|
markFailed: ()->
|
|
|
|
@loadDeferred.reject()
|
|
|
|
super()
|