codecombat/app/views/artisans/SolutionProblemsView.coffee

159 lines
4.7 KiB
CoffeeScript
Raw Normal View History

RootView = require 'views/core/RootView'
template = require 'templates/artisans/solutionProblemsView'
Level = require 'models/Level'
Campaign = require 'models/Campaign'
2016-04-07 17:48:40 -04:00
Level = require 'models/Level'
CocoCollection = require 'collections/CocoCollection'
module.exports = class SolutionProblemsView extends RootView
template: template
id: 'solution-problems-view'
2016-04-07 17:48:40 -04:00
excludedCampaigns = [
"picoctf"
"auditions"
2016-04-20 14:15:26 -04:00
# "dungeon"
# "forest"
# "desert"
# "mountain"
# "glacier"
2016-04-20 14:15:26 -04:00
"dungeon-branching-test"
"forest-branching-test"
"desert-branching-test"
"intro"
"course-2"
"course-3"
"course-4"
"course-5"
2016-04-20 14:15:26 -04:00
"course-6"
]
excludedSimulationLevels = [
"wakka-maul"
"cross-bones"
2016-04-07 17:48:40 -04:00
]
2016-04-20 14:15:26 -04:00
levelOffset: 0
isReady: 0
constructor: (options) ->
super options
@campaigns = new CocoCollection([],
url: '/db/campaign?project=slug'
model: Campaign
)
@campaigns.fetch()
@listenTo(@campaigns, 'sync', @onCampaignsLoaded)
@supermodel.loadCollection(@campaigns, 'campaigns')
###
2016-04-20 14:15:26 -04:00
@levels = new CocoCollection([],
url: '/db/level?project=slug,thangs&limit=100&skip=' + @levelOffset
model: Level
)
2016-04-07 17:48:40 -04:00
@levels.fetch()
@listenTo(@levels, 'sync', @onLevelsLoaded)
@supermodel.loadCollection(@levels, 'levels')
###
2016-04-07 17:48:40 -04:00
onCampaignsLoaded: ->
2016-04-07 17:48:40 -04:00
@levelSlugs = []
@test = {}
@loadedLevels = {}
count = 0
2016-04-07 17:48:40 -04:00
for campaign in @campaigns.models
continue unless excludedCampaigns.indexOf(campaign.get 'slug') is -1
count++
@test[campaign.get('slug')] = new CocoCollection([],
url: '/db/campaign/' + campaign.get('slug') + '/levels?project=thangs,slug'
2016-04-20 14:15:26 -04:00
model: Level
)
@test[campaign.get('slug')].fetch()
@listenTo(@test[campaign.get('slug')], 'sync', (e) ->
#@loadedLevels = _uniq(_.union(@loadedLevels, e.models))
for level in e.models
@loadedLevels[level.get('slug')] = level
count--
if count is 0
@readyUp()
)
@supermodel.loadCollection(@test[campaign.get('slug')], 'levels')
2016-04-08 18:50:04 -04:00
2016-04-07 17:48:40 -04:00
readyUp: ->
console.log("Count of levels: " + _.size(@loadedLevels))
2016-04-08 18:50:04 -04:00
@parsedLevels = []
@problemCount = 0
for levelSlug, level of @loadedLevels
2016-04-07 17:48:40 -04:00
unless level?
continue
thangs = level.get('thangs')
2016-04-08 18:50:04 -04:00
component = null
thang = _.findWhere(thangs, (elem) ->
2016-04-20 14:15:26 -04:00
return elem.id is "Hero Placeholder" and _.findWhere(elem.components, (elem2) ->
2016-04-08 18:50:04 -04:00
if elem2.config?.programmableMethods?.plan?
component = elem2
return true
)
)
2016-04-20 14:15:26 -04:00
unless thang? and component
2016-04-08 18:50:04 -04:00
console.log("Cannot find programmableMethods component in: " + levelSlug)
continue
unless component?.config?.programmableMethods?.plan?
console.log("Cannot find plannable method inside component: " + levelSlug)
continue
2016-04-20 14:15:26 -04:00
plan = component.config.programmableMethods.plan
solutions = plan.solutions
2016-04-08 18:50:04 -04:00
problems = []
2016-04-20 14:15:26 -04:00
for lang in ["python", "javascript"]
2016-04-08 18:50:04 -04:00
unless _.findWhere(solutions, (elem) -> return elem.language is lang)
problems.push {
"type":"Missing Solution Language",
"value":lang
}
2016-04-20 14:15:26 -04:00
2016-04-08 18:50:04 -04:00
for solutionIndex of solutions
solution = solutions[solutionIndex]
2016-04-20 14:15:26 -04:00
if excludedSimulationLevels.indexOf(levelSlug) is -1
for req in ["seed", "succeeds", "heroConfig", 'lastHash', 'frameCount', 'goals']
unless solution[req]?
problems.push {
"type":"Solution is not simulatable",
"value":solution.language
}
@problemCount++
2016-04-20 14:15:26 -04:00
break
if solution.source.indexOf("<%=") is -1
problems.push {
"type":"Solution is not i18n'd",
"value":solution.language
}
@problemCount++
2016-04-20 14:15:26 -04:00
if solution.source.indexOf("pass") isnt -1
problems.push {
"type":"Solution contains pass",
"value":solution.language
}
@problemCount++
2016-04-20 14:15:26 -04:00
if solution.language is 'javascript'
if solution.source is plan.source
2016-04-08 18:50:04 -04:00
problems.push {
2016-04-20 14:15:26 -04:00
"type":"Solution is identical to source",
"value":solution.language
}
@problemCount++
2016-04-20 14:15:26 -04:00
else
#console.log solution.source
#console.log plan.languages[solution.language]
2016-04-20 14:15:26 -04:00
if solution.source is plan.languages[solution.language]
problems.push {
"type":"Solution is identical to source",
2016-04-08 18:50:04 -04:00
"value":solution.language
}
@problemCount++
2016-04-08 18:50:04 -04:00
@parsedLevels.push {
level: level
problems: problems
}
2016-04-20 14:15:26 -04:00
@renderSelectors '#levelTable'