mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
76 lines
2.2 KiB
CoffeeScript
76 lines
2.2 KiB
CoffeeScript
ModalView = require 'views/kinds/ModalView'
|
|
template = require 'templates/editor/patch_modal'
|
|
DeltaView = require 'views/editor/DeltaView'
|
|
auth = require 'lib/auth'
|
|
|
|
module.exports = class PatchModal extends ModalView
|
|
id: 'patch-modal'
|
|
template: template
|
|
plain: true
|
|
modalWidthPercent: 60
|
|
@DOC_SKIP_PATHS = [
|
|
'_id','version', 'commitMessage', 'parent', 'created',
|
|
'slug', 'index', '__v', 'patches', 'creator', 'js', 'watchers']
|
|
|
|
events:
|
|
'click #withdraw-button': 'withdrawPatch'
|
|
'click #reject-button': 'rejectPatch'
|
|
'click #accept-button': 'acceptPatch'
|
|
|
|
constructor: (@patch, @targetModel, options) ->
|
|
super(options)
|
|
targetID = @patch.get('target').id
|
|
if targetID is @targetModel.id
|
|
@originalSource = @targetModel.clone(false)
|
|
else
|
|
@originalSource = new @targetModel.constructor({_id:targetID})
|
|
@supermodel.loadModel @originalSource, 'source_document'
|
|
|
|
applyDelta: ->
|
|
@headModel = null
|
|
if @targetModel.hasWriteAccess()
|
|
@headModel = @originalSource.clone(false)
|
|
@headModel.markToRevert true
|
|
@headModel.set(@targetModel.attributes)
|
|
@headModel.loaded = true
|
|
|
|
@pendingModel = @originalSource.clone(false)
|
|
@pendingModel.markToRevert true
|
|
@deltaWorked = @pendingModel.applyDelta(@patch.get('delta'))
|
|
@pendingModel.loaded = true
|
|
|
|
render: ->
|
|
@applyDelta() if @supermodel.finished()
|
|
super()
|
|
|
|
getRenderData: ->
|
|
c = super()
|
|
c.isPatchCreator = @patch.get('creator') is auth.me.id
|
|
c.isPatchRecipient = @targetModel.hasWriteAccess()
|
|
c.status = @patch.get 'status'
|
|
c.patch = @patch
|
|
c.deltaWorked = @deltaWorked
|
|
c
|
|
|
|
afterRender: ->
|
|
return super() unless @supermodel.finished() and @deltaWorked
|
|
@deltaView = new DeltaView({model:@pendingModel, headModel:@headModel, skipPaths: PatchModal.DOC_SKIP_PATHS})
|
|
changeEl = @$el.find('.changes-stub')
|
|
@insertSubView(@deltaView, changeEl)
|
|
super()
|
|
|
|
acceptPatch: ->
|
|
delta = @deltaView.getApplicableDelta()
|
|
@targetModel.applyDelta(delta)
|
|
@targetModel.saveBackupNow()
|
|
@patch.setStatus('accepted')
|
|
@trigger 'accepted-patch'
|
|
@hide()
|
|
|
|
rejectPatch: ->
|
|
@patch.setStatus('rejected')
|
|
@hide()
|
|
|
|
withdrawPatch: ->
|
|
@patch.setStatus('withdrawn')
|
|
@hide()
|