@shuji-bonji/rxjs-mcp 0.2.1 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -0
- package/dist/data/creation-functions.d.ts +2 -0
- package/dist/data/creation-functions.d.ts.map +1 -1
- package/dist/data/creation-functions.js +63 -21
- package/dist/data/creation-functions.js.map +1 -1
- package/dist/data/operators.d.ts.map +1 -1
- package/dist/data/operators.js +238 -81
- package/dist/data/operators.js.map +1 -1
- package/dist/data/patterns.js +8 -8
- package/dist/tools/analyze-operators.d.ts.map +1 -1
- package/dist/tools/analyze-operators.js +30 -8
- package/dist/tools/analyze-operators.js.map +1 -1
- package/dist/types.d.ts +38 -2
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +32 -2
- package/dist/types.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,32 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.3.0] - 2026-05-16
|
|
9
|
+
|
|
10
|
+
### BREAKING
|
|
11
|
+
- **`OperatorInfo` / `CreationFunctionInfo` 型変更**: `docUrl` フィールドを廃止し、3階層参照 (`officialUrl` / `sourceUrl` / `guideUrl`) に置き換え。`DOC_BASE_URL` は `GUIDE_BASE_URL` のエイリアスとして残存するが v0.4.0 で削除予定。
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- **3階層ドキュメント参照システム**:
|
|
15
|
+
- `officialUrl` — rxjs.dev (権威的、人間向け)
|
|
16
|
+
- `sourceUrl` — GitHub ソース (tag `7.8.2` 固定、AI が読めるJSDoc + 実装)
|
|
17
|
+
- `guideUrl` — バイリンガルガイドサイト (JP/EN 学習者向け)
|
|
18
|
+
- **Deprecation メタデータ** (`DeprecationInfo`): `deprecated` / `since` / `replacement` フィールドを追加。対象: `pluck` (7.2.0), `mapTo` (7.2.0), `retryWhen` (7.3.0)
|
|
19
|
+
- **URL ヘルパー関数**: `buildOfficialUrl()`, `buildSourceUrl()`, `buildGuideUrl()` を `types.ts` に追加
|
|
20
|
+
- **analyze_operators 出力強化**:
|
|
21
|
+
- 各演算子に Official / Source / Guide の3階層リンクを表示
|
|
22
|
+
- deprecated な演算子に⚠️警告と代替案を inline 表示
|
|
23
|
+
- **URL validation CI** (`.github/workflows/url-validation.yml`): push/PR/週次スケジュールで全 URL の HTTP ステータスを自動検証
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
- `analyze_operators` のリファレンスリンク形式を `📖 [Documentation](...)` から `📖 [Official](...) | [Source](...) | [Guide](...)` に変更
|
|
27
|
+
|
|
28
|
+
## [0.2.2] - 2026-05-16
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
- **suggest_pattern**: パターンテンプレート内の `import { ... } from 'rxjs/operators'` を `from 'rxjs'` に修正。RxJS 7.2+ 推奨の統一インポートスタイルに合わせ、AI アシスタントが古い import を提案する問題を解消。対象パターン: `http-retry`, `search-typeahead`, `polling`, `websocket-reconnect`, `form-validation`, `state-management`, `cache-refresh`, `adaptPatternForFramework` (Vue)
|
|
32
|
+
- **analyze_operators**: `ajax` と `fromFetch` の `docUrl` のパスセグメント `creation-functions/http/` を `creation-functions/http-communication/` に修正。ガイドサイトへのリンクが 404 になっていた問題を解消
|
|
33
|
+
|
|
8
34
|
## [0.2.1] - 2026-05-09
|
|
9
35
|
|
|
10
36
|
### Build
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { CreationFunctionInfo } from '../types.js';
|
|
2
2
|
/**
|
|
3
3
|
* RxJS Creation Functions Database
|
|
4
|
+
* Three-tier reference: officialUrl (rxjs.dev) / sourceUrl (GitHub) / guideUrl (bilingual site)
|
|
5
|
+
*
|
|
4
6
|
* Based on https://shuji-bonji.github.io/RxJS-with-TypeScript/
|
|
5
7
|
*/
|
|
6
8
|
export declare const creationFunctionDatabase: Record<string, CreationFunctionInfo>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"creation-functions.d.ts","sourceRoot":"","sources":["../../src/data/creation-functions.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"creation-functions.d.ts","sourceRoot":"","sources":["../../src/data/creation-functions.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,oBAAoB,EAIrB,MAAM,aAAa,CAAC;AAErB;;;;;GAKG;AACH,eAAO,MAAM,wBAAwB,EAAE,MAAM,CAAC,MAAM,EAAE,oBAAoB,CA8KzE,CAAC"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { buildOfficialUrl, buildSourceUrl, buildGuideUrl, } from '../types.js';
|
|
2
2
|
/**
|
|
3
3
|
* RxJS Creation Functions Database
|
|
4
|
+
* Three-tier reference: officialUrl (rxjs.dev) / sourceUrl (GitHub) / guideUrl (bilingual site)
|
|
5
|
+
*
|
|
4
6
|
* Based on https://shuji-bonji.github.io/RxJS-with-TypeScript/
|
|
5
7
|
*/
|
|
6
8
|
export const creationFunctionDatabase = {
|
|
@@ -9,127 +11,167 @@ export const creationFunctionDatabase = {
|
|
|
9
11
|
name: 'of',
|
|
10
12
|
category: 'basic',
|
|
11
13
|
description: 'Emits the arguments you provide, then completes',
|
|
12
|
-
|
|
14
|
+
officialUrl: buildOfficialUrl('creation', 'of'),
|
|
15
|
+
sourceUrl: buildSourceUrl('observable/of.ts'),
|
|
16
|
+
guideUrl: buildGuideUrl('creation-functions/basic/of'),
|
|
13
17
|
},
|
|
14
18
|
'from': {
|
|
15
19
|
name: 'from',
|
|
16
20
|
category: 'basic',
|
|
17
21
|
description: 'Creates an Observable from an Array, Promise, or Iterable',
|
|
18
|
-
|
|
22
|
+
officialUrl: buildOfficialUrl('creation', 'from'),
|
|
23
|
+
sourceUrl: buildSourceUrl('observable/from.ts'),
|
|
24
|
+
guideUrl: buildGuideUrl('creation-functions/basic/from'),
|
|
19
25
|
},
|
|
20
26
|
'fromEvent': {
|
|
21
27
|
name: 'fromEvent',
|
|
22
28
|
category: 'basic',
|
|
23
29
|
description: 'Creates an Observable from DOM events',
|
|
24
|
-
|
|
30
|
+
officialUrl: buildOfficialUrl('creation', 'fromEvent'),
|
|
31
|
+
sourceUrl: buildSourceUrl('observable/fromEvent.ts'),
|
|
32
|
+
guideUrl: buildGuideUrl('creation-functions/basic/fromEvent'),
|
|
25
33
|
},
|
|
26
34
|
'interval': {
|
|
27
35
|
name: 'interval',
|
|
28
36
|
category: 'basic',
|
|
29
37
|
description: 'Emits incremental numbers at specified intervals',
|
|
30
|
-
|
|
38
|
+
officialUrl: buildOfficialUrl('creation', 'interval'),
|
|
39
|
+
sourceUrl: buildSourceUrl('observable/interval.ts'),
|
|
40
|
+
guideUrl: buildGuideUrl('creation-functions/basic/interval'),
|
|
31
41
|
},
|
|
32
42
|
'timer': {
|
|
33
43
|
name: 'timer',
|
|
34
44
|
category: 'basic',
|
|
35
45
|
description: 'Emits after a delay, then optionally at intervals',
|
|
36
|
-
|
|
46
|
+
officialUrl: buildOfficialUrl('creation', 'timer'),
|
|
47
|
+
sourceUrl: buildSourceUrl('observable/timer.ts'),
|
|
48
|
+
guideUrl: buildGuideUrl('creation-functions/basic/timer'),
|
|
37
49
|
},
|
|
38
50
|
// loop
|
|
39
51
|
'range': {
|
|
40
52
|
name: 'range',
|
|
41
53
|
category: 'loop',
|
|
42
54
|
description: 'Emits a sequence of numbers within a range',
|
|
43
|
-
|
|
55
|
+
officialUrl: buildOfficialUrl('creation', 'range'),
|
|
56
|
+
sourceUrl: buildSourceUrl('observable/range.ts'),
|
|
57
|
+
guideUrl: buildGuideUrl('creation-functions/loop/range'),
|
|
44
58
|
},
|
|
45
59
|
'generate': {
|
|
46
60
|
name: 'generate',
|
|
47
61
|
category: 'loop',
|
|
48
62
|
description: 'Creates an Observable with custom iteration logic',
|
|
49
|
-
|
|
63
|
+
officialUrl: buildOfficialUrl('creation', 'generate'),
|
|
64
|
+
sourceUrl: buildSourceUrl('observable/generate.ts'),
|
|
65
|
+
guideUrl: buildGuideUrl('creation-functions/loop/generate'),
|
|
50
66
|
},
|
|
51
67
|
// http
|
|
52
68
|
'ajax': {
|
|
53
69
|
name: 'ajax',
|
|
54
70
|
category: 'http',
|
|
55
71
|
description: 'Creates an Observable for AJAX requests',
|
|
56
|
-
|
|
72
|
+
officialUrl: 'https://rxjs.dev/api/ajax/ajax',
|
|
73
|
+
sourceUrl: buildSourceUrl('ajax/ajax.ts'),
|
|
74
|
+
guideUrl: buildGuideUrl('creation-functions/http-communication/ajax'),
|
|
57
75
|
},
|
|
58
76
|
'fromFetch': {
|
|
59
77
|
name: 'fromFetch',
|
|
60
78
|
category: 'http',
|
|
61
79
|
description: 'Creates an Observable from Fetch API',
|
|
62
|
-
|
|
80
|
+
officialUrl: buildOfficialUrl('creation', 'fromFetch'),
|
|
81
|
+
sourceUrl: buildSourceUrl('observable/dom/fetch.ts'),
|
|
82
|
+
guideUrl: buildGuideUrl('creation-functions/http-communication/fromFetch'),
|
|
63
83
|
},
|
|
64
84
|
// combination
|
|
65
85
|
'concat': {
|
|
66
86
|
name: 'concat',
|
|
67
87
|
category: 'combination',
|
|
68
88
|
description: 'Concatenates Observables in sequence',
|
|
69
|
-
|
|
89
|
+
officialUrl: buildOfficialUrl('creation', 'concat'),
|
|
90
|
+
sourceUrl: buildSourceUrl('observable/concat.ts'),
|
|
91
|
+
guideUrl: buildGuideUrl('creation-functions/combination/concat'),
|
|
70
92
|
},
|
|
71
93
|
'merge': {
|
|
72
94
|
name: 'merge',
|
|
73
95
|
category: 'combination',
|
|
74
96
|
description: 'Combines multiple Observables, emitting all values',
|
|
75
|
-
|
|
97
|
+
officialUrl: buildOfficialUrl('creation', 'merge'),
|
|
98
|
+
sourceUrl: buildSourceUrl('observable/merge.ts'),
|
|
99
|
+
guideUrl: buildGuideUrl('creation-functions/combination/merge'),
|
|
76
100
|
},
|
|
77
101
|
'combineLatest': {
|
|
78
102
|
name: 'combineLatest',
|
|
79
103
|
category: 'combination',
|
|
80
104
|
description: 'Combines latest values from all Observables',
|
|
81
|
-
|
|
105
|
+
officialUrl: buildOfficialUrl('creation', 'combineLatest'),
|
|
106
|
+
sourceUrl: buildSourceUrl('observable/combineLatest.ts'),
|
|
107
|
+
guideUrl: buildGuideUrl('creation-functions/combination/combineLatest'),
|
|
82
108
|
},
|
|
83
109
|
'zip': {
|
|
84
110
|
name: 'zip',
|
|
85
111
|
category: 'combination',
|
|
86
112
|
description: 'Combines values by index into arrays',
|
|
87
|
-
|
|
113
|
+
officialUrl: buildOfficialUrl('creation', 'zip'),
|
|
114
|
+
sourceUrl: buildSourceUrl('observable/zip.ts'),
|
|
115
|
+
guideUrl: buildGuideUrl('creation-functions/combination/zip'),
|
|
88
116
|
},
|
|
89
117
|
'forkJoin': {
|
|
90
118
|
name: 'forkJoin',
|
|
91
119
|
category: 'combination',
|
|
92
120
|
description: 'Waits for all to complete, emits final values',
|
|
93
|
-
|
|
121
|
+
officialUrl: buildOfficialUrl('creation', 'forkJoin'),
|
|
122
|
+
sourceUrl: buildSourceUrl('observable/forkJoin.ts'),
|
|
123
|
+
guideUrl: buildGuideUrl('creation-functions/combination/forkJoin'),
|
|
94
124
|
},
|
|
95
125
|
// selection
|
|
96
126
|
'race': {
|
|
97
127
|
name: 'race',
|
|
98
128
|
category: 'selection',
|
|
99
129
|
description: 'Emits from the Observable that emits first',
|
|
100
|
-
|
|
130
|
+
officialUrl: buildOfficialUrl('creation', 'race'),
|
|
131
|
+
sourceUrl: buildSourceUrl('observable/race.ts'),
|
|
132
|
+
guideUrl: buildGuideUrl('creation-functions/selection/race'),
|
|
101
133
|
},
|
|
102
134
|
'partition': {
|
|
103
135
|
name: 'partition',
|
|
104
136
|
category: 'selection',
|
|
105
137
|
description: 'Splits Observable into two based on predicate',
|
|
106
|
-
|
|
138
|
+
officialUrl: buildOfficialUrl('creation', 'partition'),
|
|
139
|
+
sourceUrl: buildSourceUrl('observable/partition.ts'),
|
|
140
|
+
guideUrl: buildGuideUrl('creation-functions/selection/partition'),
|
|
107
141
|
},
|
|
108
142
|
// conditional
|
|
109
143
|
'iif': {
|
|
110
144
|
name: 'iif',
|
|
111
145
|
category: 'conditional',
|
|
112
146
|
description: 'Subscribes to one of two Observables based on condition',
|
|
113
|
-
|
|
147
|
+
officialUrl: buildOfficialUrl('creation', 'iif'),
|
|
148
|
+
sourceUrl: buildSourceUrl('observable/iif.ts'),
|
|
149
|
+
guideUrl: buildGuideUrl('creation-functions/conditional/iif'),
|
|
114
150
|
},
|
|
115
151
|
'defer': {
|
|
116
152
|
name: 'defer',
|
|
117
153
|
category: 'conditional',
|
|
118
154
|
description: 'Creates Observable lazily at subscription time',
|
|
119
|
-
|
|
155
|
+
officialUrl: buildOfficialUrl('creation', 'defer'),
|
|
156
|
+
sourceUrl: buildSourceUrl('observable/defer.ts'),
|
|
157
|
+
guideUrl: buildGuideUrl('creation-functions/conditional/defer'),
|
|
120
158
|
},
|
|
121
159
|
// control
|
|
122
160
|
'scheduled': {
|
|
123
161
|
name: 'scheduled',
|
|
124
162
|
category: 'control',
|
|
125
163
|
description: 'Creates an Observable with a specific scheduler',
|
|
126
|
-
|
|
164
|
+
officialUrl: buildOfficialUrl('creation', 'scheduled'),
|
|
165
|
+
sourceUrl: buildSourceUrl('scheduled/scheduled.ts'),
|
|
166
|
+
guideUrl: buildGuideUrl('creation-functions/control/scheduled'),
|
|
127
167
|
},
|
|
128
168
|
'using': {
|
|
129
169
|
name: 'using',
|
|
130
170
|
category: 'control',
|
|
131
171
|
description: 'Creates Observable with resource management',
|
|
132
|
-
|
|
172
|
+
officialUrl: buildOfficialUrl('creation', 'using'),
|
|
173
|
+
sourceUrl: buildSourceUrl('observable/using.ts'),
|
|
174
|
+
guideUrl: buildGuideUrl('creation-functions/control/using'),
|
|
133
175
|
},
|
|
134
176
|
};
|
|
135
177
|
//# sourceMappingURL=creation-functions.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"creation-functions.js","sourceRoot":"","sources":["../../src/data/creation-functions.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"creation-functions.js","sourceRoot":"","sources":["../../src/data/creation-functions.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operators.d.ts","sourceRoot":"","sources":["../../src/data/operators.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"operators.d.ts","sourceRoot":"","sources":["../../src/data/operators.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,YAAY,EAIb,MAAM,aAAa,CAAC;AAErB;;;GAGG;AACH,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,CAipBzD,CAAC"}
|