2018-01-28 23:22:43 +11:00
|
|
|
|
//オブジェクトパーサー(トゥート)
|
2019-03-16 21:06:03 +11:00
|
|
|
|
function parse(obj, mix, acct_id, tlid, popup, mutefilter, type) {
|
2019-11-11 03:20:51 +11:00
|
|
|
|
var splitter = new GraphemeSplitter()
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var templete = ''
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (obj[0]) {
|
|
|
|
|
if (tlid === 1) {
|
2018-08-17 03:21:40 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
localStorage.setItem('lastunix_' + tlid, date(obj[0].created_at, 'unix'))
|
2018-08-17 03:21:40 +10:00
|
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
|
2019-11-16 05:42:23 +11:00
|
|
|
|
var actb = 're,rt,fav,qt,bkm'
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (actb) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var actb = actb.split(',')
|
|
|
|
|
var disp = {}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
for (var k = 0; k < actb.length; k++) {
|
2019-11-16 05:42:23 +11:00
|
|
|
|
if (k < 5) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var tp = 'type-a'
|
2019-05-19 17:39:30 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var tp = 'type-b'
|
2018-05-02 14:14:03 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
disp[actb[k]] = tp
|
2018-05-02 14:14:03 +10:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var qt = localStorage.getItem('quote')
|
|
|
|
|
if (qt == 'nothing' || !qt) {
|
|
|
|
|
var qtClass = 'hide'
|
2019-05-19 17:39:30 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (qt == 'apiQuote') {
|
|
|
|
|
if (localStorage.getItem('quote_' + acct_id)) {
|
|
|
|
|
var qtClass = ''
|
2019-09-08 02:33:01 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var qtClass = 'hide'
|
2019-09-08 02:33:01 +10:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var qtClass = ''
|
2019-09-08 02:33:01 +10:00
|
|
|
|
}
|
2019-03-13 02:51:07 +11:00
|
|
|
|
}
|
2019-11-16 05:42:23 +11:00
|
|
|
|
var bkm = localStorage.getItem('bookmark')
|
|
|
|
|
if (bkm == 'no' || !bkm) {
|
|
|
|
|
var bkmClass = 'hide'
|
|
|
|
|
} else {
|
|
|
|
|
var bkmClass = ''
|
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var datetype = localStorage.getItem('datetype')
|
|
|
|
|
var nsfwtype = localStorage.getItem('nsfw')
|
|
|
|
|
var sent = localStorage.getItem('sentence')
|
|
|
|
|
var ltr = localStorage.getItem('letters')
|
|
|
|
|
var gif = localStorage.getItem('gif')
|
|
|
|
|
var imh = localStorage.getItem('img-height')
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (!imh) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
imh = 200
|
2019-04-11 02:52:01 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (imh == 'full') {
|
|
|
|
|
imh = 'auto'
|
2019-05-19 17:39:30 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
imh = imh + 'px'
|
2019-03-22 01:38:15 +11:00
|
|
|
|
}
|
2018-03-27 13:39:35 +11:00
|
|
|
|
//独自ロケール
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var locale = localStorage.getItem('locale')
|
|
|
|
|
if (locale == 'yes') {
|
|
|
|
|
var locale = false
|
2018-03-27 13:39:35 +11:00
|
|
|
|
}
|
2018-03-31 13:39:06 +11:00
|
|
|
|
//ネイティブ通知
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var native = localStorage.getItem('nativenotf')
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (!native) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
native = 'yes'
|
2018-03-31 13:39:06 +11:00
|
|
|
|
}
|
2018-03-11 01:22:59 +11:00
|
|
|
|
//クライアント強調
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var empCli = localStorage.getItem('client_emp')
|
2019-06-22 00:17:56 +10:00
|
|
|
|
if (empCli) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var empCli = JSON.parse(empCli)
|
2018-03-11 01:22:59 +11:00
|
|
|
|
}
|
|
|
|
|
//クライアントミュート
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var muteCli = localStorage.getItem('client_mute')
|
2019-06-22 00:17:56 +10:00
|
|
|
|
if (muteCli) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var muteCli = JSON.parse(muteCli)
|
2018-03-11 01:22:59 +11:00
|
|
|
|
}
|
|
|
|
|
//ユーザー強調
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var useremp = localStorage.getItem('user_emp')
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (useremp) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var useremp = JSON.parse(useremp)
|
2018-03-11 01:22:59 +11:00
|
|
|
|
}
|
|
|
|
|
//ワード強調
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var wordempList = localStorage.getItem('word_emp')
|
2019-06-22 00:17:56 +10:00
|
|
|
|
if (wordempList) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var wordempList = JSON.parse(wordempList)
|
2018-03-11 01:22:59 +11:00
|
|
|
|
}
|
|
|
|
|
//ワードミュート
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var wordmuteList = localStorage.getItem('word_mute')
|
2019-06-22 00:17:56 +10:00
|
|
|
|
if (wordmuteList) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var wordmuteList = JSON.parse(wordmuteList)
|
2019-06-22 00:17:56 +10:00
|
|
|
|
if (wordmuteList) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
wordmuteList = wordmuteList.concat(mutefilter)
|
2019-06-22 00:17:56 +10:00
|
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
wordmuteList = mutefilter
|
2018-03-11 01:22:59 +11:00
|
|
|
|
}
|
2018-12-09 05:46:01 +11:00
|
|
|
|
//Ticker
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var tickerck = localStorage.getItem('ticker_ok')
|
|
|
|
|
if (tickerck == 'yes') {
|
|
|
|
|
var ticker = true
|
|
|
|
|
} else if (!ticker || ticker == 'no') {
|
|
|
|
|
var ticker = false
|
2018-12-09 05:46:01 +11:00
|
|
|
|
}
|
2019-03-06 19:08:48 +11:00
|
|
|
|
//Animation
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var anime = localStorage.getItem('animation')
|
|
|
|
|
if (anime == 'yes' || !anime) {
|
|
|
|
|
var animecss = 'cvo-anime'
|
2019-05-19 17:39:30 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var animecss = ''
|
2019-03-06 19:08:48 +11:00
|
|
|
|
}
|
2018-12-09 05:46:01 +11:00
|
|
|
|
//Cards
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var card = localStorage.getItem('card_' + tlid)
|
2019-05-19 17:39:30 +10:00
|
|
|
|
|
2018-01-28 23:22:43 +11:00
|
|
|
|
if (!sent) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
sent = 500
|
2018-01-28 23:22:43 +11:00
|
|
|
|
}
|
2018-02-26 00:37:04 +11:00
|
|
|
|
if (!ltr) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var ltr = 500
|
2018-02-26 00:37:04 +11:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (!nsfwtype || nsfwtype == 'yes') {
|
|
|
|
|
var nsfw = 'ok'
|
2018-01-28 23:22:43 +11:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var nsfw
|
2018-01-28 23:22:43 +11:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var cwtype = localStorage.getItem('cw')
|
|
|
|
|
if (!cwtype || cwtype == 'yes') {
|
|
|
|
|
var cw = 'ok'
|
2018-01-28 23:22:43 +11:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var cw
|
2018-01-28 23:22:43 +11:00
|
|
|
|
}
|
|
|
|
|
if (!datetype) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
datetype = 'absolute'
|
2018-01-28 23:22:43 +11:00
|
|
|
|
}
|
2018-02-24 03:02:44 +11:00
|
|
|
|
if (!gif) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var gif = 'yes'
|
2018-02-18 18:29:06 +11:00
|
|
|
|
}
|
2018-03-11 01:22:59 +11:00
|
|
|
|
if (!imh) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var imh = '200'
|
2018-03-11 01:22:59 +11:00
|
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (!emp) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var emp = []
|
2018-03-11 01:22:59 +11:00
|
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (!mute) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var mute = []
|
2018-03-11 01:22:59 +11:00
|
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (!useremp) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var useremp = []
|
2018-03-11 01:22:59 +11:00
|
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (!wordemp) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var wordemp = []
|
2018-03-11 01:22:59 +11:00
|
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (!wordmute) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var wordmute = []
|
2018-03-11 01:22:59 +11:00
|
|
|
|
}
|
2018-05-02 14:14:03 +10:00
|
|
|
|
//via通知
|
2019-11-16 05:42:23 +11:00
|
|
|
|
var viashowVal = localStorage.getItem('viashow')
|
|
|
|
|
if (viashowVal == 'yes') {
|
|
|
|
|
var viashowSet = true
|
|
|
|
|
} else {
|
|
|
|
|
var viashowSet = false
|
2018-05-02 14:14:03 +10:00
|
|
|
|
}
|
2019-11-16 05:42:23 +11:00
|
|
|
|
var viashow = ''
|
2018-03-27 13:39:35 +11:00
|
|
|
|
//認証なしTL
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (mix == 'noauth') {
|
|
|
|
|
var noauth = 'hide'
|
|
|
|
|
var antinoauth = ''
|
2019-05-19 17:39:30 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var noauth = ''
|
|
|
|
|
var antinoauth = 'hide'
|
2018-03-27 13:39:35 +11:00
|
|
|
|
}
|
2019-03-16 21:06:03 +11:00
|
|
|
|
//DMTL
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (type == 'dm') {
|
|
|
|
|
var dmHide = 'hide'
|
|
|
|
|
var antidmHide = ''
|
2019-05-19 17:39:30 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var dmHide = ''
|
|
|
|
|
var antidmHide = 'hide'
|
2019-03-16 21:06:03 +11:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-02 14:14:03 +10:00
|
|
|
|
//マウスオーバーのみ
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var mouseover = localStorage.getItem('mouseover')
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (!mouseover) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
mouseover = ''
|
|
|
|
|
} else if (mouseover == 'yes' || mouseover == 'click') {
|
|
|
|
|
mouseover = 'hide-actions'
|
|
|
|
|
} else if (mouseover == 'no') {
|
|
|
|
|
mouseover = ''
|
2018-05-02 14:14:03 +10:00
|
|
|
|
}
|
2018-09-06 02:47:27 +10:00
|
|
|
|
//リプカウント
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var replyct_view = localStorage.getItem('replyct')
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (!replyct_view) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
replyct_view = 'hidden'
|
2018-09-06 02:47:27 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var local = []
|
|
|
|
|
var times = []
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(obj).forEach(function(key) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var domain = localStorage.getItem('domain_' + acct_id)
|
|
|
|
|
var toot = obj[key]
|
|
|
|
|
if (type == 'dm') {
|
|
|
|
|
var dmid = toot.id
|
|
|
|
|
toot = toot.last_status
|
2019-03-16 21:06:03 +11:00
|
|
|
|
}
|
2019-10-12 02:18:43 +11:00
|
|
|
|
if (toot.account.display_name) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var dis_name = escapeHTML(toot.account.display_name)
|
2019-10-12 02:18:43 +11:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var dis_name = toot.account.acct
|
2019-10-10 01:00:25 +11:00
|
|
|
|
}
|
2019-10-12 02:18:43 +11:00
|
|
|
|
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (toot.account.emojis) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var actemojick = toot.account.emojis[0]
|
2019-05-19 17:39:30 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var actemojick = false
|
2018-05-10 01:33:08 +10:00
|
|
|
|
}
|
|
|
|
|
//絵文字があれば
|
|
|
|
|
if (actemojick) {
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(toot.account.emojis).forEach(function(key5) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var emoji = toot.account.emojis[key5]
|
|
|
|
|
var shortcode = emoji.shortcode
|
2019-12-14 12:29:59 +11:00
|
|
|
|
if (gif == 'yes') {
|
|
|
|
|
var emoSource = emoji.url
|
|
|
|
|
} else {
|
|
|
|
|
var emoSource = emoji.static_url
|
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var emoji_url = `
|
2019-12-14 12:29:59 +11:00
|
|
|
|
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
2019-11-09 00:52:54 +11:00
|
|
|
|
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');">
|
|
|
|
|
`
|
|
|
|
|
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
|
|
|
|
dis_name = dis_name.replace(regExp, emoji_url)
|
|
|
|
|
})
|
2018-05-10 01:33:08 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var noticeavatar = ''
|
|
|
|
|
if (mix == 'notf') {
|
2019-12-14 12:29:59 +11:00
|
|
|
|
if (!toot.status) {
|
2019-12-01 22:28:20 +11:00
|
|
|
|
toot.status = statusModel(toot.created_at)
|
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (gif == 'yes') {
|
|
|
|
|
noticeavatar = toot.account.avatar
|
2018-08-21 04:26:14 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
noticeavatar = toot.account.avatar_static
|
|
|
|
|
}
|
|
|
|
|
noticeavatar = `<a onclick="udg('${toot.account.id}','${acct_id}');" user="${toot.account.acct}" class="udg">
|
|
|
|
|
<img draggable="false" src="${noticeavatar}" width="20" class="notf-icon prof-img" user="${toot.account.acct}">
|
|
|
|
|
</a>`
|
|
|
|
|
if (toot.type == 'mention') {
|
|
|
|
|
var what = lang.lang_parse_mentioned
|
|
|
|
|
var icon = 'fa-share teal-text'
|
|
|
|
|
noticeavatar = ''
|
|
|
|
|
} else if (toot.type == 'reblog') {
|
|
|
|
|
var what = lang.lang_parse_bted
|
|
|
|
|
var icon = 'fa-retweet light-blue-text'
|
|
|
|
|
if (!locale && localStorage.getItem('bt_' + acct_id)) {
|
|
|
|
|
what = localStorage.getItem('bt_' + acct_id)
|
|
|
|
|
}
|
|
|
|
|
} else if (toot.type == 'favourite') {
|
|
|
|
|
var what = lang.lang_parse_faved
|
|
|
|
|
var icon = 'fa-star yellow-text'
|
|
|
|
|
if (!locale && localStorage.getItem('fav_' + acct_id)) {
|
|
|
|
|
what = localStorage.getItem('fav_' + acct_id)
|
|
|
|
|
}
|
|
|
|
|
} else if (toot.type == 'poll') {
|
|
|
|
|
var what = lang.lang_parse_polled
|
|
|
|
|
var icon = 'fa-tasks purple-text'
|
|
|
|
|
}
|
|
|
|
|
if (tlid == 'notf') {
|
|
|
|
|
var notfFilHide = 'hide'
|
2019-06-04 23:41:04 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var notfFilHide = ''
|
2019-06-04 23:41:04 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var noticetext = `<i class="fas fa-filter pointer big-text ${notfFilHide}"
|
|
|
|
|
onclick="notfFilter('${toot.account.id}','${tlid}');" title="${lang.lang_parse_notffilter}">
|
|
|
|
|
</i>
|
|
|
|
|
<span class="cbadge cbadge-hover" title="${date(toot.created_at, 'absolute')}(${
|
|
|
|
|
lang.lang_parse_notftime
|
|
|
|
|
})">
|
|
|
|
|
<i class="far fa-clock"></i>
|
|
|
|
|
${date(toot.created_at, datetype)}
|
|
|
|
|
</span>
|
|
|
|
|
<i class="big-text fas ${icon}"></i>
|
|
|
|
|
<a onclick="udg('${toot.account.id}','${acct_id}')" class="pointer grey-text">
|
|
|
|
|
${dis_name}(@${toot.account.acct})
|
|
|
|
|
</a>`
|
|
|
|
|
var notice = noticetext
|
|
|
|
|
var memory = localStorage.getItem('notice-mem')
|
2018-02-26 00:37:04 +11:00
|
|
|
|
if (popup >= 0 && obj.length < 5 && noticetext != memory) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (localStorage.getItem('hasNotfC_' + acct_id) != 'true') {
|
|
|
|
|
if (toot.type == 'mention') {
|
|
|
|
|
var replyct = localStorage.getItem('notf-reply_' + acct_id)
|
|
|
|
|
$('.notf-reply_' + acct_id).text(replyct * 1 - -1)
|
|
|
|
|
localStorage.setItem('notf-reply_' + acct_id, replyct * 1 - -1)
|
|
|
|
|
$('.notf-reply_' + acct_id).removeClass('hide')
|
|
|
|
|
var sound = localStorage.getItem('replySound')
|
|
|
|
|
if (sound == 'default') {
|
|
|
|
|
var file = '../../source/notif3.wav'
|
2019-04-21 00:40:12 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
} else if (toot.type == 'reblog') {
|
|
|
|
|
var btct = localStorage.getItem('notf-bt_' + acct_id)
|
|
|
|
|
$('.notf-bt_' + acct_id).text(btct * 1 - -1)
|
|
|
|
|
localStorage.setItem('notf-bt_' + acct_id, btct * 1 - -1)
|
|
|
|
|
$('.notf-bt_' + acct_id).removeClass('hide')
|
|
|
|
|
var sound = localStorage.getItem('btSound')
|
|
|
|
|
if (sound == 'default') {
|
|
|
|
|
var file = '../../source/notif2.wav'
|
2019-04-21 00:40:12 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
} else if (toot.type == 'favourite') {
|
|
|
|
|
var favct = localStorage.getItem('notf-fav_' + acct_id)
|
|
|
|
|
$('.notf-fav_' + acct_id).text(favct * 1 - -1)
|
|
|
|
|
localStorage.setItem('notf-fav_' + acct_id, favct * 1 - -1)
|
|
|
|
|
$('.notf-fav_' + acct_id).removeClass('hide')
|
|
|
|
|
var sound = localStorage.getItem('favSound')
|
|
|
|
|
if (sound == 'default') {
|
|
|
|
|
var file = '../../source/notif.wav'
|
2019-04-21 00:40:12 +10:00
|
|
|
|
}
|
2018-08-17 03:21:40 +10:00
|
|
|
|
}
|
2018-07-28 07:25:12 +10:00
|
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (popup > 0) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
M.toast({
|
|
|
|
|
html: '[' + domain + ']' + escapeHTML(toot.account.display_name) + what,
|
|
|
|
|
displayLength: popup * 1000
|
|
|
|
|
})
|
2018-03-20 15:55:25 +11:00
|
|
|
|
}
|
2019-04-15 01:45:04 +10:00
|
|
|
|
//通知音
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (sound == 'c1') {
|
|
|
|
|
var file = localStorage.getItem('custom1')
|
|
|
|
|
} else if (sound == 'c2') {
|
|
|
|
|
var file = localStorage.getItem('custom2')
|
|
|
|
|
} else if (sound == 'c3') {
|
|
|
|
|
var file = localStorage.getItem('custom3')
|
|
|
|
|
} else if (sound == 'c4') {
|
|
|
|
|
var file = localStorage.getItem('custom4')
|
2019-04-15 01:45:04 +10:00
|
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (file) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
request = new XMLHttpRequest()
|
|
|
|
|
request.open('GET', file, true)
|
|
|
|
|
request.responseType = 'arraybuffer'
|
|
|
|
|
request.onload = playSound
|
|
|
|
|
request.send()
|
|
|
|
|
}
|
|
|
|
|
if (native == 'yes') {
|
|
|
|
|
var os = localStorage.getItem('platform')
|
2018-05-26 05:00:04 +10:00
|
|
|
|
var options = {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
body:
|
|
|
|
|
toot.account.display_name +
|
|
|
|
|
'(' +
|
|
|
|
|
toot.account.acct +
|
|
|
|
|
')' +
|
|
|
|
|
what +
|
|
|
|
|
'\n\n' +
|
|
|
|
|
$.strip_tags(toot.status.content),
|
2018-05-26 05:00:04 +10:00
|
|
|
|
icon: toot.account.avatar
|
2019-11-09 00:52:54 +11:00
|
|
|
|
}
|
|
|
|
|
var n = new Notification('TheDesk:' + domain, options)
|
2018-05-26 05:00:04 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (localStorage.getItem('hasNotfC_' + acct_id) != 'true') {
|
|
|
|
|
$('.notf-icon_' + acct_id).addClass('red-text')
|
2018-08-17 03:21:40 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
localStorage.setItem('notice-mem', noticetext)
|
|
|
|
|
noticetext = ''
|
2018-02-26 00:37:04 +11:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var if_notf = 'data-notfIndv="' + acct_id + '_' + toot.id + '" data-notf="' + toot.id + '"'
|
|
|
|
|
var toot = toot.status
|
|
|
|
|
var uniqueid = toot.id
|
|
|
|
|
var dis_name = escapeHTML(toot.account.display_name)
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (toot.account.emojis) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var actemojick = toot.account.emojis[0]
|
2019-05-19 17:39:30 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var actemojick = false
|
2018-05-10 01:33:08 +10:00
|
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
//絵文字があれば
|
|
|
|
|
if (actemojick) {
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(toot.account.emojis).forEach(function(key5) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var emoji = toot.account.emojis[key5]
|
|
|
|
|
var shortcode = emoji.shortcode
|
2019-12-14 12:29:59 +11:00
|
|
|
|
if (gif == 'yes') {
|
|
|
|
|
var emoSource = emoji.url
|
|
|
|
|
} else {
|
|
|
|
|
var emoSource = emoji.static_url
|
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var emoji_url = `
|
2019-12-14 12:29:59 +11:00
|
|
|
|
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
|
|
|
|
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');">
|
|
|
|
|
`
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
|
|
|
|
dis_name = dis_name.replace(regExp, emoji_url)
|
|
|
|
|
})
|
2019-05-19 17:39:30 +10:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var if_notf = ''
|
2018-02-26 00:37:04 +11:00
|
|
|
|
if (toot.reblog) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (gif == 'yes') {
|
|
|
|
|
noticeavatar = toot.account.avatar
|
2018-08-21 04:26:14 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
noticeavatar = toot.account.avatar_static
|
|
|
|
|
}
|
|
|
|
|
noticeavatar = `<a onclick="udg('${toot.account.id}','${acct_id}');" user="${toot.account.acct}" class="notf-icon udg">
|
|
|
|
|
<img draggable="false" src="${noticeavatar}" width="20" class="prof-img"
|
|
|
|
|
user="${toot.account.acct}" onerror="this.src=\'../../img/loading.svg\'">
|
|
|
|
|
</a>`
|
|
|
|
|
var rebtxt = lang.lang_parse_btedsimple
|
|
|
|
|
var rticon = 'fa-retweet light-blue-text'
|
|
|
|
|
if (localStorage.getItem('domain_' + acct_id) == 'imastodon.net' && !locale) {
|
|
|
|
|
rebtxt = ':「わかるわ」'
|
|
|
|
|
} else if (localStorage.getItem('domain_' + acct_id) == 'mstdn.osaka' && !locale) {
|
|
|
|
|
rebtxt = 'がしばいた'
|
|
|
|
|
}
|
|
|
|
|
var notice =
|
|
|
|
|
'<i class="big-text fas ' +
|
|
|
|
|
rticon +
|
|
|
|
|
'"></i>' +
|
|
|
|
|
dis_name +
|
|
|
|
|
'(@' +
|
|
|
|
|
toot.account.acct +
|
|
|
|
|
')<br>'
|
|
|
|
|
var boostback = 'shared'
|
|
|
|
|
var uniqueid = toot.id
|
|
|
|
|
var toot = toot.reblog
|
|
|
|
|
var dis_name = escapeHTML(toot.account.display_name)
|
2019-08-31 01:09:37 +10:00
|
|
|
|
if (!dis_name) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
dis_name = toot.account.acct
|
2019-08-21 01:02:29 +10:00
|
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (toot.account.emojis) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var actemojick = toot.account.emojis[0]
|
2019-05-19 17:39:30 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var actemojick = false
|
2019-05-19 17:39:30 +10:00
|
|
|
|
}
|
|
|
|
|
//絵文字があれば
|
|
|
|
|
if (actemojick) {
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(toot.account.emojis).forEach(function(key5) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var emoji = toot.account.emojis[key5]
|
|
|
|
|
var shortcode = emoji.shortcode
|
2019-12-14 12:29:59 +11:00
|
|
|
|
if (gif == 'yes') {
|
|
|
|
|
var emoSource = emoji.url
|
|
|
|
|
} else {
|
|
|
|
|
var emoSource = emoji.static_url
|
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var emoji_url = `
|
2019-12-14 12:29:59 +11:00
|
|
|
|
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
|
|
|
|
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');">
|
|
|
|
|
`
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
|
|
|
|
dis_name = dis_name.replace(regExp, emoji_url)
|
|
|
|
|
})
|
2018-05-10 02:01:06 +10:00
|
|
|
|
}
|
2018-02-26 00:37:04 +11:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var uniqueid = toot.id
|
|
|
|
|
var notice = ''
|
|
|
|
|
var boostback = 'unshared'
|
2018-03-11 01:22:59 +11:00
|
|
|
|
//ユーザー強調
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (toot.account.username != toot.account.acct) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var fullname = toot.account.acct
|
2019-05-19 17:39:30 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var domain = localStorage.getItem('domain_' + acct_id)
|
|
|
|
|
var fullname = toot.account.acct + '@' + domain
|
2018-03-11 01:22:59 +11:00
|
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (useremp) {
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(useremp).forEach(function(key10) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var user = useremp[key10]
|
2019-05-19 17:39:30 +10:00
|
|
|
|
if (user == fullname) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
boostback = 'emphasized'
|
2019-05-19 17:39:30 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
})
|
2018-03-11 01:22:59 +11:00
|
|
|
|
}
|
2018-02-26 00:37:04 +11:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (toot.content == '') {
|
|
|
|
|
var content = ' '
|
2019-09-14 03:18:33 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var content = toot.content
|
2019-09-14 03:18:33 +10:00
|
|
|
|
}
|
|
|
|
|
if (content) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var id = toot.id
|
|
|
|
|
if (mix == 'home') {
|
|
|
|
|
var home = ''
|
|
|
|
|
var divider = '<div class="divider"></div>'
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var home = ''
|
|
|
|
|
var divider = '<div class="divider"></div>'
|
2019-06-23 11:57:56 +10:00
|
|
|
|
}
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (toot.account.locked) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var locked = ' <i class="fas fa-lock red-text"></i>'
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var locked = ''
|
2019-06-23 11:57:56 +10:00
|
|
|
|
}
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (!toot.application) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var via = ''
|
|
|
|
|
viashow = 'hide'
|
2018-01-28 23:22:43 +11:00
|
|
|
|
} else {
|
2019-11-16 05:42:23 +11:00
|
|
|
|
if (viashowSet) {
|
|
|
|
|
viashow = ''
|
|
|
|
|
} else {
|
|
|
|
|
viashow = 'hide'
|
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var via = escapeHTML(toot.application.name)
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (empCli) {
|
|
|
|
|
//強調チェック
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(empCli).forEach(function(key6) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var empCliList = empCli[key6]
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (empCliList == via) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
boostback = 'emphasized'
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
})
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
if (muteCli) {
|
|
|
|
|
//ミュートチェック
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(muteCli).forEach(function(key7) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var muteCliList = muteCli[key7]
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (muteCliList == via) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
boostback = 'hide'
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
})
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (mix == 'pinned') {
|
|
|
|
|
boostback = 'emphasized'
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
if (toot.spoiler_text && cw) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var spoil = escapeHTML(toot.spoiler_text)
|
|
|
|
|
var spoiler = 'cw cw_hide_' + toot.id
|
|
|
|
|
var api_spoil = 'gray'
|
|
|
|
|
var spoiler_show = `<a href="#" onclick="cw_show('${toot.id}')" class="nex parsed cw_btn">${lang.lang_parse_cwshow}</a><br>`
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-09-14 03:18:33 +10:00
|
|
|
|
if (content) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var ct1 = content.split('</p>').length + content.split('<br />').length - 2
|
|
|
|
|
var ct2 = content.split('</p>').length + content.split('<br>').length - 2
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var ct1 = 100
|
|
|
|
|
var ct2 = 100
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
2019-10-12 02:18:43 +11:00
|
|
|
|
if (ct1 > ct2) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var ct = ct1
|
2019-10-12 02:18:43 +11:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var ct = ct2
|
2019-10-12 02:18:43 +11:00
|
|
|
|
}
|
2019-11-11 03:20:51 +11:00
|
|
|
|
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (
|
|
|
|
|
(sent < ct && $.mb_strlen($.strip_tags(content)) > 5) ||
|
2019-11-11 03:20:51 +11:00
|
|
|
|
($.mb_strlen($.strip_tags(content)) > ltr && $.mb_strlen($.strip_tags(content)) > 5)
|
2019-11-09 00:52:54 +11:00
|
|
|
|
) {
|
|
|
|
|
var content = `<span class="gray">${lang.lang_parse_fulltext}</span><br>` + content
|
|
|
|
|
var spoil = `<span class="cw-long-${toot.id}">${$.mb_substr(
|
|
|
|
|
$.strip_tags(content),
|
|
|
|
|
0,
|
|
|
|
|
100
|
|
|
|
|
)}</span>
|
|
|
|
|
<span class="gray">${lang.lang_parse_autofold}</span>`
|
|
|
|
|
var spoiler = 'cw cw_hide_' + toot.id
|
|
|
|
|
var spoiler_show = `<a href="#" onclick="cw_show('${toot.id}')" class="nex parsed cw_btn">
|
|
|
|
|
${lang.lang_parse_more}
|
|
|
|
|
</a><br>`
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var spoil = escapeHTML(toot.spoiler_text)
|
|
|
|
|
var spoiler = ''
|
|
|
|
|
var spoiler_show = ''
|
2019-07-15 01:56:19 +10:00
|
|
|
|
}
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
2019-10-12 02:18:43 +11:00
|
|
|
|
var urls = $.strip_tags(content)
|
2019-11-09 00:52:54 +11:00
|
|
|
|
.replace(/\n/g, ' ')
|
|
|
|
|
.match(
|
|
|
|
|
/https?:\/\/([^+_]+)\/?(?!.*((media|tags)|mentions)).*([-_.!~*\'()a-zA-Z0-9;\/?:\@&=+\$,%#]+)?/
|
|
|
|
|
)
|
|
|
|
|
urlsck = content.match(/(https?):\/\/([^<>]*?)\/([^"]*)/g)
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (urlsck) {
|
|
|
|
|
for (var urlct = 0; urlct < urlsck.length; urlct++) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var urlindv = urlsck[urlct]
|
|
|
|
|
urlCont = urlindv.match(/(https?):\/\/([^a-zA-Z0-9.-]*?)\.(.+?)\/([^"]*)/)
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (urlCont) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
urlindv = urlindv.replace(/[.*+?^=!:${}()|[\]\/\\]/g, '\\$&')
|
|
|
|
|
var encoded = encodeURI(urlCont[4])
|
|
|
|
|
var punycoded = 'xn--' + punycode.encode(urlCont[2])
|
|
|
|
|
var eUrl = urlCont[1] + '://' + punycoded + '.' + urlCont[3] + '/' + encoded
|
|
|
|
|
var regExp = new RegExp('href="' + urlindv + '"', 'g')
|
|
|
|
|
content = content.replace(regExp, 'href="' + eUrl + '"')
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-07-15 01:56:19 +10:00
|
|
|
|
}
|
|
|
|
|
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (urls) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var analyze = `<a onclick="additionalIndv('${tlid}','${acct_id}','${id}')" class="add-show pointer">
|
|
|
|
|
${lang.lang_parse_url}
|
|
|
|
|
</a><br>`
|
2019-05-19 17:39:30 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var analyze = ''
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var viewer = ''
|
|
|
|
|
var hasmedia = ''
|
|
|
|
|
var youtube = ''
|
2019-09-08 10:39:26 +10:00
|
|
|
|
//Poll
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var poll = ''
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (toot.poll) {
|
2019-12-14 12:29:59 +11:00
|
|
|
|
var poll = pollParse(toot.poll, acct_id, false)
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
2019-08-31 01:09:37 +10:00
|
|
|
|
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var mediack = toot.media_attachments[0]
|
2019-09-08 10:39:26 +10:00
|
|
|
|
//メディアがあれば
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var media_ids = ''
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (mediack) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
hasmedia = 'hasmedia'
|
|
|
|
|
var cwdt = 100 / toot.media_attachments.length
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(toot.media_attachments).forEach(function(key2) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var media = toot.media_attachments[key2]
|
|
|
|
|
var purl = media.preview_url
|
|
|
|
|
media_ids = media_ids + media.id + ','
|
|
|
|
|
var url = media.url
|
2019-11-09 01:46:12 +11:00
|
|
|
|
var remote_url = media.remote_url
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var nsfwmes = ''
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (toot.sensitive && nsfw) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var sense = 'sensitive'
|
|
|
|
|
var blur = media.blurhash
|
|
|
|
|
nsfwmes = '<div class="nsfw-media">' + lang.lang_parse_nsfw + '</div>'
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (blur) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
purl = parseBlur(blur)
|
|
|
|
|
var sense = ''
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var sense = ''
|
|
|
|
|
var blur = null
|
2019-05-07 01:42:06 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (media.pleroma && media.pleroma.mime_type.indexOf('video') !== -1) {
|
|
|
|
|
viewer =
|
|
|
|
|
viewer +
|
|
|
|
|
`<a onclick="imgv('${id}','${key2}','${acct_id}')" id="${id}'-image-${key2}"
|
|
|
|
|
data-url="${url}" data-type="video" class="img-parsed">
|
|
|
|
|
<video src="${purl}" class="${sense} toot-img pointer" style="max-width:100%;" loop="true">
|
|
|
|
|
</a></span>`
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (media.type == 'unknown') {
|
|
|
|
|
var mty = media.remote_url.match(/.+(\..+)$/)[1]
|
|
|
|
|
viewer =
|
|
|
|
|
viewer +
|
|
|
|
|
`<a href="${media.remote_url}" title="${media.remote_url}">[${lang.lang_parse_unknown}(${mty})]</a> `
|
|
|
|
|
} else if (media.type == 'audio') {
|
|
|
|
|
viewer =
|
|
|
|
|
viewer +
|
|
|
|
|
'<audio src="' +
|
|
|
|
|
url +
|
|
|
|
|
'" class="pointer" style="width:100%;" controls></span>'
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-10-12 02:18:43 +11:00
|
|
|
|
if (media.description) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var desc = media.description
|
2019-10-12 02:18:43 +11:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var desc = ''
|
|
|
|
|
}
|
|
|
|
|
console.log('https://' + domain + '/storage/no-preview.png')
|
|
|
|
|
if (media.preview_url == 'https://' + domain + '/storage/no-preview.png') {
|
|
|
|
|
purl = url
|
|
|
|
|
nsfwmes = '<div class="nsfw-media">Unavailable preview</div>'
|
2019-10-12 02:18:43 +11:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
viewer =
|
|
|
|
|
viewer +
|
|
|
|
|
`<a onclick="imgv('${id}','${key2}','${acct_id}')"
|
2019-11-09 01:46:12 +11:00
|
|
|
|
id="${id}-image-${key2}" data-url="${url}" data-original="${remote_url}" data-type="${media.type}"
|
2019-11-09 00:52:54 +11:00
|
|
|
|
class="img-parsed img-link" style="width:calc(${cwdt}% - 1px); height:${imh};">
|
|
|
|
|
<img draggable="false" src="${purl}" class="${sense} toot-img pointer"
|
|
|
|
|
onerror="this.src=\'../../img/loading.svg\'" title="${desc}">
|
|
|
|
|
${nsfwmes}
|
|
|
|
|
</a>`
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
})
|
|
|
|
|
media_ids = media_ids.slice(0, -1)
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
viewer = ''
|
|
|
|
|
hasmedia = 'nomedia'
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var menck = toot.mentions[0]
|
|
|
|
|
var mentions = ''
|
2019-09-08 10:39:26 +10:00
|
|
|
|
//メンションであれば
|
|
|
|
|
if (menck) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
mentions = ''
|
|
|
|
|
var to_mention = []
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(toot.mentions).forEach(function(key3) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var mention = toot.mentions[key3]
|
2019-09-08 10:39:26 +10:00
|
|
|
|
//自分は除外
|
|
|
|
|
//自インスタンスかどうかを確認し、IDの一致
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (
|
|
|
|
|
mention.acct == mention.username &&
|
|
|
|
|
mention.id == localStorage.getItem('user-id_' + acct_id)
|
|
|
|
|
) {
|
2019-09-08 10:39:26 +10:00
|
|
|
|
//自分
|
|
|
|
|
} else {
|
|
|
|
|
//そのトゥの人NG
|
|
|
|
|
if (toot.account.acct != mention.acct) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
mentions =
|
|
|
|
|
mentions +
|
|
|
|
|
`<a onclick="udg('${mention.id}',' ${acct_id}')" class="pointer">@${mention.acct}</a> `
|
|
|
|
|
to_mention.push(mention.acct)
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
2019-03-13 02:51:07 +11:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
})
|
|
|
|
|
to_mention.push(toot.account.acct)
|
|
|
|
|
mentions = '<div style="float:right">' + mentions + '</div>'
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var to_mention = [toot.account.acct]
|
2019-11-14 03:42:09 +11:00
|
|
|
|
}
|
|
|
|
|
//メンションじゃなくてもlang_parse_thread
|
|
|
|
|
if (toot.in_reply_to_id) {
|
|
|
|
|
mentions = `<div style="float:right">
|
|
|
|
|
<a onclick="details('${toot.id}','${acct_id}','${tlid}')" class="pointer waves-effect">
|
|
|
|
|
${lang.lang_parse_thread}
|
|
|
|
|
</a></div>`
|
2019-08-21 22:51:36 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var tagck = toot.tags[0]
|
|
|
|
|
var tags = ''
|
2019-09-08 10:39:26 +10:00
|
|
|
|
//タグであれば
|
|
|
|
|
if (tagck) {
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(toot.tags).forEach(function(key4) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var tag = toot.tags[key4]
|
|
|
|
|
var featured = ` <a onclick="tagFeature('${tag.name}','${acct_id}')" class="pointer" title="add it to Featured tags">Feature</a> `
|
|
|
|
|
tags =
|
|
|
|
|
tags +
|
2019-11-26 03:26:17 +11:00
|
|
|
|
`<span class="hide" data-tag="${tag.name}" data-regTag="${tag.name.toLowerCase()}">#${
|
|
|
|
|
tag.name
|
|
|
|
|
}:
|
2019-11-09 00:52:54 +11:00
|
|
|
|
<a onclick="tl('tag','${tag.name}','${acct_id}','add')" class="pointer"
|
|
|
|
|
title="${lang.lang_parse_tagTL.replace(
|
|
|
|
|
'{{tag}}',
|
|
|
|
|
'#' + tag.name
|
|
|
|
|
)}">TL</a> <a onclick="brInsert('#${tag.name}')"
|
|
|
|
|
class="pointer" title="${lang.lang_parse_tagtoot.replace('{{tag}}', '#' + tag.name)}">Toot</a>
|
|
|
|
|
<a onclick="tagPin('${tag.name}')" class="pointer" title="${lang.lang_parse_tagpin.replace(
|
|
|
|
|
'{{tag}}',
|
|
|
|
|
'#' + tag.name
|
|
|
|
|
)}
|
2019-11-25 01:07:21 +11:00
|
|
|
|
">Pin</a>${featured}</span> `
|
2019-11-09 00:52:54 +11:00
|
|
|
|
})
|
|
|
|
|
tags = '<div style="float:right">' + tags + '</div>'
|
2018-09-06 02:47:27 +10:00
|
|
|
|
}
|
2019-09-08 10:39:26 +10:00
|
|
|
|
//リプ数
|
|
|
|
|
if (toot.replies_count || toot.replies_count === 0) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var replyct = toot.replies_count
|
|
|
|
|
if (replyct_view == 'hidden' && replyct > 1) {
|
|
|
|
|
replyct = '1+'
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var replyct = ''
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
//公開範囲を取得
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var vis = ''
|
|
|
|
|
var visen = toot.visibility
|
|
|
|
|
if (visen == 'public') {
|
|
|
|
|
var vis = `<i class="text-darken-3 material-icons gray sml vis-data pointer"
|
|
|
|
|
title="${lang.lang_parse_public}(${lang.lang_parse_clickcopy})" data-vis="public" onclick="staCopy('${id}')">
|
|
|
|
|
public
|
|
|
|
|
</i>`
|
|
|
|
|
var can_rt = ''
|
|
|
|
|
} else if (visen == 'unlisted') {
|
|
|
|
|
var vis = `<i class="text-darken-3 material-icons blue-text sml vis-data pointer"
|
|
|
|
|
title="${lang.lang_parse_unlisted}(${lang.lang_parse_clickcopy})" data-vis="public" onclick="staCopy('${id}')">
|
|
|
|
|
lock_open
|
|
|
|
|
</i>`
|
|
|
|
|
var can_rt = ''
|
|
|
|
|
} else if (visen == 'private') {
|
|
|
|
|
var vis = `<i class="text-darken-3 material-icons orange-text sml vis-data pointer"
|
|
|
|
|
title="${lang.lang_parse_private}(${lang.lang_parse_clickcopy})" data-vis="public" onclick="staCopy('${id}')">
|
|
|
|
|
lock
|
|
|
|
|
</i>`
|
2019-10-12 02:18:43 +11:00
|
|
|
|
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var can_rt = 'unvisible'
|
|
|
|
|
} else if (visen == 'direct') {
|
|
|
|
|
var vis = `<i class="text-darken-3 material-icons red-text sml vis-data pointer"
|
|
|
|
|
title="${lang.lang_parse_direct}(${lang.lang_parse_clickcopy})" data-vis="public" onclick="staCopy('${id}')">
|
|
|
|
|
mail
|
|
|
|
|
</i>`
|
|
|
|
|
var can_rt = 'unvisible'
|
|
|
|
|
}
|
|
|
|
|
if (toot.account.acct == localStorage.getItem('user_' + acct_id)) {
|
|
|
|
|
var if_mine = ''
|
2019-11-16 05:42:23 +11:00
|
|
|
|
var mine_via = ''
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var can_rt = ''
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var if_mine = 'hide'
|
|
|
|
|
var mine_via = ''
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
if (toot.favourited) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var if_fav = ' yellow-text'
|
|
|
|
|
var fav_app = 'faved'
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var if_fav = ''
|
|
|
|
|
var fav_app = ''
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
if (toot.reblogged) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var if_rt = 'light-blue-text'
|
|
|
|
|
var rt_app = 'rted'
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var if_rt = ''
|
|
|
|
|
var rt_app = ''
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
if (toot.pinned) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var if_pin = 'blue-text'
|
|
|
|
|
var pin_app = 'pinnedToot'
|
2019-11-16 05:42:23 +11:00
|
|
|
|
var pinStr = lang.lang_parse_unpin
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var if_pin = ''
|
|
|
|
|
var pin_app = ''
|
2019-11-16 05:42:23 +11:00
|
|
|
|
var pinStr = lang.lang_parse_pin
|
|
|
|
|
}
|
|
|
|
|
if (toot.bookmarked) {
|
|
|
|
|
var if_bkm = 'red-text'
|
|
|
|
|
var bkm_app = 'bkmed'
|
|
|
|
|
var bkmStr = lang.lang_parse_unbookmark
|
|
|
|
|
} else {
|
|
|
|
|
var if_bkm = ''
|
|
|
|
|
var bkm_app = ''
|
|
|
|
|
var bkmStr = lang.lang_parse_bookmark
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
//アニメ再生
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (gif == 'yes') {
|
|
|
|
|
var avatar = toot.account.avatar
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var avatar = toot.account.avatar_static
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
//ワードミュート
|
|
|
|
|
if (wordmuteList) {
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(wordmuteList).forEach(function(key8) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var worde = wordmuteList[key8]
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (worde) {
|
|
|
|
|
if (worde.tag) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var wordList = worde.tag
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var wordList = worde
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var regExp = new RegExp(wordList.replace(/[.*+?^=!:${}()|[\]\/\\]/g, '\\$&'), 'g')
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if ($.strip_tags(content).match(regExp)) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
boostback = 'hide by_filter'
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
2018-07-17 01:39:06 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
})
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
//ワード強調
|
|
|
|
|
if (wordempList) {
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(wordempList).forEach(function(key9) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var wordList = wordempList[key9]
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (wordList) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var wordList = wordList.tag
|
|
|
|
|
var regExp = new RegExp(wordList.replace(/[.*+?^=!:${}()|[\]\/\\]/g, '\\$&'), 'g')
|
|
|
|
|
content = content.replace(regExp, '<span class="emp">' + wordList + '</span>')
|
2018-03-11 01:22:59 +11:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
})
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
if (toot.emojis) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var emojick = toot.emojis[0]
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var emojick = false
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
//絵文字があれば
|
|
|
|
|
if (emojick) {
|
2020-01-01 21:21:35 +11:00
|
|
|
|
content = this.customEmojiReplace(content, toot, gif);
|
|
|
|
|
spoil = this.customEmojiReplace(spoil, toot, gif);
|
|
|
|
|
poll = this.customEmojiReplace(poll, toot, gif);
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
//ニコフレ絵文字
|
|
|
|
|
if (toot.profile_emojis) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var nicoemojick = toot.profile_emojis[0]
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var nicoemojick = false
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
//絵文字があれば(nico)
|
|
|
|
|
if (nicoemojick) {
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(toot.profile_emojis).forEach(function(keynico) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var emoji = toot.profile_emojis[keynico]
|
|
|
|
|
var shortcode = emoji.shortcode
|
|
|
|
|
var emoji_url = `<img draggable="false" src="${emoji.url}" class="emoji-img" data-emoji="${shortcode}" alt=" :${shortcode}: "
|
|
|
|
|
title="${shortcode}" onclick="this.classList.toggle(\'bigemoji\');">`
|
|
|
|
|
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
|
|
|
|
content = content.replace(regExp, emoji_url)
|
|
|
|
|
spoil = spoil.replace(regExp, emoji_url)
|
|
|
|
|
poll = poll.replace(regExp, emoji_url)
|
|
|
|
|
})
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
//デフォ絵文字
|
2019-11-09 00:52:54 +11:00
|
|
|
|
content = twemoji.parse(content)
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (dis_name) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
dis_name = twemoji.parse(dis_name)
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
if (spoil) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
spoil = twemoji.parse(spoil)
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
if (noticetext) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
noticetext = twemoji.parse(noticetext)
|
2019-05-19 17:39:30 +10:00
|
|
|
|
}
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (notice) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
notice = twemoji.parse(notice)
|
2019-05-19 17:39:30 +10:00
|
|
|
|
}
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (poll) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
poll = twemoji.parse(poll)
|
2019-05-19 17:39:30 +10:00
|
|
|
|
}
|
2019-09-08 10:39:26 +10:00
|
|
|
|
//日本語じゃない
|
|
|
|
|
if (toot.language != lang.language && toot.language) {
|
2019-11-16 05:42:23 +11:00
|
|
|
|
var trans = `<div class="">
|
2019-11-18 03:08:38 +11:00
|
|
|
|
<a onclick="trans('${toot.language}','${lang.language}', $(this))"
|
2019-11-16 05:42:23 +11:00
|
|
|
|
class="waves-effect waves-dark btn-flat actct" style="padding:0">
|
|
|
|
|
<i class="material-icons">g_translate</i>${lang.lang_parse_trans}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
</a>
|
|
|
|
|
</div>`
|
2019-09-08 10:39:26 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var trans = ''
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
//Cards
|
|
|
|
|
if (!card && toot.card) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var cards = toot.card
|
2019-11-14 04:42:06 +11:00
|
|
|
|
analyze = cardHtml(cards, acct_id, id)
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
//Ticker
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var tickerdom = ''
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (ticker) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var tickerdata = localStorage.getItem('ticker')
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (tickerdata) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var tickerdata = JSON.parse(tickerdata)
|
2019-05-19 17:39:30 +10:00
|
|
|
|
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var thisdomain = toot.account.acct.split('@')
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (thisdomain.length > 1) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
thisdomain = thisdomain[1]
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
|
|
|
|
for (var i = 0; i < tickerdata.length; i++) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var value = tickerdata[i]
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (value.domain == thisdomain) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var tickerdom = `<div style="user-select:none;cursor:default;background:linear-gradient(90deg, ${
|
|
|
|
|
value.bg
|
|
|
|
|
}, transparent 96%) !important; color:${
|
|
|
|
|
value.text
|
|
|
|
|
};width:100%; height:0.9rem; font-size:0.8rem;" class="tickers">
|
|
|
|
|
<img draggable="false" src="${
|
|
|
|
|
value.image
|
|
|
|
|
}" style="height:100%;" onerror="this.src=\'../../img/loading.svg\'">
|
|
|
|
|
<span style="position:relative; top:-0.2rem;">${escapeHTML(value.name)}</span>
|
|
|
|
|
</div>`
|
|
|
|
|
break
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-09-08 10:39:26 +10:00
|
|
|
|
//Quote
|
|
|
|
|
if (toot.quote) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var quoteUser = toot.quote.account.display_name
|
2019-09-08 10:39:26 +10:00
|
|
|
|
if (!quoteUser) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
quoteUser = toot.quote.account.acct
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
poll =
|
|
|
|
|
poll +
|
|
|
|
|
`<div class="quote-renote">
|
|
|
|
|
<div class="renote-icon">
|
|
|
|
|
<a onclick="udg('${toot.quote.account.id}','${acct_id}');" user="${
|
|
|
|
|
toot.quote.account.acct
|
|
|
|
|
}" class="udg">
|
|
|
|
|
<img draggable="false" src="${toot.quote.account.avatar}">
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="renote-user">
|
|
|
|
|
${escapeHTML(quoteUser)}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="renote-text">
|
|
|
|
|
${toot.quote.content}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="renote-details">
|
|
|
|
|
<a onclick="details('${
|
|
|
|
|
toot.quote.id
|
|
|
|
|
}','${acct_id}','${tlid}','normal')" class="waves-effect waves-dark btn-flat details" style="padding:0">
|
|
|
|
|
<i class="text-darken-3 material-icons">more_vert</i>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>`
|
2019-09-08 10:39:26 +10:00
|
|
|
|
}
|
2019-11-16 05:42:23 +11:00
|
|
|
|
//menuは何個?
|
2019-11-16 06:58:37 +11:00
|
|
|
|
var menuct = 2
|
2019-11-16 05:42:23 +11:00
|
|
|
|
if (viashow != 'hide') {
|
|
|
|
|
menuct++
|
|
|
|
|
}
|
|
|
|
|
if (if_mine != 'hide') {
|
|
|
|
|
menuct = menuct + 3
|
|
|
|
|
}
|
|
|
|
|
if (noauth == 'hide') {
|
|
|
|
|
menuct = 0
|
|
|
|
|
}
|
|
|
|
|
if (trans != '') {
|
|
|
|
|
menuct++
|
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
templete =
|
|
|
|
|
templete +
|
|
|
|
|
`<div
|
|
|
|
|
id="pub_${toot.id}"
|
2019-11-16 05:42:23 +11:00
|
|
|
|
class="cvo ${mouseover} ${boostback} ${fav_app} ${rt_app} ${pin_app} ${bkm_app} ${hasmedia} ${animecss}"
|
2019-11-09 00:52:54 +11:00
|
|
|
|
toot-id="${id}" unique-id="${uniqueid}" data-medias="${media_ids}" unixtime="${date(
|
|
|
|
|
obj[key].created_at,
|
|
|
|
|
'unix'
|
|
|
|
|
)}"
|
|
|
|
|
${if_notf}
|
|
|
|
|
onmouseover="mov('${toot.id}','${tlid}','mv')"
|
|
|
|
|
onclick="mov('${toot.id}','${tlid}','cl')"
|
|
|
|
|
onmouseout="resetmv('mv')"
|
|
|
|
|
>
|
2019-11-16 05:42:23 +11:00
|
|
|
|
<div class="area-notice grid"><span class="gray sharesta">${notice}${home}</span></div>
|
|
|
|
|
<div class="area-icon grid">
|
2019-11-09 00:52:54 +11:00
|
|
|
|
<a onclick="udg('${toot.account.id}','${acct_id}');" user="${toot.account.acct}" class="udg">
|
|
|
|
|
<img draggable="false" src="${avatar}" width="40" class="prof-img"
|
|
|
|
|
user="${toot.account.acct}" onerror="this.src='../../img/loading.svg'"/>
|
|
|
|
|
</a>
|
|
|
|
|
${noticeavatar}
|
|
|
|
|
</div>
|
2019-11-16 05:42:23 +11:00
|
|
|
|
<div class="area-display_name grid">
|
2019-11-09 00:52:54 +11:00
|
|
|
|
<div class="flex-name">
|
|
|
|
|
<span class="user">${dis_name}</span>
|
|
|
|
|
<span class="sml gray" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis; cursor:text;">
|
|
|
|
|
@${toot.account.acct}${locked}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex-time">
|
|
|
|
|
<span class="cbadge cbadge-hover pointer waves-effect" onclick="tootUriCopy('${toot.url}');"
|
|
|
|
|
title="${date(toot.created_at, 'absolute')}(${lang.lang_parse_clickcopyurl})">
|
|
|
|
|
<i class="far fa-clock"></i>${date(toot.created_at, datetype)}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2019-11-16 05:42:23 +11:00
|
|
|
|
<div class="area-toot grid">
|
2019-11-09 00:52:54 +11:00
|
|
|
|
${tickerdom}
|
|
|
|
|
<span class="${api_spoil} cw_text_${toot.id}">
|
|
|
|
|
<span class="cw_text">${spoil}</span>
|
|
|
|
|
${spoiler_show}
|
|
|
|
|
</span>
|
|
|
|
|
<div class="toot ${spoiler}">${content}</div>
|
|
|
|
|
${poll}${viewer}
|
|
|
|
|
</div>
|
2019-11-16 05:42:23 +11:00
|
|
|
|
<div class="area-additional grid">
|
2019-11-09 00:52:54 +11:00
|
|
|
|
<span class="additional">${analyze}</span>
|
|
|
|
|
${mentions}${tags}
|
|
|
|
|
</div>
|
2019-11-16 05:42:23 +11:00
|
|
|
|
<div class="area-vis grid">${vis}</div>
|
|
|
|
|
<div class="area-actions grid">
|
2019-11-09 00:52:54 +11:00
|
|
|
|
<div class="action ${antinoauth}">
|
|
|
|
|
<a onclick="detEx('${toot.url}','main')" class="waves-effect waves-dark details" style="padding:0">
|
|
|
|
|
${lang.lang_parse_det}
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="action ${antidmHide}">
|
|
|
|
|
<a onclick="details('${toot.id}','${acct_id}','${tlid}','normal')"
|
|
|
|
|
class="waves-effect waves-dark details" style="padding:0">
|
|
|
|
|
${lang.lang_parse_thread}
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="action ${disp['re']} ${noauth}">
|
|
|
|
|
<a onclick="re('${toot.id}','${to_mention}','${acct_id}','${visen}')"
|
|
|
|
|
class="waves-effect waves-dark btn-flat actct rep-btn"
|
|
|
|
|
data-men="${to_mention}" data-visen="${visen}" style="padding:0" title="${lang.lang_parse_replyto}">
|
|
|
|
|
<i class="fas fa-share"></i>
|
|
|
|
|
<span class="rep_ct">${replyct}</span>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="action ${can_rt} ${disp['rt']} ${noauth}">
|
2019-12-15 01:41:35 +11:00
|
|
|
|
<a onclick="rt('${toot.id}','${acct_id}','${tlid}')" class="waves-effect waves-dark btn-flat actct bt-btn"
|
2019-11-09 00:52:54 +11:00
|
|
|
|
style="padding:0" title="${lang.lang_parse_bt}">
|
2019-12-15 01:41:35 +11:00
|
|
|
|
<i class="fas fa-retweet ${if_rt} rt_${toot.id}"></i>
|
2019-11-09 00:52:54 +11:00
|
|
|
|
<span class="rt_ct">${toot.reblogs_count}</span>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="action ${can_rt} ${disp['qt']} ${noauth} ${qtClass}">
|
|
|
|
|
<a onclick="qt('${toot.id}','${acct_id}','${toot.account.acct}','${toot.url}')"
|
|
|
|
|
class="waves-effect waves-dark btn-flat actct" style="padding:0" title="${lang.lang_parse_quote}">
|
|
|
|
|
<i class="text-darken-3 fas fa-quote-right"></i>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2019-11-16 05:42:23 +11:00
|
|
|
|
<div class="action ${disp['bkm']} ${noauth} ${bkmClass}">
|
|
|
|
|
<a onclick="bkm('${toot.id}','${acct_id}','${tlid}')"
|
|
|
|
|
class="waves-effect waves-dark btn-flat actct bkm-btn" style="padding:0"
|
|
|
|
|
title="${lang.lang_parse_bookmark}">
|
|
|
|
|
<i class="fas text-darken-3 fa-bookmark bkm_${toot.id} ${if_bkm}"></i>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2019-11-09 00:52:54 +11:00
|
|
|
|
<div class="action ${disp['fav']} ${noauth}">
|
|
|
|
|
<a onclick="fav('${uniqueid}','${acct_id}','${tlid}')"
|
|
|
|
|
class="waves-effect waves-dark btn-flat actct fav-btn" style="padding:0"
|
|
|
|
|
title="${lang.lang_parse_fav}">
|
|
|
|
|
<i class="fas text-darken-3 fa-star${if_fav} fav_${uniqueid}"></i>
|
|
|
|
|
<span class="fav_ct">${toot.favourites_count}</span>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2019-11-16 05:42:23 +11:00
|
|
|
|
</div>
|
|
|
|
|
<div class="area-side">
|
|
|
|
|
<div class="action ${noauth}">
|
|
|
|
|
<a onclick="toggleAction($(this), ${menuct * 39 + 6})"
|
|
|
|
|
class="ctxMenu waves-effect waves-dark btn-flat" style="padding:0">
|
|
|
|
|
<i class="text-darken-3 material-icons act-icon">expand_more</i>
|
2019-11-09 00:52:54 +11:00
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2019-11-16 05:42:23 +11:00
|
|
|
|
<div class="action ${noauth}">
|
|
|
|
|
<a onclick="details('${toot.id}','${acct_id}','${tlid}','normal')"
|
2019-11-16 15:40:35 +11:00
|
|
|
|
class="waves-effect waves-dark btn-flat details ${dmHide}" style="padding:0"
|
|
|
|
|
title="${lang.lang_parse_detail}">
|
2019-11-16 15:36:16 +11:00
|
|
|
|
<i class="text-darken-3 material-icons">menu_open</i></a>
|
2019-11-09 00:52:54 +11:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2019-11-16 05:42:23 +11:00
|
|
|
|
<div class="contextMenu hide z-depth-4">
|
|
|
|
|
<div class="${viashow}">
|
|
|
|
|
via ${escapeHTML(via)}<br>
|
|
|
|
|
<a onclick="client('${$.strip_tags(via)}')" class="pointer">${lang.lang_parse_clientop}</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
2019-12-12 02:06:12 +11:00
|
|
|
|
<button onclick="bkm('${uniqueid}','${acct_id}','${tlid}')"
|
2019-11-16 05:42:23 +11:00
|
|
|
|
class="waves-effect waves-dark btn-flat actct bkm-btn" style="padding:0">
|
|
|
|
|
<i class="fas text-darken-3 fa-bookmark bkm_${toot.id} ${if_bkm}"></i>
|
2019-12-12 02:06:12 +11:00
|
|
|
|
<span class="bkmStr_${uniqueid}">${bkmStr}</span>
|
2019-11-16 15:36:16 +11:00
|
|
|
|
</button>
|
2019-11-16 05:42:23 +11:00
|
|
|
|
</div>
|
|
|
|
|
<div class="${if_mine}">
|
2019-12-12 02:06:12 +11:00
|
|
|
|
<button onclick="del('${uniqueid}','${acct_id}')" class="waves-effect waves-dark btn-flat actct"
|
2019-11-16 05:42:23 +11:00
|
|
|
|
style="padding:0">
|
|
|
|
|
<i class="fas fa-trash"></i>${lang.lang_parse_del}
|
2019-11-16 15:36:16 +11:00
|
|
|
|
</button>
|
2019-11-16 05:42:23 +11:00
|
|
|
|
</div>
|
|
|
|
|
<div class="${if_mine}">
|
2019-12-14 12:29:59 +11:00
|
|
|
|
<button onclick="pin('${uniqueid}','${acct_id}')" class="waves-effect waves-dark btn-flat actct" style="padding:0">
|
2019-12-12 02:06:12 +11:00
|
|
|
|
<i class="fas fa-map-pin pin_${uniqueid} ${if_pin}"></i>
|
|
|
|
|
<span class="pinStr_${uniqueid}">${pinStr}</span>
|
2019-11-16 15:36:16 +11:00
|
|
|
|
</button>
|
2019-11-09 00:52:54 +11:00
|
|
|
|
</div>
|
2019-11-16 05:42:23 +11:00
|
|
|
|
<div class="${if_mine}">
|
2019-12-12 02:06:12 +11:00
|
|
|
|
<button onclick="redraft('${uniqueid}','${acct_id}')" class="waves-effect waves-dark btn-flat actct"
|
2019-11-16 05:42:23 +11:00
|
|
|
|
style="padding:0">
|
|
|
|
|
<i class="material-icons">redo</i>${lang.lang_parse_redraft}
|
2019-11-16 15:36:16 +11:00
|
|
|
|
</button>
|
2019-11-09 00:52:54 +11:00
|
|
|
|
</div>
|
2019-11-16 05:42:23 +11:00
|
|
|
|
${trans}
|
2019-11-16 06:58:37 +11:00
|
|
|
|
<div>
|
2019-11-16 15:36:16 +11:00
|
|
|
|
<button onclick="postMessage(['openUrl', '${toot.url}'], '*')"
|
2019-11-16 06:58:37 +11:00
|
|
|
|
class="waves-effect waves-dark btn-flat actct" style="padding:0">
|
|
|
|
|
<i class="fas text-darken-3 fa-globe"></i>
|
|
|
|
|
${lang.lang_parse_link}
|
2019-11-16 15:36:16 +11:00
|
|
|
|
</button>
|
2019-11-16 06:58:37 +11:00
|
|
|
|
</div>
|
2019-11-09 00:52:54 +11:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
`
|
2019-02-27 03:51:37 +11:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
})
|
|
|
|
|
if (mix == 'mix') {
|
|
|
|
|
return [templete, local, times]
|
2018-01-28 23:22:43 +11:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
return templete
|
2018-01-28 23:22:43 +11:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//オブジェクトパーサー(ユーザーデータ)
|
2018-02-26 02:32:10 +11:00
|
|
|
|
function userparse(obj, auth, acct_id, tlid, popup) {
|
2018-03-27 13:39:35 +11:00
|
|
|
|
//独自ロケール
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var locale = localStorage.getItem('locale')
|
|
|
|
|
if (locale == 'yes') {
|
|
|
|
|
var locale = false
|
2018-03-27 13:39:35 +11:00
|
|
|
|
}
|
2019-12-14 12:29:59 +11:00
|
|
|
|
var gif = localStorage.getItem('gif')
|
|
|
|
|
if (!gif) {
|
|
|
|
|
gif = 'yes'
|
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var templete = ''
|
|
|
|
|
var datetype = localStorage.getItem('datetype')
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(obj).forEach(function(key) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var toot = obj[key]
|
2019-07-26 00:55:25 +10:00
|
|
|
|
if (toot) {
|
|
|
|
|
if (!toot.username) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var raw = toot
|
|
|
|
|
toot = toot.account
|
|
|
|
|
var notf = true
|
2019-07-26 00:55:25 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var notf = false
|
2018-09-10 03:06:00 +10:00
|
|
|
|
}
|
2019-09-01 01:02:34 +10:00
|
|
|
|
//Instance Actorって…
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (toot.username.indexOf('.') < 0) {
|
2019-09-01 01:02:34 +10:00
|
|
|
|
if (toot.locked) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var locked = ' <i class="fas fa-lock red-text"></i>'
|
2019-09-01 01:02:34 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var locked = ''
|
2019-07-26 00:55:25 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (auth == 'request') {
|
2019-11-16 05:42:23 +11:00
|
|
|
|
var authhtml = `<i class="material-icons gray pointer" onclick="request('${toot.id}','authorize','${acct_id}')" title="Accept">
|
2019-11-09 00:52:54 +11:00
|
|
|
|
person_add
|
|
|
|
|
</i>
|
|
|
|
|
<i class="material-icons gray pointer" onclick="request('${toot.id}','reject','${acct_id}')" title="Reject">
|
|
|
|
|
person_add_disabled
|
|
|
|
|
</i>`
|
2019-09-01 01:02:34 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var authhtml = ''
|
2019-09-01 01:02:34 +10:00
|
|
|
|
}
|
2019-12-12 02:06:12 +11:00
|
|
|
|
if (auth == 'follow') {
|
|
|
|
|
var ftxt = lang.lang_parse_followed
|
|
|
|
|
if (!locale && localStorage.getItem('followlocale_' + acct_id)) {
|
|
|
|
|
ftxt = localStorage.getItem('followlocale_' + acct_id)
|
|
|
|
|
}
|
|
|
|
|
} else if (auth == 'moved') {
|
|
|
|
|
var ftxt = lang.lang_parse_moved
|
2019-12-14 12:29:59 +11:00
|
|
|
|
}
|
2019-12-13 04:07:33 +11:00
|
|
|
|
console.log(auth, ftxt)
|
2019-09-01 01:02:34 +10:00
|
|
|
|
if (popup > 0 || popup == -1 || notf) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var notftext = ftxt + '<br>'
|
2019-09-01 01:02:34 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var notftext = ''
|
2019-09-01 01:02:34 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var memory = localStorage.getItem('notice-mem')
|
2019-09-01 01:02:34 +10:00
|
|
|
|
if (popup >= 0 && obj.length < 5 && notftext != memory) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
M.toast({ html: escapeHTML(toot.display_name) + ':' + ftxt, displayLength: popup * 1000 })
|
|
|
|
|
$('.notf-icon_' + tlid).addClass('red-text')
|
|
|
|
|
localStorage.setItem('notice-mem', notftext)
|
|
|
|
|
notftext = ''
|
|
|
|
|
var native = localStorage.getItem('nativenotf')
|
2019-09-01 01:02:34 +10:00
|
|
|
|
if (!native) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
native = 'yes'
|
2019-09-01 01:02:34 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (native == 'yes') {
|
|
|
|
|
var os = localStorage.getItem('platform')
|
2019-09-01 01:02:34 +10:00
|
|
|
|
var options = {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
body: toot.display_name + '(' + toot.acct + ')' + ftxt,
|
2019-09-01 01:02:34 +10:00
|
|
|
|
icon: toot.avatar
|
2019-11-09 00:52:54 +11:00
|
|
|
|
}
|
|
|
|
|
var domain = localStorage.getItem('domain_' + acct_id)
|
|
|
|
|
var n = new Notification('TheDesk:' + domain, options)
|
2019-07-26 00:55:25 +10:00
|
|
|
|
}
|
2018-09-10 03:06:00 +10:00
|
|
|
|
}
|
2019-09-01 01:02:34 +10:00
|
|
|
|
if (toot.display_name) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var dis_name = escapeHTML(toot.display_name)
|
2019-09-01 01:02:34 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var dis_name = toot.username
|
2019-09-01 01:02:34 +10:00
|
|
|
|
}
|
|
|
|
|
//ネイティブ通知
|
2019-05-19 17:39:30 +10:00
|
|
|
|
|
2019-09-01 01:02:34 +10:00
|
|
|
|
if (toot.emojis) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var actemojick = toot.emojis[0]
|
2019-09-01 01:02:34 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var actemojick = false
|
2019-09-01 01:02:34 +10:00
|
|
|
|
}
|
|
|
|
|
//絵文字があれば
|
|
|
|
|
if (actemojick) {
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(toot.emojis).forEach(function(key5) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var emoji = toot.emojis[key5]
|
|
|
|
|
var shortcode = emoji.shortcode
|
2019-12-14 12:29:59 +11:00
|
|
|
|
if (gif == 'yes') {
|
|
|
|
|
var emoSource = emoji.url
|
|
|
|
|
} else {
|
|
|
|
|
var emoSource = emoji.static_url
|
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var emoji_url = `
|
2019-12-14 12:29:59 +11:00
|
|
|
|
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
|
|
|
|
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');">
|
|
|
|
|
`
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
|
|
|
|
dis_name = dis_name.replace(regExp, emoji_url)
|
|
|
|
|
})
|
2019-09-01 01:02:34 +10:00
|
|
|
|
}
|
|
|
|
|
if (dis_name) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
dis_name = twemoji.parse(dis_name)
|
2019-09-01 01:02:34 +10:00
|
|
|
|
}
|
|
|
|
|
if (toot.avatar) {
|
2019-12-14 12:29:59 +11:00
|
|
|
|
if (gif == 'yes') {
|
|
|
|
|
var avatar = toot.avatar
|
|
|
|
|
} else {
|
|
|
|
|
var avatar = toot.avatar_static
|
|
|
|
|
}
|
2019-09-01 01:02:34 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var avatar = '../../img/missing.svg'
|
2019-09-01 01:02:34 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (tlid == 'dir' && acct_id == 'noauth') {
|
2019-11-16 05:42:23 +11:00
|
|
|
|
var udg = `<a onclick="udgEx('${toot.url}','main');" user="${toot.acct}" class="udg">`
|
2019-09-01 01:02:34 +10:00
|
|
|
|
} else {
|
2019-11-16 05:42:23 +11:00
|
|
|
|
var udg = `<a onclick="udg('${toot.id}','${acct_id}');" user="${toot.acct}" class="udg">`
|
2019-09-01 01:02:34 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var latest = date(toot.last_status_at, 'relative')
|
2019-09-01 01:02:34 +10:00
|
|
|
|
if (toot.last_status_at) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var latesthtml = `<div class="cbadge" style="width:100px;">Last:${latest}</div>`
|
2019-09-01 01:02:34 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var latesthtml = ''
|
2019-09-01 01:02:34 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
templete =
|
|
|
|
|
templete +
|
|
|
|
|
`<div class="cvo" style="padding-top:5px;" user-id="${toot.id}">
|
|
|
|
|
<div class="area-notice">${notftext}</div>
|
|
|
|
|
<div class="area-icon">
|
|
|
|
|
${udg}
|
|
|
|
|
<img
|
|
|
|
|
draggable="false"
|
|
|
|
|
src="${avatar}"
|
|
|
|
|
width="40"
|
|
|
|
|
class="prof-img"
|
|
|
|
|
user="${toot.acct}"
|
|
|
|
|
onerror="this.src='../../img/loading.svg'"
|
|
|
|
|
/>
|
|
|
|
|
</a></div>
|
|
|
|
|
<div class="area-display_name">
|
|
|
|
|
<div class="flex-name">
|
|
|
|
|
<span class="user">${dis_name} </span>
|
|
|
|
|
<span
|
|
|
|
|
class="sml gray"
|
|
|
|
|
style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;user-select:auto; cursor:text;"
|
|
|
|
|
>
|
|
|
|
|
@ ${toot.acct}${locked}</span
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="area-toot acct-note">
|
|
|
|
|
${toot.note.replace(/<br\s?\/?>.+/g, '<span class="gray">...</span>')}
|
|
|
|
|
</div>
|
|
|
|
|
<div style="justify-content:space-around;top:5px" class="area-actions">
|
|
|
|
|
<div class="cbadge" style="width:100px;">
|
|
|
|
|
${lang.lang_status_follow}:${toot.following_count}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cbadge" style="width:100px;">
|
|
|
|
|
${lang.lang_status_followers}:${toot.followers_count}
|
|
|
|
|
</div>
|
|
|
|
|
${latesthtml}${authhtml}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
`
|
2019-08-30 02:46:04 +10:00
|
|
|
|
}
|
2019-05-19 17:39:30 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
})
|
|
|
|
|
return templete
|
2018-01-28 23:22:43 +11:00
|
|
|
|
}
|
2018-03-11 01:22:59 +11:00
|
|
|
|
//クライアントダイアログ
|
|
|
|
|
function client(name) {
|
2019-11-16 05:42:23 +11:00
|
|
|
|
$('#contextWrap').addClass('hide')
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (name != 'Unknown') {
|
2019-05-19 17:39:30 +10:00
|
|
|
|
//聞く
|
2019-06-26 01:33:20 +10:00
|
|
|
|
Swal.fire({
|
2019-05-19 17:39:30 +10:00
|
|
|
|
title: lang.lang_parse_clientop,
|
2019-06-26 01:33:20 +10:00
|
|
|
|
text: name + lang.lang_parse_clienttxt,
|
2019-11-09 00:52:54 +11:00
|
|
|
|
type: 'info',
|
2019-06-26 01:33:20 +10:00
|
|
|
|
showCancelButton: true,
|
2019-11-09 00:52:54 +11:00
|
|
|
|
confirmButtonColor: '#3085d6',
|
|
|
|
|
cancelButtonColor: '#3085d6',
|
2019-06-26 01:33:20 +10:00
|
|
|
|
confirmButtonText: lang.lang_parse_clientmute,
|
|
|
|
|
cancelButtonText: lang.lang_parse_clientemp,
|
|
|
|
|
showCloseButton: true,
|
2019-10-12 02:18:43 +11:00
|
|
|
|
focusConfirm: false
|
|
|
|
|
}).then(result => {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
if (result.dismiss == 'cancel') {
|
2019-06-26 01:33:20 +10:00
|
|
|
|
//Emp
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var cli = localStorage.getItem('client_emp')
|
|
|
|
|
var obj = JSON.parse(cli)
|
2019-06-26 01:33:20 +10:00
|
|
|
|
if (!obj) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var obj = []
|
|
|
|
|
obj.push(name)
|
|
|
|
|
M.toast({ html: escapeHTML(name) + lang.lang_status_emphas, displayLength: 2000 })
|
2019-06-26 01:33:20 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var can
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(obj).forEach(function(key) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var cliT = obj[key]
|
2019-06-26 01:33:20 +10:00
|
|
|
|
if (cliT != name && !can) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
can = false
|
2019-06-26 01:33:20 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
can = true
|
|
|
|
|
obj.splice(key, 1)
|
|
|
|
|
M.toast({ html: escapeHTML(name) + lang.lang_status_unemphas, displayLength: 2000 })
|
2019-06-26 01:33:20 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
})
|
2019-06-26 01:33:20 +10:00
|
|
|
|
if (!can) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
obj.push(name)
|
|
|
|
|
M.toast({ html: escapeHTML(name) + lang.lang_status_emphas, displayLength: 2000 })
|
2019-06-26 01:33:20 +10:00
|
|
|
|
} else {
|
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var json = JSON.stringify(obj)
|
|
|
|
|
localStorage.setItem('client_emp', json)
|
|
|
|
|
parseColumn()
|
2019-06-26 01:33:20 +10:00
|
|
|
|
}
|
|
|
|
|
} else if (result.value) {
|
|
|
|
|
//Mute
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var cli = localStorage.getItem('client_mute')
|
|
|
|
|
var obj = JSON.parse(cli)
|
2019-06-26 01:33:20 +10:00
|
|
|
|
if (!obj) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
obj = []
|
2019-06-26 01:33:20 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
obj.push(name)
|
|
|
|
|
var json = JSON.stringify(obj)
|
|
|
|
|
localStorage.setItem('client_mute', json)
|
|
|
|
|
M.toast({ html: escapeHTML(name) + lang.lang_parse_mute, displayLength: 2000 })
|
|
|
|
|
parseColumn()
|
2019-06-26 01:33:20 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
})
|
2019-05-19 17:39:30 +10:00
|
|
|
|
}
|
2019-09-30 03:23:25 +10:00
|
|
|
|
}
|
|
|
|
|
//Poll Parser
|
2019-12-14 12:29:59 +11:00
|
|
|
|
function pollParse(poll, acct_id, emojis) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var datetype = localStorage.getItem('datetype')
|
2019-11-26 03:26:17 +11:00
|
|
|
|
var anime = localStorage.getItem('animation')
|
|
|
|
|
if (anime == 'yes' || !anime) {
|
|
|
|
|
var lpAnime = 'lpAnime'
|
|
|
|
|
} else {
|
|
|
|
|
var lpAnime = ''
|
|
|
|
|
}
|
2019-12-14 12:29:59 +11:00
|
|
|
|
var gif = localStorage.getItem('gif')
|
|
|
|
|
if (!gif) {
|
|
|
|
|
gif = 'yes'
|
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var choices = poll.options
|
2019-09-30 03:23:25 +10:00
|
|
|
|
if (poll.own_votes) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var minechoice = poll.own_votes
|
2019-09-30 03:23:25 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var minechoice = []
|
2019-09-30 03:23:25 +10:00
|
|
|
|
}
|
2019-11-26 03:02:15 +11:00
|
|
|
|
var refresh = `<a onclick="voteMastodonrefresh('${acct_id}','${poll.id}')" class="pointer">
|
|
|
|
|
${lang.lang_manager_refresh}
|
|
|
|
|
</a>`
|
2019-11-27 01:20:03 +11:00
|
|
|
|
if (poll.voted && poll.own_votes.length) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var myvote = lang.lang_parse_voted
|
2019-11-26 03:26:17 +11:00
|
|
|
|
if (poll.expired) myvote = myvote + '/' + lang.lang_parse_endedvote
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var result_hide = ''
|
2019-11-27 01:20:03 +11:00
|
|
|
|
} else if (poll.voted && !poll.own_votes.length) {
|
|
|
|
|
var myvote = lang.lang_parse_myvote
|
|
|
|
|
if (poll.expired) myvote = myvote + '/' + lang.lang_parse_endedvote
|
|
|
|
|
var result_hide = ''
|
2019-09-30 03:23:25 +10:00
|
|
|
|
} else if (poll.expired) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var myvote = lang.lang_parse_endedvote
|
|
|
|
|
var result_hide = ''
|
2019-09-30 03:23:25 +10:00
|
|
|
|
} else {
|
2019-11-16 05:42:23 +11:00
|
|
|
|
var myvote = `<a onclick="voteMastodon('${acct_id}','${poll.id}')" class="votebtn">${lang.lang_parse_vote}</a><br>`
|
2019-09-30 03:23:25 +10:00
|
|
|
|
if (choices[0].votes_count === 0 || choices[0].votes_count > 0) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
myvote =
|
|
|
|
|
myvote +
|
|
|
|
|
`<a onclick="showResult('${acct_id}','${poll.id}')" class="pointer">
|
|
|
|
|
${lang.lang_parse_unvoted}
|
2019-11-26 03:02:15 +11:00
|
|
|
|
</a> `
|
2019-09-30 03:23:25 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var result_hide = 'hide'
|
2019-09-30 03:23:25 +10:00
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var ended = date(poll.expires_at, datetype)
|
|
|
|
|
var pollHtml = ''
|
2019-12-14 12:29:59 +11:00
|
|
|
|
if (choices[0].votes_count === 0 || choices[0].votes_count > 0) {
|
2019-11-26 03:26:17 +11:00
|
|
|
|
var max = _.maxBy(choices, 'votes_count').votes_count
|
|
|
|
|
} else {
|
|
|
|
|
var max = 0
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-12 02:18:43 +11:00
|
|
|
|
Object.keys(choices).forEach(function(keyc) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var choice = choices[keyc]
|
|
|
|
|
var voteit = ''
|
2019-09-30 03:23:25 +10:00
|
|
|
|
for (var i = 0; i < minechoice.length; i++) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var me = minechoice[i]
|
2019-09-30 03:23:25 +10:00
|
|
|
|
if (me == keyc) {
|
2019-12-14 12:29:59 +11:00
|
|
|
|
var voteit =
|
|
|
|
|
'<span class="ownMark"><img class="emoji" draggable="false" src="https://twemoji.maxcdn.com/v/12.1.4/72x72/2705.png"></span>'
|
2019-11-09 00:52:54 +11:00
|
|
|
|
break
|
2019-09-30 03:23:25 +10:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!poll.voted && !poll.expired) {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var votesel =
|
|
|
|
|
"voteSelMastodon('" + acct_id + "','" + poll.id + "'," + keyc + ',' + poll.multiple + ')'
|
2019-11-27 01:20:03 +11:00
|
|
|
|
var voteclass = 'pointer'
|
2019-09-30 03:23:25 +10:00
|
|
|
|
} else {
|
2019-11-09 00:52:54 +11:00
|
|
|
|
var votesel = ''
|
|
|
|
|
var voteclass = ''
|
2019-09-30 03:23:25 +10:00
|
|
|
|
}
|
2019-11-26 03:26:17 +11:00
|
|
|
|
var per = Math.ceil((choice.votes_count / poll.votes_count) * 100)
|
2019-12-14 12:29:59 +11:00
|
|
|
|
if (!per) per = 0
|
2019-11-26 03:26:17 +11:00
|
|
|
|
if (max == choice.votes_count) {
|
2019-11-26 03:02:15 +11:00
|
|
|
|
var addPoll = 'maxVoter'
|
|
|
|
|
} else {
|
|
|
|
|
var addPoll = ''
|
|
|
|
|
}
|
2019-11-26 03:26:17 +11:00
|
|
|
|
var openData = ''
|
|
|
|
|
if (choice.votes_count !== null) {
|
|
|
|
|
openData = `<span style="float: right">${choice.votes_count}<span class="sml">(${per}%)</span></span>`
|
|
|
|
|
} else {
|
|
|
|
|
openData = `<span style="float: right">?<span class="sml">(-%)</span></span>`
|
|
|
|
|
}
|
2019-12-14 12:29:59 +11:00
|
|
|
|
var choiceText = escapeHTML(choice.title)
|
|
|
|
|
if (emojis) {
|
|
|
|
|
//絵文字があれば
|
|
|
|
|
Object.keys(emojis).forEach(function(key5) {
|
|
|
|
|
var emoji = emojis[key5]
|
|
|
|
|
var shortcode = emoji.shortcode
|
|
|
|
|
if (gif == 'yes') {
|
|
|
|
|
var emoSource = emoji.url
|
|
|
|
|
} else {
|
|
|
|
|
var emoSource = emoji.static_url
|
|
|
|
|
}
|
|
|
|
|
var emoji_url = `
|
|
|
|
|
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
|
|
|
|
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');">
|
|
|
|
|
`
|
|
|
|
|
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
|
|
|
|
choiceText = choiceText.replace(regExp, emoji_url)
|
|
|
|
|
})
|
|
|
|
|
choiceText = twemoji.parse(choiceText)
|
|
|
|
|
}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
pollHtml =
|
|
|
|
|
pollHtml +
|
|
|
|
|
`<div class="${voteclass} vote vote_${acct_id}_${poll.id}_${keyc}" onclick="${votesel}">
|
2019-11-27 01:20:03 +11:00
|
|
|
|
<span class="vote_${acct_id}_${poll.id}_result leadPoll ${result_hide} ${addPoll} ${lpAnime}" style="width: ${per}%"></span>
|
2019-12-14 12:29:59 +11:00
|
|
|
|
<span class="onPoll">${choiceText}${voteit}</span>
|
2019-11-26 03:02:15 +11:00
|
|
|
|
<span class="vote_${acct_id}_${poll.id}_result ${result_hide} onPoll">
|
2019-11-26 03:26:17 +11:00
|
|
|
|
${openData}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
</span>
|
|
|
|
|
</div>`
|
|
|
|
|
})
|
2019-11-26 03:02:15 +11:00
|
|
|
|
if (poll.expired) {
|
|
|
|
|
refresh = ''
|
|
|
|
|
}
|
2019-11-16 05:42:23 +11:00
|
|
|
|
pollHtml = `<div class="vote_${acct_id}_${poll.id}">
|
2019-11-09 00:52:54 +11:00
|
|
|
|
${pollHtml}${myvote}
|
2019-11-26 03:02:15 +11:00
|
|
|
|
${refresh}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
<span class="cbadge cbadge-hover" title="${date(poll.expires_at, 'absolute')}">
|
|
|
|
|
<i class="far fa-calendar-times"></i>
|
|
|
|
|
${ended}
|
2019-11-26 03:02:15 +11:00
|
|
|
|
</span>${poll.voters_count} ${lang.lang_parse_people}
|
2019-11-09 00:52:54 +11:00
|
|
|
|
</div>`
|
|
|
|
|
return pollHtml
|
2019-10-12 02:18:43 +11:00
|
|
|
|
}
|
2020-01-01 21:21:35 +11:00
|
|
|
|
function customEmojiReplace(content, toot, gif) {
|
|
|
|
|
var contentDiv = document.createElement('div');
|
|
|
|
|
contentDiv.style.display = 'none';
|
|
|
|
|
contentDiv.innerHTML = content;
|
|
|
|
|
var replace = false;
|
|
|
|
|
Object.keys(toot.emojis).forEach(function(key5) {
|
|
|
|
|
var emoji = toot.emojis[key5]
|
|
|
|
|
var shortcode = emoji.shortcode
|
|
|
|
|
if (gif == 'yes') {
|
|
|
|
|
var emoSource = emoji.url
|
|
|
|
|
} else {
|
|
|
|
|
var emoSource = emoji.static_url
|
|
|
|
|
}
|
|
|
|
|
var nodes = document.evaluate('//text()', contentDiv, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null );
|
|
|
|
|
if ( nodes.snapshotLength == 0 ) return;
|
|
|
|
|
|
|
|
|
|
var shortcodeBracket = (':' + shortcode + ':');
|
|
|
|
|
var img = document.createElement('img');
|
|
|
|
|
img.setAttribute('draggable', 'false');
|
|
|
|
|
img.setAttribute('src', emoSource);
|
|
|
|
|
img.setAttribute('class', 'emoji-img');
|
|
|
|
|
img.setAttribute('data-emoji', shortcode);
|
|
|
|
|
img.setAttribute('alt', shortcodeBracket);
|
|
|
|
|
img.setAttribute('title', shortcodeBracket);
|
|
|
|
|
img.setAttribute('onclick', "this.classList.toggle('bigemoji');");
|
|
|
|
|
|
|
|
|
|
for ( var i=0; i < nodes.snapshotLength; i++ ) {
|
|
|
|
|
var node = nodes.snapshotItem(i);
|
|
|
|
|
var txt = node.textContent;
|
|
|
|
|
var spos = txt.indexOf(shortcodeBracket);
|
|
|
|
|
if (spos == -1) continue;
|
|
|
|
|
|
|
|
|
|
var txtBefore = document.createTextNode(txt.substr(0, spos));
|
|
|
|
|
var txtAfter = document.createTextNode(txt.substr(spos + shortcodeBracket.length));
|
|
|
|
|
|
|
|
|
|
node.parentNode.insertBefore(txtBefore, node);
|
|
|
|
|
node.parentNode.insertBefore(img, node);
|
|
|
|
|
node.parentNode.insertBefore(txtAfter, node);
|
|
|
|
|
node.textContent = '';
|
|
|
|
|
replace = true;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
if (replace) contentDiv.innerHTML = this.customEmojiReplace(contentDiv.innerHTML, toot, gif);
|
|
|
|
|
return contentDiv.innerHTML;
|
|
|
|
|
}
|