Hacktoberfest 2026:メンテナが10月に向けて印を付けた、オープンで初心者向けの issue。 Hacktoberfest の issue を見る

Enable specifying list type in computed fields

オープン
#277 コメント 2 件 リアクション 2 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

評価

難易度
3/5
見積もり時間
1〜2日
初心者へのやさしさ
42/100
issue の種類
機能追加
明瞭さ
おおむね明確
活発さ
停滞
技術スタック
typescript
領域
tooling

調査の方向性

まず computedFields スキーマと、その TypeScript 型を生成するジェネレーターを見つけ、リストの処理を fields.of と比較します。レポートにある TypeScript の例を使って問題を再現し、of: { type: "string" } を持つ computed list のカバレッジを追加します。生成された出力で undefined の raw list ではなく要素型が宣言されれば完了です。

索引モデルが issue の本文から書いたものです。

説明

improvement meta: never-stale topic: schema

As far as I can tell, it isn't possible to specify the of type of lists in computed fields the way that you can in non-computed fields. Thus, this is possible:

fields: {
  tags: {
    type: "list",
    of: { type: "string" },
    default: []
  }  
}

But this is not:

computedFields: {
  segments: {
    type: "list",
    of: { type: "string" },
    resolve: (doc) => { ... }
  }
}

Instead, you can only specify an untyped list, and in the generated output you end up with this:

segments: list

But this raw list type isn't defined!

There may be reasons to explicitly disallow typed lists in computed fields, and if so I'd be curious why! Otherwise, this feels like an oversight to me.

主要言語
TypeScript
スター
3.5k
フォーク
192
PR マージ指標
30日以内にマージされた PR はありません

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

contentlayerdev/contentlayer のほかの issue

contentlayerdev/contentlayer の issue をすべて見る

似ている issue

TypeScript の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。