diff --git a/package.json b/package.json index 60b101277c..38713a683c 100644 --- a/package.json +++ b/package.json @@ -28,18 +28,19 @@ "daemon": "~1.1.0", "express": "^4.9.5", "express-session": "^1.8.2", - "lwip": "0.0.7", "gravatar": "^1.1.0", "heapdump": "^0.3.0", "less": "^2.0.0", "logrotate-stream": "^0.2.3", "lru-cache": "^2.6.1", + "lwip": "0.0.7", "mime": "^1.3.4", "minimist": "^1.1.1", "mkdirp": "~0.5.0", "mmmagic": "^0.3.13", "morgan": "^1.3.2", "nconf": "~0.7.1", + "nodebb-plugin-composer-default": "^1.0.0", "nodebb-plugin-dbsearch": "^0.2.12", "nodebb-plugin-emoji-extended": "^0.4.8", "nodebb-plugin-markdown": "^3.0.0", diff --git a/public/src/app.js b/public/src/app.js index 74829543af..30a7d8bc68 100644 --- a/public/src/app.js +++ b/public/src/app.js @@ -466,21 +466,23 @@ app.cacheBuster = null; function handleNewTopic() { $('#content').on('click', '#new_topic', function() { - require(['composer'], function(composer) { - var cid = ajaxify.variables.get('category_id'); - if (cid) { - composer.newTopic(cid); - } else { - socket.emit('categories.getCategoriesByPrivilege', 'topics:create', function(err, categories) { - if (err) { - return app.alertError(err.message); - } - if (categories.length) { - composer.newTopic(categories[0].cid); - } - }); - } - }); + var cid = ajaxify.variables.get('category_id'); + if (cid) { + $(window).trigger('action:composer.topic.new', { + cid: cid + }); + } else { + socket.emit('categories.getCategoriesByPrivilege', 'topics:create', function(err, categories) { + if (err) { + return app.alertError(err.message); + } + if (categories.length) { + $(window).trigger('action:composer.topic.new', { + cid: categories[0].cid + }); + } + }); + } }); } diff --git a/public/src/client/category.js b/public/src/client/category.js index 777d3f808a..d60c643462 100644 --- a/public/src/client/category.js +++ b/public/src/client/category.js @@ -2,7 +2,6 @@ /* global define, config, templates, app, utils, ajaxify, socket */ define('forum/category', [ - 'composer', 'forum/pagination', 'forum/infinitescroll', 'share', @@ -11,7 +10,7 @@ define('forum/category', [ 'sort', 'components', 'translator' -], function(composer, pagination, infinitescroll, share, navigator, categoryTools, sort, components, translator) { +], function(pagination, infinitescroll, share, navigator, categoryTools, sort, components, translator) { var Category = {}; $(window).on('action:ajaxify.start', function(ev, data) { diff --git a/public/src/client/topic/postTools.js b/public/src/client/topic/postTools.js index 4a227252a8..0ddeb8a700 100644 --- a/public/src/client/topic/postTools.js +++ b/public/src/client/topic/postTools.js @@ -108,9 +108,9 @@ define('forum/topic/postTools', ['share', 'navigator', 'components', 'translator postContainer.on('click', '[component="post/edit"]', function(e) { var btn = $(this); - require(['composer'], function(composer) { - composer.editPost(getData(btn, 'data-pid')); - }); + $(window).trigger('action:composer.post.edit', { + pid: getData(btn, 'data-pid') + }) }); postContainer.on('click', '[component="post/delete"]', function(e) { @@ -135,51 +135,61 @@ define('forum/topic/postTools', ['share', 'navigator', 'components', 'translator } function onReplyClicked(button, tid, topicName) { - require(['composer'], function(composer) { - var selectionText = '', - selection = window.getSelection ? window.getSelection() : document.selection.createRange(), - topicUUID = composer.findByTid(tid); - - if ($(selection.baseNode).parents('[component="post/content"]').length > 0) { - var snippet = selection.toString(); - if (snippet.length) { - selectionText = '> ' + snippet.replace(/\n/g, '\n> ') + '\n\n'; - } - } + var selectionText = '', + selection = window.getSelection ? window.getSelection() : document.selection.createRange(); - var username = getUserName(selectionText ? $(selection.baseNode) : button); - if (getData(button, 'data-uid') === '0') { - username = ''; - } - if (selectionText.length) { - composer.addQuote(tid, ajaxify.variables.get('topic_slug'), getData(button, 'data-index'), getData(button, 'data-pid'), topicName, username, selectionText, topicUUID); - } else { - composer.newReply(tid, getData(button, 'data-pid'), topicName, username ? username + ' ' : ''); + if ($(selection.baseNode).parents('[component="post/content"]').length > 0) { + var snippet = selection.toString(); + if (snippet.length) { + selectionText = '> ' + snippet.replace(/\n/g, '\n> ') + '\n\n'; } - }); + } + var username = getUserName(selectionText ? $(selection.baseNode) : button); + if (getData(button, 'data-uid') === '0') { + username = ''; + } + if (selectionText.length) { + $(window).trigger('action:composer.addQuote', { + tid: tid, + slug: ajaxify.variables.get('topic_slug'), + index: getData(button, 'data-index'), + pid: getData(button, 'data-pid'), + topicName: topicName, + username: username, + text: selectionText + }); + } else { + $(window).trigger('action:composer.post.new', { + tid: tid, + pid: ajaxify.variables.get('pid'), + topicName: topicName, + text: username + ' ' || '' + }); + } } function onQuoteClicked(button, tid, topicName) { - require(['composer'], function(composer) { - var username = getUserName(button), - pid = getData(button, 'data-pid'), - topicUUID = composer.findByTid(tid); - - socket.emit('posts.getRawPost', pid, function(err, post) { - if(err) { - return app.alertError(err.message); - } - var quoted = ''; - if(post) { - quoted = '> ' + post.replace(/\n/g, '\n> ') + '\n\n'; - } + var username = getUserName(button), + pid = getData(button, 'data-pid'); - if(topicUUID) { - composer.addQuote(tid, ajaxify.variables.get('topic_slug'), getData(button, 'data-index'), pid, topicName, username, quoted, topicUUID); - } else { - composer.newReply(tid, pid, topicName, '[[modules:composer.user_said, ' + username + ']]\n' + quoted); - } + socket.emit('posts.getRawPost', pid, function(err, post) { + if(err) { + return app.alertError(err.message); + } + var quoted = ''; + if(post) { + quoted = '> ' + post.replace(/\n/g, '\n> ') + '\n\n'; + } + + $(window).trigger('action:composer.addQuote', { + tid: tid, + slug: ajaxify.variables.get('topic_slug'), + index: getData(button, 'data-index'), + pid: pid, + username: username, + topicName: topicName, + text: quoted }); }); } diff --git a/public/src/modules/composer.js b/public/src/modules/composer.js deleted file mode 100644 index 1e32892617..0000000000 --- a/public/src/modules/composer.js +++ /dev/null @@ -1,595 +0,0 @@ -'use strict'; - -/* globals define, socket, app, config, ajaxify, utils, templates, bootbox */ - -define('composer', [ - 'taskbar', - 'translator', - 'composer/controls', - 'composer/uploads', - 'composer/formatting', - 'composer/drafts', - 'composer/tags', - 'composer/categoryList', - 'composer/preview', - 'composer/resize' -], function(taskbar, translator, controls, uploads, formatting, drafts, tags, categoryList, preview, resize) { - var composer = { - active: undefined, - posts: {}, - bsEnvironment: undefined, - formatting: [] - }; - - $(window).off('resize', onWindowResize).on('resize', onWindowResize); - - $(window).on('action:composer.topics.post', function(ev, data) { - localStorage.removeItem('category:' + data.data.cid + ':bookmark'); - localStorage.removeItem('category:' + data.data.cid + ':bookmark:clicked'); - }); - - $(window).on('popstate', function(ev, data) { - var env = utils.findBootstrapEnvironment(); - - if (composer.active && (env === 'xs' || env ==='sm')) { - if (!composer.posts[composer.active].modified) { - discard(composer.active); - return; - } - - translator.translate('[[modules:composer.discard]]', function(translated) { - bootbox.confirm(translated, function(confirm) { - if (confirm) { - discard(composer.active); - } - }); - }); - } - }); - - function removeComposerHistory() { - var env = utils.findBootstrapEnvironment(); - if (env === 'xs' || env ==='sm') { - history.back(); - } - } - - // Query server for formatting options - socket.emit('modules.composer.getFormattingOptions', function(err, options) { - composer.formatting = options; - }); - - function onWindowResize() { - if (composer.active !== undefined) { - resize.reposition($('#cmp-uuid-' + composer.active)); - } - } - - function alreadyOpen(post) { - // If a composer for the same cid/tid/pid is already open, return the uuid, else return bool false - var type, id; - - if (post.hasOwnProperty('cid')) { - type = 'cid'; - } else if (post.hasOwnProperty('tid')) { - type = 'tid'; - } else if (post.hasOwnProperty('pid')) { - type = 'pid'; - } - - id = post[type]; - - // Find a match - for(var uuid in composer.posts) { - if (composer.posts[uuid].hasOwnProperty(type) && id === composer.posts[uuid][type]) { - return uuid; - } - } - - // No matches... - return false; - } - - function push(post) { - var uuid = utils.generateUUID(), - existingUUID = alreadyOpen(post); - - if (existingUUID) { - taskbar.updateActive(existingUUID); - return composer.load(existingUUID); - } - - translator.translate('[[topic:composer.new_topic]]', function(newTopicStr) { - taskbar.push('composer', uuid, { - title: post.title ? post.title : newTopicStr - }); - }); - - // Construct a save_id - if (0 !== parseInt(app.user.uid, 10)) { - if (post.hasOwnProperty('cid')) { - post.save_id = ['composer', app.user.uid, 'cid', post.cid].join(':'); - } else if (post.hasOwnProperty('tid')) { - post.save_id = ['composer', app.user.uid, 'tid', post.tid].join(':'); - } else if (post.hasOwnProperty('pid')) { - post.save_id = ['composer', app.user.uid, 'pid', post.pid].join(':'); - } - } - - composer.posts[uuid] = post; - composer.load(uuid); - } - - function composerAlert(post_uuid, message) { - $('#cmp-uuid-' + post_uuid).find('.composer-submit').removeAttr('disabled'); - app.alert({ - type: 'danger', - timeout: 3000, - title: '', - message: message, - alert_id: 'post_error' - }); - } - - composer.findByTid = function(tid) { - // Iterates through the initialised composers and returns the uuid of the matching composer - for(var uuid in composer.posts) { - if (composer.posts.hasOwnProperty(uuid) && composer.posts[uuid].hasOwnProperty('tid') && parseInt(composer.posts[uuid].tid, 10) === parseInt(tid, 10)) { - return uuid; - } - } - - return null; - }; - - composer.addButton = function(iconClass, onClick) { - formatting.addButton(iconClass, onClick); - }; - - composer.newTopic = function(cid) { - socket.emit('categories.isModerator', cid, function(err, isMod) { - if (err) { - return app.alertError(err.message); - } - push({ - cid: cid, - title: '', - body: '', - modified: false, - isMain: true, - isMod: isMod - }); - }); - }; - - composer.addQuote = function(tid, topicSlug, postIndex, pid, title, username, text, uuid) { - uuid = uuid || composer.active; - - if (uuid === undefined) { - composer.newReply(tid, pid, title, '[[modules:composer.user_said, ' + username + ']]\n' + text); - return; - } else if (uuid !== composer.active) { - // If the composer is not currently active, activate it - composer.load(uuid); - } - - var postContainer = $('#cmp-uuid-' + uuid); - var bodyEl = postContainer.find('textarea'); - var prevText = bodyEl.val(); - if (parseInt(tid, 10) !== parseInt(composer.posts[uuid].tid, 10)) { - var link = '[' + title + '](/topic/' + topicSlug + '/' + (parseInt(postIndex, 10) + 1) + ')'; - translator.translate('[[modules:composer.user_said_in, ' + username + ', ' + link + ']]\n', config.defaultLang, onTranslated); - } else { - translator.translate('[[modules:composer.user_said, ' + username + ']]\n', config.defaultLang, onTranslated); - } - - function onTranslated(translated) { - composer.posts[uuid].body = (prevText.length ? prevText + '\n\n' : '') + translated + text; - bodyEl.val(composer.posts[uuid].body); - focusElements(postContainer); - preview.render(postContainer); - } - }; - - composer.newReply = function(tid, pid, title, text) { - socket.emit('topics.isModerator', tid, function(err, isMod) { - if (err) { - return app.alertError(err.message); - } - translator.translate(text, config.defaultLang, function(translated) { - push({ - tid: tid, - toPid: pid, - title: $('
').text(title).html(), - body: translated, - modified: false, - isMain: false, - isMod: isMod - }); - }); - }); - }; - - composer.editPost = function(pid) { - socket.emit('modules.composer.push', pid, function(err, threadData) { - if(err) { - return app.alertError(err.message); - } - - push({ - pid: pid, - uid: threadData.uid, - handle: threadData.handle, - title: threadData.title, - body: threadData.body, - modified: false, - isMain: threadData.isMain, - topic_thumb: threadData.topic_thumb, - tags: threadData.tags - }); - }); - }; - - composer.load = function(post_uuid) { - var postContainer = $('#cmp-uuid-' + post_uuid); - if (postContainer.length) { - activate(post_uuid); - resize.reposition(postContainer); - focusElements(postContainer); - } else { - createNewComposer(post_uuid); - } - - startNotifyTyping(composer.posts[post_uuid]); - }; - - function startNotifyTyping(postData) { - function emit() { - socket.emit('modules.composer.notifyTyping', { - tid: postData.tid, - uid: app.user.uid - }); - } - - if (!parseInt(postData.tid, 10)) { - return; - } - - stopNotifyInterval(postData); - - emit(); - postData.notifyTypingIntervalId = setInterval(emit, 5000); - } - - function stopNotifyTyping(postData) { - if (!parseInt(postData.tid, 10)) { - return; - } - socket.emit('modules.composer.stopNotifyTyping', { - tid: postData.tid, - uid: app.user.uid - }); - } - - function stopNotifyInterval(postData) { - if (postData.notifyTypingIntervalId) { - clearInterval(postData.notifyTypingIntervalId); - postData.notifyTypingIntervalId = 0; - } - } - - function createNewComposer(post_uuid) { - var postData = composer.posts[post_uuid]; - - var allowTopicsThumbnail = config.allowTopicsThumbnail && postData.isMain && (config.hasImageUploadPlugin || config.allowFileUploads), - isTopic = postData ? !!postData.cid : false, - isMain = postData ? !!postData.isMain : false, - isEditing = postData ? !!postData.pid : false, - isGuestPost = postData ? parseInt(postData.uid, 10) === 0 : false; - - composer.bsEnvironment = utils.findBootstrapEnvironment(); - - // see - // https://github.com/NodeBB/NodeBB/issues/2994 and - // https://github.com/NodeBB/NodeBB/issues/1951 - // remove when 1951 is resolved - - var title = postData.title.replace(/%/g, '%').replace(/,/g, ','); - - var data = { - title: title, - mobile: composer.bsEnvironment === 'xs' || composer.bsEnvironment === 'sm', - allowTopicsThumbnail: allowTopicsThumbnail, - isTopicOrMain: isTopic || isMain, - minimumTagLength: config.minimumTagLength, - maximumTagLength: config.maximumTagLength, - isTopic: isTopic, - isEditing: isEditing, - showHandleInput: config.allowGuestHandles && (app.user.uid === 0 || (isEditing && isGuestPost && app.user.isAdmin)), - handle: postData ? postData.handle || '' : undefined, - formatting: composer.formatting, - isAdminOrMod: app.user.isAdmin || postData.isMod - }; - - if (data.mobile) { - var qs = '?p=' + window.location.pathname; - ajaxify.go('compose', function() { - renderComposer(); - }, false, qs); - } else { - renderComposer(); - } - - function renderComposer() { - parseAndTranslate('composer', data, function(composerTemplate) { - if ($('#cmp-uuid-' + post_uuid).length) { - return; - } - composerTemplate = $(composerTemplate); - - composerTemplate.attr('id', 'cmp-uuid-' + post_uuid); - - $(document.body).append(composerTemplate); - - var postContainer = $(composerTemplate[0]), - bodyEl = postContainer.find('textarea'), - draft = drafts.getDraft(postData.save_id), - submitBtn = postContainer.find('.composer-submit'); - - preview.handleToggler(postContainer); - tags.init(postContainer, composer.posts[post_uuid]); - categoryList.init(postContainer, composer.posts[post_uuid]); - - activate(post_uuid); - resize.reposition(postContainer); - - if (config.allowFileUploads || config.hasImageUploadPlugin) { - uploads.initialize(post_uuid); - } - - formatting.addHandler(postContainer); - - if (allowTopicsThumbnail) { - uploads.toggleThumbEls(postContainer, composer.posts[post_uuid].topic_thumb || ''); - } - - postContainer.on('change', 'input, textarea', function() { - composer.posts[post_uuid].modified = true; - }); - - submitBtn.on('click', function() { - var action = $(this).attr('data-action'); - - switch(action) { - case 'post-lock': - $(this).attr('disabled', true); - post(post_uuid, {lock: true}); - break; - - case 'post': // intentional fall-through - default: - $(this).attr('disabled', true); - post(post_uuid); - break; - } - }); - - postContainer.on('click', 'a[data-switch-action]', function() { - var action = $(this).attr('data-switch-action'), - label = $(this).html(); - - submitBtn.attr('data-action', action).html(label); - }); - - postContainer.find('.composer-discard').on('click', function() { - if (!composer.posts[post_uuid].modified) { - removeComposerHistory(); - discard(post_uuid); - return; - } - var btn = $(this).prop('disabled', true); - translator.translate('[[modules:composer.discard]]', function(translated) { - bootbox.confirm(translated, function(confirm) { - if (confirm) { - removeComposerHistory(); - discard(post_uuid); - } - btn.prop('disabled', false); - }); - }); - }); - - postContainer.on('click', function() { - if (!taskbar.isActive(post_uuid)) { - taskbar.updateActive(post_uuid); - } - }); - - bodyEl.on('input propertychange', function() { - preview.render(postContainer); - }); - - bodyEl.on('scroll', function() { - preview.matchScroll(postContainer); - }); - - bodyEl.val(draft ? draft : postData.body); - - preview.render(postContainer, function() { - preview.matchScroll(postContainer); - }); - - drafts.init(postContainer, postData); - - resize.handleResize(postContainer); - - handleHelp(postContainer); - - $(window).trigger('action:composer.loaded', { - post_uuid: post_uuid, - composerData: composer.posts[post_uuid] - }); - - formatting.addComposerButtons(); - focusElements(postContainer); - }); - } - } - - function parseAndTranslate(template, data, callback) { - templates.parse(template, data, function(composerTemplate) { - translator.translate(composerTemplate, callback); - }); - } - - function handleHelp(postContainer) { - var helpBtn = postContainer.find('.help'); - socket.emit('modules.composer.renderHelp', function(err, html) { - if (!err && html && html.length > 0) { - helpBtn.removeClass('hidden'); - helpBtn.on('click', function() { - bootbox.alert(html); - }); - } - }); - } - - function activate(post_uuid) { - if(composer.active && composer.active !== post_uuid) { - composer.minimize(composer.active); - } - - composer.active = post_uuid; - } - - function focusElements(postContainer) { - var title = postContainer.find('input.title'); - if (title.length) { - title.focus(); - } else { - postContainer.find('textarea').focus().putCursorAtEnd(); - } - } - - function post(post_uuid, options) { - var postData = composer.posts[post_uuid], - postContainer = $('#cmp-uuid-' + post_uuid), - handleEl = postContainer.find('.handle'), - titleEl = postContainer.find('.title'), - bodyEl = postContainer.find('textarea'), - thumbEl = postContainer.find('input#topic-thumb-url'); - - options = options || {}; - - titleEl.val(titleEl.val().trim()); - bodyEl.val(bodyEl.val().trim()); - if (thumbEl.length) { - thumbEl.val(thumbEl.val().trim()); - } - - var checkTitle = (parseInt(postData.cid, 10) || parseInt(postData.pid, 10)) && postContainer.find('input.title').length; - - if (uploads.inProgress[post_uuid] && uploads.inProgress[post_uuid].length) { - return composerAlert(post_uuid, '[[error:still-uploading]]'); - } else if (checkTitle && titleEl.val().length < parseInt(config.minimumTitleLength, 10)) { - return composerAlert(post_uuid, '[[error:title-too-short, ' + config.minimumTitleLength + ']]'); - } else if (checkTitle && titleEl.val().length > parseInt(config.maximumTitleLength, 10)) { - return composerAlert(post_uuid, '[[error:title-too-long, ' + config.maximumTitleLength + ']]'); - } else if (checkTitle && !utils.slugify(titleEl.val()).length) { - return composerAlert(post_uuid, '[[error:invalid-title]]'); - } else if (bodyEl.val().length < parseInt(config.minimumPostLength, 10)) { - return composerAlert(post_uuid, '[[error:content-too-short, ' + config.minimumPostLength + ']]'); - } else if (bodyEl.val().length > parseInt(config.maximumPostLength, 10)) { - return composerAlert(post_uuid, '[[error:content-too-long, ' + config.maximumPostLength + ']]'); - } - - var composerData = {}, action; - - if (parseInt(postData.cid, 10) > 0) { - action = 'topics.post'; - composerData = { - handle: handleEl ? handleEl.val() : undefined, - title: titleEl.val(), - content: bodyEl.val(), - topic_thumb: thumbEl.val() || '', - category_id: postData.cid, - tags: tags.getTags(post_uuid), - lock: options.lock || false - }; - } else if (parseInt(postData.tid, 10) > 0) { - action = 'posts.reply'; - composerData = { - tid: postData.tid, - handle: handleEl ? handleEl.val() : undefined, - content: bodyEl.val(), - toPid: postData.toPid, - lock: options.lock || false - }; - } else if (parseInt(postData.pid, 10) > 0) { - action = 'posts.edit'; - composerData = { - pid: postData.pid, - handle: handleEl ? handleEl.val() : undefined, - content: bodyEl.val(), - title: titleEl.val(), - topic_thumb: thumbEl.val() || '', - tags: tags.getTags(post_uuid) - }; - } - - socket.emit(action, composerData, function (err, data) { - postContainer.find('.composer-submit').removeAttr('disabled'); - if (err) { - if (err.message === '[[error:email-not-confirmed]]') { - return app.showEmailConfirmWarning(err); - } - - return app.alertError(err.message); - } - - discard(post_uuid); - drafts.removeDraft(postData.save_id); - - if (action === 'topics.post') { - ajaxify.go('topic/' + data.slug); - } else { - removeComposerHistory(); - } - - $(window).trigger('action:composer.' + action, {composerData: composerData, data: data}); - }); - } - - function discard(post_uuid) { - if (composer.posts[post_uuid]) { - $('#cmp-uuid-' + post_uuid).remove(); - drafts.removeDraft(composer.posts[post_uuid].save_id); - stopNotifyInterval(composer.posts[post_uuid]); - stopNotifyTyping(composer.posts[post_uuid]); - - delete composer.posts[post_uuid]; - composer.active = undefined; - taskbar.discard('composer', post_uuid); - $('body').css({'margin-bottom': 0}); - $('[data-action="post"]').removeAttr('disabled'); - - - $('html').removeClass('composing mobile'); - - } - } - - composer.minimize = function(post_uuid) { - var postContainer = $('#cmp-uuid-' + post_uuid); - postContainer.css('visibility', 'hidden'); - composer.active = undefined; - taskbar.minimize('composer', post_uuid); - - stopNotifyInterval(composer.posts[post_uuid]); - stopNotifyTyping(composer.posts[post_uuid]); - - $('body').css({'margin-bottom': '0px'}); - }; - - return composer; -}); diff --git a/public/src/modules/composer/categoryList.js b/public/src/modules/composer/categoryList.js deleted file mode 100644 index 1eb86051bf..0000000000 --- a/public/src/modules/composer/categoryList.js +++ /dev/null @@ -1,44 +0,0 @@ - -'use strict'; - -/*globals define, config, socket, app*/ - -define('composer/categoryList', function() { - var categoryList = {}; - - categoryList.init = function(postContainer, postData) { - var listEl = postContainer.find('.category-list'); - if (!listEl.length) { - return; - } - - socket.emit('categories.getCategoriesByPrivilege', 'topics:create', function(err, categories) { - if (err) { - return app.alertError(err.message); - } - - // Remove categories that are just external links - categories = categories.filter(function(category) { - return !category.link; - }); - - categories.forEach(function(category) { - $('').appendTo(listEl); - }); - - if (postData.cid) { - listEl.find('option[value="' + postData.cid + '"]').prop('selected', true); - } - }); - - listEl.on('change', function() { - if (postData.cid) { - postData.cid = this.value; - } - - $('[tabindex=' + (parseInt($(this).attr('tabindex'), 10) + 1) + ']').trigger('focus'); - }); - }; - - return categoryList; -}); diff --git a/public/src/modules/composer/controls.js b/public/src/modules/composer/controls.js deleted file mode 100644 index 05b6bdcf3c..0000000000 --- a/public/src/modules/composer/controls.js +++ /dev/null @@ -1,46 +0,0 @@ -"use strict"; - -/*global define*/ - -define('composer/controls', function() { - var controls = {}; - - /*************************************************/ - /* Rich Textarea Controls */ - /*************************************************/ - controls.insertIntoTextarea = function(textarea, value) { - var $textarea = $(textarea); - var currentVal = $textarea.val(); - - $textarea.val( - currentVal.slice(0, textarea.selectionStart) + - value + - currentVal.slice(textarea.selectionStart) - ); - }; - - controls.wrapSelectionInTextareaWith = function(textarea, leading, trailing){ - if(trailing === undefined){ - trailing = leading; - } - - var $textarea = $(textarea); - var currentVal = $textarea.val(); - - $textarea.val( - currentVal.slice(0, textarea.selectionStart) + - leading + - currentVal.slice(textarea.selectionStart, textarea.selectionEnd) + - trailing + - currentVal.slice(textarea.selectionEnd) - ); - }; - - controls.updateTextareaSelection = function(textarea, start, end){ - textarea.setSelectionRange(start, end); - $(textarea).focus(); - }; - - - return controls; -}); \ No newline at end of file diff --git a/public/src/modules/composer/drafts.js b/public/src/modules/composer/drafts.js deleted file mode 100644 index 27370607ca..0000000000 --- a/public/src/modules/composer/drafts.js +++ /dev/null @@ -1,69 +0,0 @@ -'use strict'; - -/* globals define */ - -define('composer/drafts', function() { - - var drafts = {}; - var saveThrottleId; - var saving = false; - - drafts.init = function(postContainer, postData) { - - var bodyEl = postContainer.find('textarea'); - bodyEl.on('keyup', function() { - resetTimeout(); - - saveThrottleId = setTimeout(function() { - saveDraft(postContainer, postData); - }, 1000); - }); - }; - - function resetTimeout() { - if (saveThrottleId) { - clearTimeout(saveThrottleId); - saveThrottleId = 0; - } - } - - drafts.getDraft = function(save_id) { - return localStorage.getItem(save_id); - }; - - function saveDraft(postContainer, postData) { - var raw; - - if (canSave() && postData && postData.save_id && postContainer.length) { - raw = postContainer.find('textarea').val(); - if (raw.length) { - localStorage.setItem(postData.save_id, raw); - } else { - drafts.removeDraft(postData.save_id); - } - } - } - - drafts.removeDraft = function(save_id) { - resetTimeout(); - return localStorage.removeItem(save_id); - }; - - function canSave() { - if (saving) { - return saving; - } - - try { - localStorage.setItem('test', 'test'); - localStorage.removeItem('test'); - saving = true; - return true; - } catch(e) { - saving = false; - return false; - } - } - - return drafts; -}); \ No newline at end of file diff --git a/public/src/modules/composer/formatting.js b/public/src/modules/composer/formatting.js deleted file mode 100644 index 05315a7edf..0000000000 --- a/public/src/modules/composer/formatting.js +++ /dev/null @@ -1,58 +0,0 @@ -'use strict'; - -/* globals define */ - -define('composer/formatting', ['composer/controls', 'composer/preview'], function(controls, preview) { - - var formatting = {}; - - var formattingDispatchTable = { - 'picture': function(){ - $('#files').click(); - }, - - upload: function(){ - $('#files').click(); - }, - - tags: function() { - $('.tags-container').toggleClass('hidden'); - } - }; - - var buttons = []; - - formatting.addComposerButtons = function() { - for(var x=0,numButtons=buttons.length;x