2014-01-03 13:32:13 -05:00
|
|
|
View = require 'views/kinds/RootView'
|
|
|
|
template = require 'templates/editor/article/edit'
|
|
|
|
Article = require 'models/Article'
|
|
|
|
|
|
|
|
module.exports = class ArticleEditView extends View
|
|
|
|
id: "editor-article-edit-view"
|
|
|
|
template: template
|
|
|
|
startsLoading: true
|
|
|
|
|
|
|
|
events:
|
|
|
|
'click #preview-button': 'openPreview'
|
2014-01-07 02:45:33 -05:00
|
|
|
|
2014-01-03 13:32:13 -05:00
|
|
|
subscriptions:
|
|
|
|
'save-new-version': 'saveNewArticle'
|
|
|
|
|
|
|
|
constructor: (options, @articleID) ->
|
|
|
|
super options
|
|
|
|
@article = new Article(_id: @articleID)
|
2014-01-26 17:46:25 -05:00
|
|
|
@article.saveBackups = true
|
2014-01-03 13:32:13 -05:00
|
|
|
@article.fetch()
|
|
|
|
@article.once('sync', @onArticleSync)
|
|
|
|
@article.on('schema-loaded', @buildTreema)
|
|
|
|
@pushChangesToPreview = _.throttle(@pushChangesToPreview, 500)
|
|
|
|
|
|
|
|
onArticleSync: =>
|
|
|
|
@article.loaded = true
|
|
|
|
@buildTreema()
|
|
|
|
|
|
|
|
buildTreema: =>
|
|
|
|
return if @treema? or (not @article.loaded) or (not Article.hasSchema())
|
|
|
|
unless @article.attributes.body
|
|
|
|
@article.set('body', '')
|
|
|
|
@startsLoading = false
|
|
|
|
@render()
|
|
|
|
data = $.extend(true, {}, @article.attributes)
|
|
|
|
options =
|
|
|
|
data: data
|
2014-02-26 22:30:37 -05:00
|
|
|
filePath: "db/thang.type/#{@article.get('original')}"
|
2014-01-03 13:32:13 -05:00
|
|
|
schema: Article.schema.attributes
|
|
|
|
callbacks:
|
|
|
|
change: @pushChangesToPreview
|
|
|
|
options.readOnly = true unless me.isAdmin()
|
|
|
|
@treema = @$el.find('#article-treema').treema(options)
|
2014-01-07 02:45:33 -05:00
|
|
|
|
2014-01-03 13:32:13 -05:00
|
|
|
@treema.build()
|
|
|
|
|
|
|
|
pushChangesToPreview: =>
|
2014-01-26 17:46:25 -05:00
|
|
|
for key, value of @treema.data
|
|
|
|
@article.set(key, value)
|
2014-01-03 13:32:13 -05:00
|
|
|
return unless @treema and @preview
|
|
|
|
m = marked(@treema.data.body)
|
|
|
|
b = $(@preview.document.body)
|
|
|
|
b.find('#insert').html(m)
|
|
|
|
b.find('#title').text(@treema.data.name)
|
|
|
|
|
2014-02-11 17:58:45 -05:00
|
|
|
getRenderData: (context={}) ->
|
2014-01-03 13:32:13 -05:00
|
|
|
context = super(context)
|
|
|
|
context.article = @article
|
|
|
|
context
|
|
|
|
|
|
|
|
openPreview: =>
|
|
|
|
@preview = window.open('http://localhost:3000/editor/article/x/preview', 'preview', 'height=800,width=600')
|
|
|
|
@preview.focus() if window.focus
|
|
|
|
@preview.onload = => @pushChangesToPreview()
|
|
|
|
return false
|
|
|
|
|
|
|
|
saveNewArticle: (e) ->
|
|
|
|
@treema.endExistingEdits()
|
|
|
|
for key, value of @treema.data
|
|
|
|
@article.set(key, value)
|
2014-01-07 02:45:33 -05:00
|
|
|
|
2014-01-03 13:32:13 -05:00
|
|
|
newArticle = if e.major then @article.cloneNewMajorVersion() else @article.cloneNewMinorVersion()
|
|
|
|
newArticle.set('commitMessage', e.commitMessage)
|
|
|
|
res = newArticle.save()
|
|
|
|
return unless res
|
|
|
|
modal = @$el.find('#save-version-modal')
|
|
|
|
@enableModalInProgress(modal)
|
|
|
|
|
|
|
|
res.error =>
|
|
|
|
@disableModalInProgress(modal)
|
|
|
|
|
|
|
|
res.success =>
|
|
|
|
modal.modal('hide')
|
|
|
|
url = "/editor/article/#{newArticle.get('slug') or newArticle.id}"
|
|
|
|
document.location.href = url
|