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

Define a stable form field and widget data model

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

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

評価

難易度
5/5
見積もり時間
1週間以上
初心者へのやさしさ
38/100
issue の種類
機能追加
明瞭さ
おおむね明確
活発さ
活発
領域
frontend

調査の方向性

まず現在の PDFElementObject API と、既存の公開されている型およびテストのエントリーポイントを特定し、その後、フィールドとウィジェットの関係を提案する前に依存関係 #80 を確認します。完了の条件は、公開シリアライズ可能モデルが汎用的なオーバーレイ用途を維持し、互換性または移行について文書化され、関係とシリアライズのテストがあり、PDF の解析や署名を追加しないことです。

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

説明

enhancement

Before adding individual form field types, pdf-elements needs a stable data model that can represent both generic editor elements and PDF form concepts without coupling the library to LibreSign or Nextcloud.

The current PDFElementObject mainly represents one visual rectangle on one page. PDF forms need an additional distinction: a logical field can have one or more visual widgets. This is important for cases such as radio groups, repeated fields and the same field appearing on different pages.

This issue depends on #80 so the public type changes are protected by the improved type checking and package validation.

What should be done

Separate logical fields from visual widgets

A visual element must not be treated as the complete logical form field.

The model should support:

  • one logical field with one widget;
  • one logical field with multiple widgets;
  • widgets on different pages;
  • radio groups where several widgets belong to the same field;
  • unknown or future field types without losing their identity.

Keep coordinates and page placement on the visual/widget side. Keep shared field properties on the logical field side.

Define stable public types

Define the minimum public types needed to represent fields and widgets, including stable identifiers and their relationship.

The field model should be able to represent, where applicable:

  • type;
  • name;
  • value and default value;
  • required and read-only states;
  • options for choice fields;
  • extensible metadata for information that does not belong to the core model.

Do not add LibreSign workflow concepts such as recipients, envelopes, signing policies or participant roles to the core library model.

Preserve the generic element use case

pdf-elements must remain useful as a generic Vue 3 PDF overlay editor, including for consumers that do not use PDF forms.

Review how the new field/widget model should coexist with the current PDFElementObject API. Prefer an incremental and understandable evolution over replacing the current public API without need.

If a breaking change is required, document why and define a clear migration path before implementing it.

Define serialization expectations

The public model should be plain serializable data and must not depend on Vue component instances, DOM objects or PDF.js runtime objects.

Document enough of the model so consumers can persist it and restore it later without depending on internal component state.

Do not implement PDF AcroForm parsing or writing in this issue. The model should be able to represent imported form information later, but PDF file mutation belongs outside this package.

Acceptance criteria

  • Logical fields and visual widgets are represented as separate concepts.
  • One field can reference multiple widgets, including widgets on different pages.
  • Stable IDs exist for fields and widgets.
  • Shared field properties are not duplicated as visual placement properties.
  • The model can represent values, defaults, required/read-only state and choice options where applicable.
  • Unknown or future field types can be represented safely.
  • The model remains generic and contains no LibreSign- or Nextcloud-specific workflow concepts.
  • Existing non-form overlay use cases remain supported.
  • Public data is serializable without Vue, DOM or PDF.js runtime objects.
  • Public types and their relationships are documented.
  • Compatibility with the current PDFElementObject API is reviewed and any required migration is documented.
  • Tests cover the model relationships and serialization behavior.
  • PDF parsing, AcroForm writing and signing remain outside the scope of this issue.
Additional context
  • If you have questions, feel free to ask in this issue.
  • Give a ⭐️ to pdf-elements if you find the package useful.
  • You can also support the project by giving a ⭐️ to LibreSign.
主要言語
Vue
スター
4
フォーク
3
平均マージ
21時間 41分
マージ済み PR(30日)
51

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

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

はじめの一歩

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

LibreSign/pdf-elements のほかの issue

LibreSign/pdf-elements の issue をすべて見る

似ている issue

Web Dev の issue をもっと見る

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

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