Start work on more or less JSONing everything

Obviously to start, I want to make adding and removing callbacks
simpler, because I'm going to need to be disabling and enabling
features on the fly quite a lot, I'm guessing.
This commit is contained in:
Zixaphir 2014-01-07 13:37:14 -07:00
parent 4ce942c540
commit f067d990c6
7 changed files with 147 additions and 126 deletions

View File

@ -104,7 +104,7 @@
'use strict'; 'use strict';
(function() { (function() {
var $, $$, Anonymize, ArchiveLink, AutoGIF, Banner, Board, Build, CatalogLinks, Clone, Conf, Config, CustomCSS, DataBoard, DeleteLink, Dice, DownloadLink, Emoji, ExpandComment, ExpandThread, FappeTyme, Favicon, FileInfo, Filter, Fourchan, Gallery, Get, Header, IDColor, ImageExpand, ImageHover, ImageLoader, Index, InfiniScroll, Keybinds, Linkify, Main, Menu, Nav, Notice, PSAHiding, Polyfill, Post, PostHiding, QR, QuoteBacklink, QuoteCT, QuoteInline, QuoteOP, QuotePreview, QuoteStrikeThrough, QuoteThreading, QuoteYou, Quotify, RandomAccessList, Recursive, Redirect, RelativeDates, RemoveSpoilers, Report, ReportLink, RevealSpoilers, Sauce, Settings, Thread, ThreadExcerpt, ThreadHiding, ThreadStats, ThreadUpdater, ThreadWatcher, Time, UI, Unread, c, d, doc, g, var $, $$, Anonymize, ArchiveLink, AutoGIF, Banner, Board, Build, Callbacks, CatalogLinks, Clone, Conf, Config, CustomCSS, DataBoard, DeleteLink, Dice, DownloadLink, Emoji, ExpandComment, ExpandThread, FappeTyme, Favicon, FileInfo, Filter, Fourchan, Gallery, Get, Header, IDColor, ImageExpand, ImageHover, ImageLoader, Index, InfiniScroll, Keybinds, Linkify, Main, Menu, Nav, Notice, PSAHiding, Polyfill, Post, PostHiding, QR, QuoteBacklink, QuoteCT, QuoteInline, QuoteOP, QuotePreview, QuoteStrikeThrough, QuoteThreading, QuoteYou, Quotify, RandomAccessList, Recursive, Redirect, RelativeDates, RemoveSpoilers, Report, ReportLink, RevealSpoilers, Sauce, Settings, Thread, ThreadExcerpt, ThreadHiding, ThreadStats, ThreadUpdater, ThreadWatcher, Time, UI, Unread, c, d, doc, g,
__indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; }, __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; },
__slice = [].slice, __slice = [].slice,
__hasProp = {}.hasOwnProperty, __hasProp = {}.hasOwnProperty,
@ -807,6 +807,56 @@
return __slice.call(root.querySelectorAll(selector)); return __slice.call(root.querySelectorAll(selector));
}; };
Callbacks = (function() {
function Callbacks() {}
Callbacks.prototype.push = function(_arg) {
var cb, name;
name = _arg.name, cb = _arg.cb;
return this.name = cb;
};
Callbacks.prototype.clean = function() {
var name;
for (name in this) {
if (this.hasOwnProperty(name)) {
this.rm(name);
}
}
};
Callbacks.prototype.rm = function(name) {
return delete this.name;
};
Callbacks.prototype.execute = function(target) {
var cb, err, errors, name;
for (name in this) {
cb = this[name];
if (this.hasOwnProperty(name)) {
try {
cb.call(target);
} catch (_error) {
err = _error;
if (!errors) {
errors = [];
}
errors.push({
message: ['"', name, '" crashed on node No.', node, ' (', node.board, ').'].join(''),
error: err
});
}
}
}
if (errors) {
return Main.handleErrors(errors);
}
};
return Callbacks;
})();
Board = (function() { Board = (function() {
Board.prototype.toString = function() { Board.prototype.toString = function() {
return this.ID; return this.ID;
@ -824,7 +874,7 @@
})(); })();
Thread = (function() { Thread = (function() {
Thread.callbacks = []; Thread.callbacks = new Callbacks();
Thread.prototype.toString = function() { Thread.prototype.toString = function() {
return this.ID; return this.ID;
@ -898,7 +948,7 @@
})(); })();
Post = (function() { Post = (function() {
Post.callbacks = []; Post.callbacks = new Callbacks();
Post.prototype.toString = function() { Post.prototype.toString = function() {
return this.ID; return this.ID;
@ -12514,38 +12564,17 @@
break; break;
} }
try { try {
localStorage.getItem('4chan-settings'); return localStorage.getItem('4chan-settings');
} catch (_error) { } catch (_error) {
err = _error; err = _error;
new Notice('warning', 'Cookies need to be enabled on 4chan for 4chan X to operate properly.', 30); return new Notice('warning', 'Cookies need to be enabled on 4chan for 4chan X to operate properly.', 30);
} }
return $.event('4chanXInitFinished');
}, },
callbackNodes: function(klass, nodes) { callbackNodes: function(klass, nodes) {
var callback, err, errors, i, len, node, _i, _len, _ref; var len, node;
len = nodes.length; len = nodes.length;
_ref = klass.callbacks; while (node = nodes[i++]) {
for (_i = 0, _len = _ref.length; _i < _len; _i++) { klass.callback.execute(node);
callback = _ref[_i];
i = 0;
while (i < len) {
node = nodes[i++];
try {
callback.cb.call(node);
} catch (_error) {
err = _error;
if (!errors) {
errors = [];
}
errors.push({
message: "\"" + callback.name + "\" crashed on " + klass.name + " No." + node + " (/" + node.board + "/).",
error: err
});
}
}
}
if (errors) {
return Main.handleErrors(errors);
} }
}, },
callbackNodesDB: function(klass, nodes, cb) { callbackNodesDB: function(klass, nodes, cb) {
@ -12553,27 +12582,8 @@
queue = []; queue = [];
errors = null; errors = null;
func = function(node) { func = function(node) {
var callback, err, _i, _len, _ref; klass.callback.execute(node);
_ref = klass.callbacks;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
callback = _ref[_i];
try {
callback.cb.call(node);
} catch (_error) {
err = _error;
if (!errors) {
errors = [];
}
errors.push({
message: "\"" + callback.name + "\" crashed on " + klass.name + " No." + node + " (/" + node.board + "/).",
error: err
});
}
}
if (!queue.length) { if (!queue.length) {
if (errors) {
Main.handleErrors(errors);
}
if (cb) { if (cb) {
return cb(); return cb();
} }

View File

@ -82,7 +82,7 @@
'use strict'; 'use strict';
(function() { (function() {
var $, $$, Anonymize, ArchiveLink, AutoGIF, Banner, Board, Build, CatalogLinks, Clone, Conf, Config, CustomCSS, DataBoard, DeleteLink, Dice, DownloadLink, Emoji, ExpandComment, ExpandThread, FappeTyme, Favicon, FileInfo, Filter, Fourchan, Gallery, Get, Header, IDColor, ImageExpand, ImageHover, ImageLoader, Index, InfiniScroll, Keybinds, Linkify, Main, Menu, Nav, Notice, PSAHiding, Polyfill, Post, PostHiding, QR, QuoteBacklink, QuoteCT, QuoteInline, QuoteOP, QuotePreview, QuoteStrikeThrough, QuoteThreading, QuoteYou, Quotify, RandomAccessList, Recursive, Redirect, RelativeDates, RemoveSpoilers, Report, ReportLink, RevealSpoilers, Sauce, Settings, Thread, ThreadExcerpt, ThreadHiding, ThreadStats, ThreadUpdater, ThreadWatcher, Time, UI, Unread, c, d, doc, g, var $, $$, Anonymize, ArchiveLink, AutoGIF, Banner, Board, Build, Callbacks, CatalogLinks, Clone, Conf, Config, CustomCSS, DataBoard, DeleteLink, Dice, DownloadLink, Emoji, ExpandComment, ExpandThread, FappeTyme, Favicon, FileInfo, Filter, Fourchan, Gallery, Get, Header, IDColor, ImageExpand, ImageHover, ImageLoader, Index, InfiniScroll, Keybinds, Linkify, Main, Menu, Nav, Notice, PSAHiding, Polyfill, Post, PostHiding, QR, QuoteBacklink, QuoteCT, QuoteInline, QuoteOP, QuotePreview, QuoteStrikeThrough, QuoteThreading, QuoteYou, Quotify, RandomAccessList, Recursive, Redirect, RelativeDates, RemoveSpoilers, Report, ReportLink, RevealSpoilers, Sauce, Settings, Thread, ThreadExcerpt, ThreadHiding, ThreadStats, ThreadUpdater, ThreadWatcher, Time, UI, Unread, c, d, doc, g,
__indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; }, __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; },
__slice = [].slice, __slice = [].slice,
__hasProp = {}.hasOwnProperty, __hasProp = {}.hasOwnProperty,
@ -812,6 +812,56 @@
return __slice.call(root.querySelectorAll(selector)); return __slice.call(root.querySelectorAll(selector));
}; };
Callbacks = (function() {
function Callbacks() {}
Callbacks.prototype.push = function(_arg) {
var cb, name;
name = _arg.name, cb = _arg.cb;
return this.name = cb;
};
Callbacks.prototype.clean = function() {
var name;
for (name in this) {
if (this.hasOwnProperty(name)) {
this.rm(name);
}
}
};
Callbacks.prototype.rm = function(name) {
return delete this.name;
};
Callbacks.prototype.execute = function(target) {
var cb, err, errors, name;
for (name in this) {
cb = this[name];
if (this.hasOwnProperty(name)) {
try {
cb.call(target);
} catch (_error) {
err = _error;
if (!errors) {
errors = [];
}
errors.push({
message: ['"', name, '" crashed on node No.', node, ' (', node.board, ').'].join(''),
error: err
});
}
}
}
if (errors) {
return Main.handleErrors(errors);
}
};
return Callbacks;
})();
Board = (function() { Board = (function() {
Board.prototype.toString = function() { Board.prototype.toString = function() {
return this.ID; return this.ID;
@ -829,7 +879,7 @@
})(); })();
Thread = (function() { Thread = (function() {
Thread.callbacks = []; Thread.callbacks = new Callbacks();
Thread.prototype.toString = function() { Thread.prototype.toString = function() {
return this.ID; return this.ID;
@ -903,7 +953,7 @@
})(); })();
Post = (function() { Post = (function() {
Post.callbacks = []; Post.callbacks = new Callbacks();
Post.prototype.toString = function() { Post.prototype.toString = function() {
return this.ID; return this.ID;
@ -12488,38 +12538,17 @@
return; return;
} }
try { try {
localStorage.getItem('4chan-settings'); return localStorage.getItem('4chan-settings');
} catch (_error) { } catch (_error) {
err = _error; err = _error;
new Notice('warning', 'Cookies need to be enabled on 4chan for 4chan X to operate properly.', 30); return new Notice('warning', 'Cookies need to be enabled on 4chan for 4chan X to operate properly.', 30);
} }
return $.event('4chanXInitFinished');
}, },
callbackNodes: function(klass, nodes) { callbackNodes: function(klass, nodes) {
var callback, err, errors, i, len, node, _i, _len, _ref; var len, node;
len = nodes.length; len = nodes.length;
_ref = klass.callbacks; while (node = nodes[i++]) {
for (_i = 0, _len = _ref.length; _i < _len; _i++) { klass.callback.execute(node);
callback = _ref[_i];
i = 0;
while (i < len) {
node = nodes[i++];
try {
callback.cb.call(node);
} catch (_error) {
err = _error;
if (!errors) {
errors = [];
}
errors.push({
message: "\"" + callback.name + "\" crashed on " + klass.name + " No." + node + " (/" + node.board + "/).",
error: err
});
}
}
}
if (errors) {
return Main.handleErrors(errors);
} }
}, },
callbackNodesDB: function(klass, nodes, cb) { callbackNodesDB: function(klass, nodes, cb) {
@ -12527,27 +12556,8 @@
queue = []; queue = [];
errors = null; errors = null;
func = function(node) { func = function(node) {
var callback, err, _i, _len, _ref; klass.callback.execute(node);
_ref = klass.callbacks;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
callback = _ref[_i];
try {
callback.cb.call(node);
} catch (_error) {
err = _error;
if (!errors) {
errors = [];
}
errors.push({
message: "\"" + callback.name + "\" crashed on " + klass.name + " No." + node + " (/" + node.board + "/).",
error: err
});
}
}
if (!queue.length) { if (!queue.length) {
if (errors) {
Main.handleErrors(errors);
}
if (cb) { if (cb) {
return cb(); return cb();
} }

View File

@ -228,45 +228,25 @@ Main =
catch err catch err
new Notice 'warning', 'Cookies need to be enabled on 4chan for <%= meta.name %> to operate properly.', 30 new Notice 'warning', 'Cookies need to be enabled on 4chan for <%= meta.name %> to operate properly.', 30
$.event '4chanXInitFinished'
callbackNodes: (klass, nodes) -> callbackNodes: (klass, nodes) ->
# get the nodes' length only once # get the nodes' length only once
len = nodes.length len = nodes.length
for callback in klass.callbacks while node = nodes[i++]
# c.profile callback.name klass.callback.execute node
i = 0 return
while i < len
node = nodes[i++]
try
callback.cb.call node
catch err
errors = [] unless errors
errors.push
message: "\"#{callback.name}\" crashed on #{klass.name} No.#{node} (/#{node.board}/)."
error: err
# c.profileEnd callback.name
Main.handleErrors errors if errors
callbackNodesDB: (klass, nodes, cb) -> callbackNodesDB: (klass, nodes, cb) ->
queue = [] queue = []
errors = null errors = null
func = (node) -> func = (node) ->
for callback in klass.callbacks klass.callback.execute node
try
callback.cb.call node
catch err
errors = [] unless errors
errors.push
message: "\"#{callback.name}\" crashed on #{klass.name} No.#{node} (/#{node.board}/)."
error: err
# finish # finish
unless queue.length unless queue.length
Main.handleErrors errors if errors
cb() if cb cb() if cb
softTask = -> softTask = ->
node = queue.shift() node = queue.shift()
func node func node
return unless queue.length return unless queue.length

View File

@ -0,0 +1,20 @@
class Callbacks
push: ({name, cb}) -> @name = cb
clean: ->
@rm name for name of @ when @hasOwnProperty name
return
rm: (name) -> delete @name
execute: (target) ->
for name, cb of @ when @hasOwnProperty name
try
cb.call target
catch err
errors = [] unless errors
errors.push
message: ['"', name, '" crashed on node No.', node, ' (', node.board, ').'].join('')
error: err
Main.handleErrors errors if errors

View File

@ -1,3 +1,4 @@
<%= grunt.file.read('src/General/lib/callbacks.class') %>
<%= grunt.file.read('src/General/lib/board.class') %> <%= grunt.file.read('src/General/lib/board.class') %>
<%= grunt.file.read('src/General/lib/thread.class') %> <%= grunt.file.read('src/General/lib/thread.class') %>
<%= grunt.file.read('src/General/lib/post.class') %> <%= grunt.file.read('src/General/lib/post.class') %>

View File

@ -1,5 +1,5 @@
class Post class Post
@callbacks = [] @callbacks = new Callbacks()
toString: -> @ID toString: -> @ID
constructor: (root, @thread, @board, that={}) -> constructor: (root, @thread, @board, that={}) ->

View File

@ -1,5 +1,5 @@
class Thread class Thread
@callbacks = [] @callbacks = new Callbacks()
toString: -> @ID toString: -> @ID
constructor: (@ID, @board) -> constructor: (@ID, @board) ->