77 lines
2.4 KiB
CoffeeScript
77 lines
2.4 KiB
CoffeeScript
QuoteYou =
|
|
init: ->
|
|
return unless Conf['Remember Your Posts']
|
|
|
|
@db = new DataBoard 'yourPosts'
|
|
$.sync 'Remember Your Posts', (enabled) -> Conf['Remember Your Posts'] = enabled
|
|
$.on d, 'QRPostSuccessful', (e) ->
|
|
$.forceSync 'Remember Your Posts'
|
|
if Conf['Remember Your Posts']
|
|
{boardID, threadID, postID} = e.detail
|
|
QuoteYou.db.set {boardID, threadID, postID, val: true}
|
|
|
|
return unless g.VIEW in ['index', 'thread']
|
|
|
|
if Conf['Highlight Own Posts']
|
|
$.addClass doc, 'highlight-own'
|
|
|
|
if Conf['Highlight Posts Quoting You']
|
|
$.addClass doc, 'highlight-you'
|
|
|
|
if Conf['Comment Expansion']
|
|
ExpandComment.callbacks.push @node
|
|
|
|
# \u00A0 is nbsp
|
|
@text = '\u00A0(You)'
|
|
Callbacks.Post.push
|
|
name: 'Mark Quotes of You'
|
|
cb: @node
|
|
|
|
node: ->
|
|
return if @isClone
|
|
|
|
if QuoteYou.db.get {boardID: @board.ID, threadID: @thread.ID, postID: @ID}
|
|
$.addClass @nodes.root, 'yourPost'
|
|
|
|
# Stop there if there's no quotes in that post.
|
|
return unless @quotes.length
|
|
|
|
for quotelink in @nodes.quotelinks when QuoteYou.db.get Get.postDataFromLink quotelink
|
|
$.add quotelink, $.tn QuoteYou.text if Conf['Mark Quotes of You']
|
|
$.addClass quotelink, 'you'
|
|
$.addClass @nodes.root, 'quotesYou'
|
|
return
|
|
|
|
cb:
|
|
seek: (type) ->
|
|
$.rmClass highlight, 'highlight' if highlight = $ '.highlight'
|
|
|
|
unless QuoteYou.lastRead and doc.contains(QuoteYou.lastRead) and $.hasClass(QuoteYou.lastRead, 'quotesYou')
|
|
unless (post = QuoteYou.lastRead = $ '.quotesYou')
|
|
new Notice 'warning', 'No posts are currently quoting you, loser.', 20
|
|
return
|
|
return if QuoteYou.cb.scroll post
|
|
else
|
|
post = QuoteYou.lastRead
|
|
|
|
str = "#{type}::div[contains(@class,'quotesYou')]"
|
|
|
|
while (post = (result = $.X(str, post)).snapshotItem(if type is 'preceding' then result.snapshotLength - 1 else 0))
|
|
return if QuoteYou.cb.scroll post
|
|
|
|
posts = $$ '.quotesYou'
|
|
QuoteYou.cb.scroll posts[if type is 'following' then 0 else posts.length - 1]
|
|
|
|
scroll: (root) ->
|
|
post = $ '.post', root
|
|
if !post.getBoundingClientRect().height
|
|
return false
|
|
else
|
|
QuoteYou.lastRead = root
|
|
window.location = "##{post.id}"
|
|
Header.scrollTo post
|
|
$.addClass post, 'highlight'
|
|
return true
|
|
|
|
return QuoteYou
|