来年の記事を書いていたら

来年度の記事を書いていたら、「記事の編集・削除」で「2024年」がリストに表示されません。

 

「リストに表示」というのは、私が使っている「Quick EntryList」の「年度セレクタ」の話で、使っていない方には何も問題がない事です。

 

 

 

「2024年1月」の記事を投稿予約したのですが、上の様に「2023年」より先に行けない状態です。 下は「Quick EntryList」を「OFF」にした「記事の編集・削除」のデフォルトの状態です。

 

 

 

「2024年」の記事 を投稿したので、自動的に年度選択 は「2024年」まで選択が可能になっています。

 

 

「年度選択」の上に表示した「年度セレクタ」 

の「年度選択」は 1年ずつの送りで、何年も前のリストを出すのに時間がかかるので、「Quick EntryList」はこの「年度選択」の上に、縦方向に伸びる独自の「年度セレクタ」を表示しています。

 

このリストの上限が「2023年」なので、今回の様な事になっている事が判りました。

 

 

 

このリストの生成コードは以下です。

 

「Quick EntryList」 ver.1.5    171行~ 

function set_year_list(){
    let currentTime=new Date();
    let year=currentTime.getFullYear();
    for(let k=2000; k<year+2; k++){
        year_list.push(k); }
    year_list.reverse(); }

 

上は修正済で、「year+1」を「year+2」に修正しています。

 

これは、リストで選択できる年度範囲を決めるコードで、別に「year+10」として、9年先まで選択できる様にしても構わないのですが、あまり意味がありません。 しかし「year+2」としないと、現在が「2023年」だとして、来年「2024年」の記事が「年度セレクタ」で選択できなくなるコードでした。(記事の編集・削除のページ自体は2024年が表示出来ますが)

 

「year+2」に修正すると、下の様に「2024年」がリストに表示されました。

 

 

 

去年は気付かなかった様ですが、今年は修正できました。 皆様、良いお正月を!

 

 

 

「Quick EntryList」 のマニュアル

「Quick EntryList」の全ての機能や扱い方の詳細は、マニュアルを参照ください。

 

 

 

 

「Quick EntryList」を利用するには 

このツールは Chrome / Edge / Firefox の拡張機能「Tampermonkey」上で動作します。 このツールは常駐型のツールで、Tampermonkey上で常に「ON」にしておくと、「記事の編集・削除」の画面を開いた時にのみに起動します。

 

以下に、このツールの導入手順を簡単に説明します。

 

❶「Tampermonkey」を導入します

使用しているブラウザに拡張機能「Tampermonkey」を導入する事が必要です。 以下のページに簡単な導入の説明があるので参照ください。

 

 

❷「Tampermonkey」にスクリプトを登録します

●「Tampermonkey」の「」マークの「新規スクリプト」タブを開きます。

 

 

●「新規スクリプト」には、最初からテンプレートが記入されています。 これは全て削除して、完全に空白の編集枠に 下のコードをコピー&ペーストします。

 

〔コピー方法〕 右サイドバーの   マークのボタンを1度押してください。

 コード枠内の右クリック ➔ コード全体の選択 ➔ コピー操作 が可能になります。

 

● 最後に「ファイル」メニューの「保存」を押すと、ツールが使用可能になります。

 

 

〔 Quick EntryList 〕 ver. 1.5

 

// ==UserScript==
// @name         Quick EntryList
// @namespace    http://tampermonkey.net/
// @version      1.5
// @description  記事の編集・削除の機能拡張
// @author       Ameba Blog User
// @match        https://blog.ameba.jp/ucs/entry/srventrylist*
// @match        https://blog.ameba.jp/ucs/entry/srventry*draft*
// @match        https://blog.ameba.jp/ucs/top.do
// @grant         none
// ==/UserScript==


if(location.pathname.includes('srventrylist')){ // 記事の編集・削除の場合

    let help_url='https://ameblo.jp/personwritep/entry-12742971012.html';

    let year_list=[]; // 選択年度の配列
    let point_ym; // ユーザーの指定年月のクエリー文字
    let qe_ym=[]; // Quick EntryList 復帰ポイントのユーザー設定



    let read_json=localStorage.getItem('QE_Point'); // ローカルストレージ 保存名
    qe_ym=JSON.parse(read_json);
    if(qe_ym==null){
        qe_ym=['', '?', '?', '?', '?', '?', '?']; }
    else{
        for(let k=qe_ym.length +1; k<8; k++){ // 配列の数を7個にする
            qe_ym.push('?'); }}
    let write_json=JSON.stringify(qe_ym);
    localStorage.setItem('QE_Point', write_json); // ローカルストレージ 保存


    let qe_copy=0; // 複製フラグ
    if(sessionStorage.getItem('QE_copy')){ // ストレージより 取得
        qe_copy=sessionStorage.getItem('QE_copy'); }
    sessionStorage.setItem('QE_copy', qe_copy); // ストレージ 保存



    let help_SVG=
        '<svg class="qe_h" height="20" width="24" viewBox="0 0 210 220">'+
        '<path d="M89 22C71 25 54 33 41 46C7 81 11 142 50 171C58 177 '+
        '68 182 78 185C90 188 103 189 115 187C126 185 137 181 146 175'+
        'C155 169 163 162 169 153C190 123 189 80 166 52C147 30 118 18'+
        ' 89 22z" style="fill:#999;"></path>'+
        '<path d="M67 77C73 75 78 72 84 70C94 66 114 67 109 83C106 91'+
        ' 98 95 93 101C86 109 83 116 83 126L111 126C112 114 122 108 1'+
        '29 100C137 90 141 76 135 64C127 45 101 45 84 48C80 49 71 50 '+
        '68 54C67 56 67 59 67 61L67 77M85 143L85 166L110 166L110 143L'+
        '85 143z" style="fill:#fff;"></path>'+
        '</svg>';

    let disp_qe=
        '<div id="disp_qe">'+
        '<span class="qe_s">表示年月:</span>'+
        '<button class="qe_button" id="qe_b1"></button>'+
        '<button class="qe_button" id="qe_b2"></button>'+
        '<button class="qe_button" id="qe_b3"></button>'+
        '<button class="qe_button" id="qe_b4"></button>'+
        '<button class="qe_button" id="qe_b5"></button>'+
        '<button class="qe_button" id="qe_b6"></button>'+
        '<button class="qe_button" id="qe_top">Top</button>'+
        '<a href="'+ help_url +'" target="_blank" rel="noopener">'+ help_SVG +
        '</a></div>';

    let Main_h1=document.querySelector('#ucsMainLeft h1');
    if(!document.querySelector('#disp_qe') && Main_h1){
        Main_h1.insertAdjacentHTML('beforeend', disp_qe); }



    let ym_select=
        '<select id="ym_select_box"></select>';

    let entrySort=document.querySelector('#entrySort');
    if(!document.querySelector('#ym_select_box') && entrySort){
        entrySort.insertAdjacentHTML('beforeend', ym_select); }



    let qe_style=
        '<style id="qe_style">'+
        '#disp_qe { float: right; margin-top: -2px; background: #fff; } '+
        '.qe_s { position: relative; font: normal 14px Meiryo; cursor: default; } '+
        '.qe_s:hover::before { '+
        'content: "▼ Ctrl+Click:現在の表示年月を登録  Click:登録ページを表示"; '+
        'position: absolute; top: -28px; left: 93px; display: block; white-space: nowrap; '+
        'height: 19px; padding: 0 6px; background: #fff; border: 1px solid #aaa; } '+
        '.qe_button { height: 25px; max-width: 72px; font-size: 15px; '+
        'margin: 0 3px; padding: 2px 6px; border: 1px solid #aaa; border-radius: 3px; '+
        'background: #fff; vertical-align: -1px; cursor: pointer; } '+
        '.qe_button:hover { outline: 1px solid #2196f3; } '+
        '.qe_h { vertical-align: -6px; } '+

        '#entrySort { position: relative; } '+
        '#entryYear { display: flex; justify-content: space-between; '+
        'align-items: center; width: 120px; margin: 0 5px; } '+
        '#yearText { position: absolute; top: 6px; left: 84px; width: 16px; '+
        'padding: 0 1px; font-size: 14px; color: #1976d2; z-index: 1; } '+
        '#ym_select_box { position: absolute; top: 0; left: 24px; height: 28px; '+
        'width: 81px; padding: 1px 11px 0 0; font: bold 18px Meiryo !important; '+
        'text-align: center; border: 1px solid #ccc; outline: none; background: #fff; '+
        'appearance: none; scrollbar-width: none; cursor: pointer; } '+
        '#ym_select_box::-webkit-scrollbar { display: none; } '+
        '#ym_select_box option { font: bold 18px Meiryo; } '+
        '#entryMonth { margin-right: -10px; } '+

        '#ucsContent { margin-bottom: 0; } '+
        '#ucsMain { padding-bottom: 0; } '+
        '#sorting .pagingArea { float: left; margin: -3px -10px -3px 20px; } '+
        '#sorting .pagingArea ul { padding: 3px 2px 2px; } '+
        '#sorting .pagingArea li { margin: 0; padding: 0; border-right: none; '+
        'background: #fff; }</style>';

    if(!document.querySelector('#qe_style')){
        document.documentElement.insertAdjacentHTML('beforeend', qe_style); }



    for(let k=1; k<7; k++){
        disp_button(k)}


    set_year_list();
    disp_select();
    select_year();
    point_set(1);
    point_set(2);
    point_set(3);
    point_set(4);
    point_set(5);
    point_set(6);
    point_top();
    scheduled();


    function disp_button(n){
        let button=document.querySelector('#qe_b'+n);
        if(button){
            let date_raw;
            let ny;
            let nm;
            if(qe_ym[n].indexOf("&so=")!=-1){ // 古い順表示の場合
                date_raw=qe_ym[n].substring(0, qe_ym[n].indexOf("&so=")); }
            else{
                date_raw=qe_ym[n]; }

            ny=date_raw.slice(-6, -2);
            nm=date_raw.slice(-2);
            if((ny>1999 && ny<2100) && (nm>0 && nm<13)){
                button.textContent=ny+'-'+nm; }
            else{ // 未登録の場合
                button.textContent='┄┄┄'; }}}



    function select_year(){
        let set_year;
        let ym_select_box=document.querySelector('#ym_select_box');
        if(ym_select_box){
            ym_select_box.onchange=function(){
                set_year=ym_select_box.options[ym_select_box.selectedIndex].value;
                location.href=
                    "https://blog.ameba.jp/ucs/entry/srventrylist.do?entry_ym="+
                    set_year +"01"; }}}



    function set_year_list(){
        let currentTime=new Date();
        let year=currentTime.getFullYear();
        for(let k=2000; k<year+2; k++){
            year_list.push(k); }
        year_list.reverse(); }



    function disp_select(){
        let page_year;
        let query;
        let input_year=document.querySelector('input[name="urlParam"]');
        if(input_year){
            query=input_year.value;
            page_year=query.slice(-6, -2); }

        if(!page_year){
            let currentTime=new Date();
            let current_year=currentTime.getFullYear();
            page_year=current_year; }

        let ym_select_box=document.querySelector('#ym_select_box');
        if(ym_select_box){
            for(let k=0; k<year_list.length; k++){
                let option=document.createElement('option');
                option.text=year_list[k];
                option.value=year_list[k];
                ym_select_box.appendChild(option);
                if(page_year==year_list[k]){
                    option.selected=true; }}}}



    function point_set(n){
        let point_button=document.querySelector('#qe_b'+n);
        if(point_button){
            point_button.onclick=function(event){
                if(!event.ctrlKey){ // 登録ページの表示
                    location.href=
                        "https://blog.ameba.jp/ucs/entry/srventrylist.do"+ qe_ym[n]; }

                else{ // ページを登録
                    let date_raw;
                    let ny;
                    let nm;
                    let current_search; // 現在のクエリー文字列

                    if(!location.search){ //「記事の編集・削除」の初期表示の場合
                        let currentTime=new Date();
                        ny=currentTime.getFullYear();
                        nm=('0'+(currentTime.getMonth()+1)).slice(-2); }
                    else{
                        if(location.search.indexOf("&so=")!=-1){ // 古い順表示の場合
                            date_raw=location.search.substring(0, location.search.indexOf("&so=")); }
                        else{
                            date_raw=location.search; }
                        ny=date_raw.slice(-6, -2);
                        nm=date_raw.slice(-2); }

                    if((ny>1999 && ny<2100) && (nm>0 && nm<13)){
                        let ok=confirm(
                            " 💢 Quick指定年月の登録を変更します\n\n"+
                            "「OK」を押すと現在選択している "+ny+"年 "+nm+"月 のページを登録します" );

                        if(ok){
                            current_search=location.search;
                            if(!current_search){
                                current_search='?entry_ym='+ny+nm; }
                            qe_ym[n]=current_search;
                            let write_json=JSON.stringify(qe_ym); // ローカルストレージ 保存
                            localStorage.setItem('QE_Point', write_json);
                            disp_button(n); }}
                    else{ // クエリーの値が不正値の場合
                        let ok=confirm(
                            " 💢 クエリー文字列が異常値で登録できません\n\n"+
                            " 「OK」を押すと先頭ページに移動します" );
                        if(ok){
                            location.href=
                                "https://blog.ameba.jp/ucs/entry/srventrylist.do"; }}}

            }}} // point_set()



    function point_top(){
        let point_top=document.querySelector('#qe_top');
        if(point_top){
            point_top.onclick=function(event){
                location.href=
                    "https://blog.ameba.jp/ucs/entry/srventrylist.do"; }}}



    function scheduled(){
        let currentDate = new Date();
        let year=currentDate.getFullYear();
        let month=currentDate.getMonth() + 1;
        let date=currentDate.getDate();
        let hour=currentDate.getHours();
        let minute=currentDate.getMinutes();

        function formatTime(val) {
            return ("0" + val).slice(-2); } //「0」付きで2桁テキストに変更

        let now=year + formatTime(month) + formatTime(date) +
            formatTime(hour) + formatTime(minute)
        now=parseInt(now, 10);

        let page_year=document.querySelector('#entryYear #year');
        if(page_year){
            page_year=page_year.textContent; }
        else{
            page_year='2000'; }


        let entry_item=document.querySelectorAll('.entry-item');
        for(let k=0; k<entry_item.length; k++){
            let p_title=entry_item[k].querySelector('.titleCol h2 a');

            let p_time=entry_item[k].querySelector('#entryList .date');
            let p_date=p_time.textContent;
            p_date=page_year + p_date.replace(/[^0-9]/g, '');
            p_date=parseInt(p_date, 10); // 文字列を10進数に変換
            if(p_date>now){
                p_time.style.color='#fff';
                p_time.style.background='#2196f3';
                if(p_title){
                    p_title.style.color='#000'; }}}

    } // scheduled()



    let copy_button=document.querySelectorAll('.deleteCol .process[onclick*="copyEntry"]');
    for(let k=0; k<copy_button.length; k++){
        copy_button[k].onmousedown=(event)=>{
            if(event.ctrlKey){
                sessionStorage.setItem('QE_copy', 1); }}} // ストレージの複製フラグをセット


    if(qe_copy==1){ // 複製操作で最新ページを開いた時に実行
        sessionStorage.setItem('QE_copy', 0); // ストレージの複製フラグをリセット

        let edit_button=document.querySelectorAll('.deleteCol .process[href*="/ucs/entry/"]');
        let entry_id=document.querySelectorAll('input[name="entry_id"]');

        let temp_id=0;
        let index=-1;
        for(let k=0; k<entry_id.length; k++){
            if(temp_id<entry_id[k].value/1){
                index=k;
                temp_id=entry_id[k].value; }} // IDの最新記事を取得

        edit_button[index].click(); } // 複製した記事を再編集で開く


} // 記事の編集・削除の場合




if(location.pathname.includes('top.do')){ // 管理トップの場合

    let EntryStatus=document.querySelectorAll('.recentEntry__itemEntryStatus');
    for(let k=0; k<EntryStatus.length; k++){
        if(EntryStatus[k].textContent.includes('下書き中')){
            EntryStatus[k].style.overflow='hidden';
            let add=
                '<span style="padding:2px 4px; margin: 0 -4px; '+
                'color: #fff; background: #2196f3;">下書き</span>';
            let str=EntryStatus[k].textContent.split('・');
            if(str.length<3){
                EntryStatus[k].innerHTML=add; }
            if(str.length==3){
                EntryStatus[k].innerHTML=str[0] +'&ensp;'+ add; }}}

} // 管理トップの場合




if(location.pathname.includes('draft')){ // 下書き保存確認画面の場合
    //「記事の編集・削除を表示」ボタンを表示

    let el_button=
        '<div id="el_button">'+
        '<svg viewBox="0 0 120 120">'+
        '<path d="M0 0L0 112L112 112L112 0L0 0z" style="fill: #fff"></path>'+
        '<path d="M23 21L45 21C48 21 52 20 55 22C60 26 56 34 64 36C70 38 '+
        '78 37 84 37C88 37 92 37 94 40C97 43 96 48 96 52L96 81C100 81 103 '+
        '80 105 76C107 73 106 69 106 65L106 43C106 39 106 35 104 31C101 27 '+
        '96 27 92 27C84 27 76 27 68 27C68 22 68 17 65 14C61 10 55 11 50 11C39 '+
        '11 26 8 23 21M52 43C52 40 52 38 51 35C48 25 35 27 27 27C21 27 13 26 '+
        '9 32C6 37 7 43 7 48L7 82C7 87 6 94 10 97C15 101 22 100 28 100L69 '+
        '100C74 100 81 101 86 98C90 95 90 91 90 86L90 58C90 53 90 48 86 '+
        '45C83 43 79 43 75 43L52 43z" style="fill: #1976D2"></path>'+
        '<path d="M80 53C72 52 65 52 57 52C54 52 49 53 47 52C40 48 44 39 '+
        '38 37C34 36 21 35 18 39C16 42 17 45 17 48L17 69C17 74 15 85 18 '+
        '89C21 92 28 91 32 91L67 91C71 91 77 92 80 89C82 86 81 81 81 78C81 '+
        '70 81 61 80 53z" style="fill: #fff"></path></svg>'+
        '記事の編集・削除を表示'+
        '<style>'+
        '#el_button { position: absolute; top: 100px; left: calc(50% + 200px); '+
        'font: bold 16px Meiryo; white-space: nowrap; padding: 7px 20px 5px; '+
        'border-radius: 6px; color: #1976D2; background: #fff; '+
        'box-shadow: 5px 10px 30px #00000025; } '+
        '#el_button:hover { background: #cfd8dc; } '+
        '#el_button svg { width: 48px; height: 36px; vertical-align: -12px; } }'+
        '</style></div>';

    if(!document.querySelector('#el_button')){
        document.body.insertAdjacentHTML('beforeend', el_button); }


    let files_link=document.querySelector('#el_button');
    if(files_link){
        files_link.onclick=function(){
            location.href="https://blog.ameba.jp/ucs/entry/srventrylist.do"; }}

} // 下書き保存確認画面の場合



 

 

 

「Quick EntryList」最新版について 

旧いバージョンの「Quick EntryList」は、アメーバのページ構成の変更で動作しない場合があり、導入する場合は最新バージョンをお勧めします。 最新バージョンへのリンクは、以下のページのリンクリストから探せます。