Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

一覧ページの記事並び順がおかしくなったので直す #162

Merged
merged 2 commits into from
Feb 13, 2019

Conversation

cheezenaan
Copy link
Owner

@cheezenaan cheezenaan commented Feb 13, 2019

#151 の merge 後、一覧ページに表示される記事の並び順が frontmatter___date の降順にならなくなった。

Tl;dr

調査メモ

  • ローカルでも再現するか?: した 🚀
  • service worker を無効化してみる: ダメ
  • src/pages/index.tsxIndexQuery を GraphiQL で実行しても再現するか?: した 🚀

repro

Query

query IndexQuery {
  allMarkdownRemark(sort: {order: DESC, fields: [frontmatter___date]}) {
    posts: edges {
      post: node {
        frontmatter {
          title
          path
          date
        }
      }
    }
  }
}

Result

{
  "data": {
    "allMarkdownRemark": {
      "posts": [
        {
          "post": {
            "frontmatter": {
              "title": "シェルを zsh から fish に乗り換えたらモノクロームだった日常がカラフルに色づきはじめた",
              "path": "/migrate-fish-shell",
              "date": "2018-06-25T10:05:13.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "zsh の設定ファイルを整理して GitHub 上で管理することにした",
              "path": "/dotfiles-on-github",
              "date": "2018-06-24T02:18:10.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "Docker for Mac と Dinghy のパフォーマンスを比較してみた",
              "path": "/compare-docker-for-mac-with-dinghy",
              "date": "2018-06-18T05:21:56.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "TypeScript + Webpack4 な素振り環境を作った",
              "path": "/typescript-webpack4",
              "date": "2018-06-10T22:08:43.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "JavaScript だけでなくスタイルシートと画像ファイルも webpack 管理下に置いて、 Asset Pipeline から完全にサヨナラした",
              "path": "/say-boodbye-to-asset-pipeline",
              "date": "2018-01-29T01:15:04.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "Rails on Docker な開発環境からモダン JavaScript のビルド環境をコンテナごと独立させてみた",
              "path": "/rails-with-webpack-on-docker",
              "date": "2018-01-22T12:45:20.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "2018年を迎えたので開発環境を見直した(iTerm2 + zsh + prezto + peco + anyframe + vim + VSCode)",
              "path": "/renew-development-enviroinment",
              "date": "2018-01-02T04:08:09.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "2018年を迎えたので MacBook Pro のクリーンインストールをした(homebrew + Brewfile + mackup)",
              "path": "/clean-install-macbook-rev2018",
              "date": "2018-01-02T02:20:22.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "2017年を振り返る",
              "path": "/playback-2017",
              "date": "2017-12-29T06:26:48.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "『プロを目指す人のための Ruby 入門』出版記念イベント&リファクタリングコンテストに行ってきた",
              "path": "/ruby-cherry-book-event",
              "date": "2017-12-06T15:31:09.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "ES2015 + Babel + Webpack + ESLint な開発環境をつくった",
              "path": "/es2015-babel-webpack",
              "date": "2017-04-16T14:00:00.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "Docker上にRails5×MySQLな新規プロジェクトを爆速で構築する",
              "path": "/rails-on-docker-with-application-template",
              "date": "2017-03-05T04:21:24.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "Markdown エディタとして Atom を使えるようにするまでにやったこと",
              "path": "/atom-as-markdown-editor",
              "date": "2017-01-22T01:30:00.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "TypeScript に期待しすぎる前に胸に手を当てて考えること",
              "path": "/think-before-migrating-typescript",
              "date": "2019-01-10T01:30:00.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "個人ブログをはてなブログから Gatsby + Firebase Hosting に移行した",
              "path": "/hello-gatsby",
              "date": "2018-12-31T20:00:20.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "ストレングスファインダーで自分の資質をあらためて見直してみた",
              "path": "/review-strength-finder",
              "date": "2018-07-31T20:04:24.000Z"
            }
          }
        },
        {
          "post": {
            "frontmatter": {
              "title": "Hello, my First Gatsby post",
              "path": "/hello-world",
              "date": "2015-08-15T17:12:33.962Z"
            }
          }
        }
      ]
    }
  }
}

@cheezenaan cheezenaan added bugfix Something isn't working WIP Work in progress :D labels Feb 13, 2019
@cheezenaan cheezenaan self-assigned this Feb 13, 2019
@cheezenaan cheezenaan force-pushed the order-blog-posts-by-newest branch from 21aeb09 to 28aab21 Compare February 13, 2019 22:54
@cheezenaan
Copy link
Owner Author

cheezenaan commented Feb 13, 2019

@cheezenaan cheezenaan force-pushed the order-blog-posts-by-newest branch from 28aab21 to 98a8940 Compare February 13, 2019 23:25
to solve issues with sort fields when using gatsby-transformer version 2.2.0 or later.
@cheezenaan cheezenaan force-pushed the order-blog-posts-by-newest branch from 98a8940 to 8088cb9 Compare February 13, 2019 23:38
@cheezenaan cheezenaan removed the WIP Work in progress :D label Feb 13, 2019
@cheezenaan
Copy link
Owner Author

まぁ、service worker 動かすほどのアレでもないし別の PR で抹殺しよう。

@cheezenaan cheezenaan merged commit e3cc110 into master Feb 13, 2019
@cheezenaan cheezenaan deleted the order-blog-posts-by-newest branch February 13, 2019 23:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bugfix Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant