//ユーザーデータ表示 localStorage.removeItem("history"); //コード受信 if(location.search){ var m = location.search.match(/\?mode=([a-zA-Z-0-9]+)\&code=(.+)/); var mode=m[1]; var codex=m[2]; if(mode=="user"){ udgEx(codex,0); } } function udgEx(user,acct_id){ if(user=="selector"){ user = $("#his-acct").attr('fullname'); } if(acct_id=="selector"){ acct_id = $("#user-acct-sel").val(); } console.log(user); var domain = localStorage.getItem("domain_" + acct_id); var at = localStorage.getItem(domain + "_at"); var start = "https://" + domain + "/api/v1/search?resolve=true&q="+user fetch(start, { method: 'GET', headers: { 'content-type': 'application/json', 'Authorization': 'Bearer ' + at } }).then(function(response) { return response.json(); }).catch(function(error) { todo(error); console.error(error); }).then(function(json) { var id=json.accounts[0].id; udg(id,acct_id); }); return; } function udg(user, acct_id) { reset(); if (!user) { user = localStorage.getItem("user-id_"+acct_id); console.log(user); } todo("User Data Loading..."); var domain = localStorage.getItem("domain_" + acct_id); var at = localStorage.getItem(domain + "_at"); var start = "https://" + domain + "/api/v1/accounts/" + user; console.log(start); fetch(start, { method: 'GET', headers: { 'content-type': 'application/json', 'Authorization': 'Bearer ' + at }, }).then(function(response) { return response.json(); }).catch(function(error) { todo(error); console.error(error); }).then(function(json) { //一つ前のユーザーデータ if (!localStorage.getItem("history")){ $("#his-history-btn").prop("disabled",true); }else{ $("#his-history-btn").prop("disabled",false); $('#his-data').attr("history", localStorage.getItem("history")); } //moved設定時 if (json.moved) { Materialize.toast( 'このアカウントは移行します', 4000) } else { $('#his-data').modal('open'); $('#his-data').attr("user-id", user); $('#his-data').attr("use-acct", acct_id); if(json.username!=json.acct){ //Remote $('#his-data').attr("remote", "true"); var fullname=json.acct; }else{ $('#his-data').attr("remote", "false"); var fullname=json.acct+"@"+domain; } utl(json.id, '', acct_id); flw(json.id, '', acct_id); fer(json.id, '', acct_id); $("#his-name").text(json.display_name); $("#his-acct").text(json.acct); $("#his-acct").attr("fullname",fullname); $("#his-prof").attr("src", json.avatar); $('#his-data').css('background-image', 'url(' + json.header + ')'); $("#his-sta").text(json.statuses_count); $("#his-follow").text(json.following_count); $("#his-follower").text(json.followers_count); $("#his-since").text(crat(json.created_at)); if(json.fields){ var note=json.note+'My Fields
' for(var i=0;i'; } note=note+'
'+fname+''+fval+'
' $("#his-des").html(note); }else{ $("#his-des").html(json.note); } $('#his-data').css('background-size', 'cover'); localStorage.setItem("history" , user); //自分の時 if (json.acct == localStorage.getItem("user_"+acct_id)) { showFav('', acct_id); showBlo('', acct_id); showMut('', acct_id); showDom('', acct_id); showReq('', acct_id); $("#his-name-val").val(json.display_name); var des = json.note; des = des.replace(/
/g, "\n") des = $.strip_tags(des); $("#his-des-val").val(des); $("#his-follow-btn").hide(); $("#his-block-btn").hide(); $("#his-mute-btn").hide(); $("#his-notf-btn").hide(); $("#his-domain-btn").hide(); $("#his-emp-btn").hide(); $(".only-my-data").show(); $(".only-his-data").hide(); } else { relations(user, acct_id); hisList(user,acct_id); $(".only-my-data").hide(); $(".only-his-data").show(); } } todc(); }); } //一つ前のユーザーデータ表示 function historyShow(){ var acct_id=$('#his-data').attr("use-acct"); var user=$('#his-data').attr("history"); udg(user, acct_id, "true") } //選択アカウントのプロフ function profShow(){ var acct_id = $("#post-acct-sel").val(); var user = localStorage.getItem("user-id_"+acct_id); console.log("user-id_"+acct_id+":"+user); udg(user, acct_id) } //FF関係取得 function relations(user, acct_id) { var domain = localStorage.getItem("domain_" + acct_id); var at = localStorage.getItem(domain + "_at"); var start = "https://" + domain + "/api/v1/accounts/relationships?id=" + user; fetch(start, { method: 'GET', headers: { 'content-type': 'application/json', 'Authorization': 'Bearer ' + at }, }).then(function(response) { return response.json(); }).catch(function(error) { todo(error); console.error(error); }).then(function(json) { var json = json[0]; console.log(json); if (json.following) { //自分がフォローしている $("#his-data").addClass("following"); $("#his-follow-btn").text("フォロー解除"); }else{ $("#his-follow-btn").text("フォロー"); } if (json.followed_by) { //フォローされてる $("#his-relation").text("フォローされています"); } if (json.blocking) { $("#his-data").addClass("blocking"); $("#his-block-btn").text("ブロック解除"); }else{ $("#his-block-btn").text("ブロック"); } if (json.muting) { $("#his-data").addClass("muting"); $("#his-mute-btn").text("ミュート解除"); }else{ $("#his-mute-btn").text("ミュート"); } if (json.muting_notifications) { $("#his-data").addClass("mutingNotf"); $("#his-notf-btn").text("通知ミュート解除"); }else{ $("#his-notf-btn").text("通知ミュート"); } if (json.domain_blocking) { $("#his-data").addClass("blockingDom"); $("#his-domain-btn").text("ドメインブロック解除"); }else{ $("#his-domain-btn").text("ドメインブロック"); } }); } //オールリセット function hisclose() { $('#his-data').modal('close'); reset(); $('#his-data').attr("history", ""); localStorage.removeItem("history"); } function reset(){ $(".tab-content:eq(0)").show(); $(".tab-content:gt(0)").hide(); $("#his-name").text("Loading"); $("#his-acct").text(""); $("#his-prof").attr("src", "./img/loading.svg"); $('#his-data').css('background-image', 'url(./img/loading.svg)'); $("#his-sta").text(""); $("#his-follow").text(""); $("#his-follower").text(""); $("#his-des").html(""); $('#his-data').css('background-size', 'cover'); $("#his-since").text(""); $("#his-data").removeClass("following"); $("#his-data").removeClass("muting"); $("#his-data").removeClass("blocking"); $("#his-data").removeClass("mutingNotf"); $("#his-data").removeClass("blockingDom"); $("#his-follow-btn").show(); $("#his-block-btn").show(); $("#his-mute-btn").show(); $("#his-notf-btn").show(); $("#his-domain-btn").show(); $("#his-emp-btn").show(); $("#his-follow-btn").text("フォロー"); $("#his-mute-btn").text("ミュート"); $("#his-block-btn").text("ブロック"); $("#his-notf-btn").text("通知ミュート"); $("#his-domain-btn").text("ドメインブロック"); $("#his-relation").text(""); $(".cont-series").html(""); $("#domainblock").val(""); } $('#my-data-nav .custom-tab').on('click',function(){ var target=$(this).find("a").attr("go"); $("#my-data-nav .custom-tab").removeClass("active-back"); $(this).addClass("active-back"); $(target).show(); $(".tab-content:not("+target+")").hide(); });