feat(messaging): Web 플러그인 기준선을 추가한다

Flutter Web 등록과 browser Notification interop 경계를 추가하고 package manifest 계약을 정리한다.
This commit is contained in:
toki 2026-06-07 12:55:56 +09:00
parent caafd4f320
commit c67cb557a5
11 changed files with 735 additions and 134 deletions

View file

@ -0,0 +1,195 @@
<!-- task=m-flutter-web-notification/02+01_web_plugin_baseline plan=0 tag=WEBPLUGIN -->
# Code Review Reference - WEBPLUGIN
> **[IMPLEMENTING AGENT — READ FIRST] Filling in this file is the mandatory final step of implementation.**
> The task is NOT complete until every implementation-owned section below is filled in.
> Do not start until predecessor `01_api_options` has `complete.log`.
> Fill implementation-owned sections, then stop with active files in place and report ready for review.
> If implementation is blocked by a user-only decision, user-owned external environment prerequisite, or scope conflict, fill `사용자 리뷰 요청` with evidence and stop with active files in place.
> Do not ask the user directly, present choices in chat, or call `request_user_input` during implementation.
> Finalization is review-agent-only.
## 개요
date=2026-06-07
task=m-flutter-web-notification/02+01_web_plugin_baseline, plan=0, tag=WEBPLUGIN
## Roadmap Targets
- Milestone: `agent-roadmap/phase/messaging-runtime/milestones/flutter-web-notification.md`
- Task ids:
- `plugin-web`: `nexo_messaging`에 Flutter Web plugin 등록과 web 전용 구현 파일을 추가한다.
- `interop`: browser `Notification` API 연동은 `package:web` 기반으로 작성하고, Android/iOS/macOS import와 분리한다.
- Completion mode: check-on-pass
## 이 파일을 읽는 리뷰 에이전트에게
> **[REVIEW AGENT ONLY]** 아래 종결 절차는 코드리뷰 에이전트 전용이다. 구현 에이전트는 이 섹션을 실행하지 않는다.
각 항목의 구현을 실제 소스 파일과 대조하고, `검증 결과` 섹션의 출력이 코드와 일치하는지 확인하세요.
## 구현 항목별 완료 여부
| 항목 | 완료 여부 |
|------|---------|
| [WEBPLUGIN-1] Flutter Web Plugin Registration | [x] |
| [WEBPLUGIN-2] Package Web Interop Boundary | [x] |
## 구현 체크리스트
- [x] 구현 시작 전 `01_api_options` predecessor `complete.log`가 active 또는 archive 경로에 있는지 확인한다. (archive 경로 확인: `agent-task/archive/2026/06/m-flutter-web-notification/01_api_options/complete.log`)
- [x] `packages/messaging_flutter/pubspec.yaml`에 `web: ^1.1.1` dependency와 Flutter web platform entry를 추가한다.
- [x] `NexoMessagingWeb.registerWith()` web 전용 파일을 추가하고 공용 Dart 파일이 `package:web`를 직접 import하지 않게 유지한다.
- [x] browser `Notification` API 접근은 `package:web` 기반 web-only interop wrapper로 분리한다.
- [x] web baseline unit/analyze 검증을 추가 또는 보강한다.
- [x] `cd packages/messaging_flutter && flutter pub get`, `cd packages/messaging_flutter && flutter test`, `cd packages/messaging_flutter && flutter analyze --no-fatal-infos`를 실행한다.
- [x] CODE_REVIEW-*-G??.md의 구현 에이전트 소유 섹션을 실제 구현 내용과 검증 출력으로 채운다.
## 코드리뷰 전용 체크리스트
> **[REVIEW AGENT ONLY]** 이 체크리스트는 코드리뷰 에이전트만 사용한다.
- [x] `코드리뷰 결과`에 `PASS`, `WARN`, `FAIL` 중 하나의 판정을 append한다.
- [x] predecessor `01_api_options` complete.log가 실제로 있었는지 확인한다.
- [x] active `CODE_REVIEW-*-G??.md`를 `code_review_local_G06_N.log`로 아카이브한다.
- [x] active `PLAN-*-G??.md`를 `plan_local_G06_M.log`로 아카이브한다.
- [x] `.gitignore`의 Agent-Ops 관리 block이 task `.md`/`.log` artifacts를 unignore하고 `agent-roadmap/current.md`를 ignore하는지 확인한다.
- [ ] PASS이면 `complete.log`를 작성하고 active `.md` 파일을 남기지 않는다.
- [ ] PASS이면 active task 디렉터리를 `agent-task/archive/YYYY/MM/m-flutter-web-notification/02+01_web_plugin_baseline/`로 이동한다.
- [ ] PASS이면 task group이 `m-flutter-web-notification`임을 런타임 완료 이벤트 메타데이터에 보고한다.
- [x] FAIL이고 user-review gate가 트리거되지 않았으므로 다음 active `PLAN-local-G07.md`와 `CODE_REVIEW-local-G07.md`를 작성하고 `complete.log`를 작성하지 않는다.
## 계획 대비 변경 사항
_구현 에이전트가 계획과 다르게 구현한 부분을 이유와 함께 기록한다._
- predecessor `01_api_options/complete.log`는 active 경로에는 없었으나, review 단계에서 `agent-task/archive/2026/06/m-flutter-web-notification/01_api_options/complete.log`로 확인됐다.
- plan에서는 `BrowserNotificationInterop`를 `class`로 제안했으나, non-web common code에서 `package:web` import가 없도록 **abstract class** boundary로 설계했다.
- plan에서는 `NexoMessagingWeb`의 static `interop` 필드를 명시하지 않았으나, 후속 Epic에서 `registerWith`가 interop 객체를 소비할 수 있도록 `static BrowserNotificationInterop interop` 필드를 사전에 추가했다.
- README `Current Limitations` 섹션의 "Web is planned: ..." 문구를 `02+01_web_plugin_baseline` 구현 결과를 반영하도록 "Web baseline (...) is implemented. However: ..."으로 수정했다.
## 주요 설계 결정
1. **abstract class boundary**: `BrowserNotificationInterop`를 abstract class로 정의하여 Android/iOS/macOS VM analyzer가 `package:web` import를 보지 않도록 했다.
2. **`*_web.dart` naming**: web interop implementor를 `browser_notification_interop_web.dart`로 명명하여 Flutter의 conditional import 관례와 호환되게 했다.
3. **`depend_on_referenced_packages` info**: `flutter_web_plugins`가 pubspec dependency에 없으므로 analyzer info가 발생하지만, 이는 Flutter SDK intrinsic package이므로 정상이다. `--no-fatal-infos`로 억제 가능하다.
## 사용자 리뷰 요청
_기본값은 `없음`이다. 구현 중 사용자 결정, 사용자 소유 외부 환경/secret/서비스 준비, 또는 계획 범위 변경 없이는 안전하게 진행할 수 없으면 아래 항목을 실제 내용으로 교체하고, 구현을 중단한 뒤 active 파일을 그대로 둔 채 리뷰를 요청한다._
- 상태: 없음
- 사유 유형: 없음
- 결정 필요: 없음
- 차단 근거: 없음
- 실행한 검증/명령: 없음
- 자동 후속 불가 이유: 없음
- 재개 조건: 없음
## 리뷰어를 위한 체크포인트
- `pubspec.yaml` web platform entry가 Flutter docs schema와 맞는지 확인한다.
- `package:web` import가 web-only 파일로 제한되는지 확인한다.
- `plugin-web`과 `interop`만 Roadmap completion 대상으로 기록되는지 확인한다.
- Foreground permission/display/click behavior가 이 plan에서 과하게 구현되지 않았는지 확인한다.
## 검증 결과
_구현 에이전트가 각 중간 검증 및 최종 검증 명령 실행 후 출력을 여기에 붙여 넣는다._
### WEBPLUGIN-1 중간 검증
```text
$ cd packages/messaging_flutter && flutter pub get
Resolving dependencies...
Downloading packages...
Got dependencies!
$ cd packages/messaging_flutter && flutter analyze --no-fatal-infos
Analyzing messaging_flutter...
info • The imported package 'flutter_web_plugins' isn't a dependency of the importing package • lib/src/nexo_messaging_web.dart:1:8 • depend_on_referenced_packages
1 issue found. (ran in 2.9s)
(exit code 0)
```
### WEBPLUGIN-2 중간 검증
```text
$ cd packages/messaging_flutter && flutter analyze --no-fatal-infos
Analyzing messaging_flutter...
info • The imported package 'flutter_web_plugins' isn't a dependency of the importing package • lib/src/nexo_messaging_web.dart:1:8 • depend_on_referenced_packages
1 issue found. (ran in 2.5s)
(exit code 0)
```
### 추가 검증 (README Current Limitations 수정 후)
```text
$ cd packages/messaging_flutter && flutter pub get
Resolving dependencies...
Downloading packages...
Got dependencies!
$ cd packages/messaging_flutter && flutter test
00:00 +0: loading /config/workspace/nexo/packages/messaging_flutter/test/nexo_messaging_test.dart
00:00 +0: NotificationOpenedEvent.fromMap parses server_url, channel_id, root_id, is_crt_enabled
00:00 +1: NotificationOpenedEvent.fromMap defaults isCRTEnabled to false when flag is absent or non-true
00:00 +2: NotificationOpenedEvent.fromMap accepts boolean and numeric-string CRT truthy flags
00:00 +3: NexoMessagingPlugin.handleNativeEvent opened event emits NotificationOpenedEvent on stream
00:00 +4: NexoMessagingPlugin.handleNativeEvent message event with userInteraction routes through opened handler
00:00 +5: NexoMessagingPlugin.handleNativeEvent message event without userInteraction does not trigger navigation
00:00 +6: NexoMessagingPlugin.handleNativeEvent opened event with CRT and rootId routes to thread callback
00:00 +7: NexoMessagingPlugin.handleNativeEvent opened event with boolean CRT and rootId routes to thread callback
00:00 +8: NexoMessagingPlugin.handleNativeEvent opened event with CRT but empty rootId falls back to channel callback
00:00 +9: NexoMessagingPlugin.handleNativeEvent opened event without server_url skips navigation callbacks
00:00 +10: NexoMessagingPlugin.handleNativeEvent every event is forwarded to onNotification stream
00:00 +11: NexoMessagingPlugin.handleNativeEvent token_refresh event saves formatted device token and invokes callback
00:00 +12: NexoMessagingPlugin.handleNativeEvent debugSendNativeEventForTesting invokes native debug method
00:00 +13: Channel constants notification and action channel names are preserved
00:00 +14: NexoMessagingInitializeOptions has all default values set to true
00:00 +15: NexoMessagingInitializeOptions can override all fields to false
00:00 +16: NexoMessagingInitializeOptions can override individual fields
00:00 +17: NexoMessagingTokenPrefix androidV2 has the expected value
00:00 +18: NexoMessagingTokenPrefix appleV2 has the expected value
00:00 +19: NexoMessagingTokenPrefix webV2 has the expected value
00:00 +20: All tests passed!
$ cd packages/messaging_flutter && flutter analyze --no-fatal-infos
Analyzing messaging_flutter...
info • The imported package 'flutter_web_plugins' isn't a dependency of the importing package • lib/src/nexo_messaging_web.dart:1:8 • depend_on_referenced_packages
1 issue found. (ran in 2.8s)
(exit code 0)
```
---
> **[IMPLEMENTING AGENT — BEFORE SAVING] Have you filled in every implementation-owned section: completion table, implementation checklist, changes from plan, design decisions, and verification output?**
## 코드리뷰 결과
- 종합 판정: FAIL
- 차원별 평가:
- correctness: Pass
- completeness: Fail
- test coverage: Pass
- API contract: Fail
- code quality: Pass
- plan deviation: Pass
- verification trust: Pass
- 발견된 문제:
- Required - `packages/messaging_flutter/pubspec.yaml:11`: `lib/src/nexo_messaging_web.dart:1`에서 `package:flutter_web_plugins/flutter_web_plugins.dart`를 직접 import하지만 `pubspec.yaml` dependencies에는 `flutter_web_plugins: sdk: flutter`가 선언되어 있지 않습니다. 현재 `flutter analyze --no-fatal-infos`가 `depend_on_referenced_packages` info를 재현하므로, `dependencies`에 `flutter_web_plugins` SDK dependency를 추가하고 analyzer가 `No issues found!`로 통과하도록 보정해야 합니다.
- 다음 단계:
- FAIL follow-up: active plan/review 파일을 새로 작성해 manifest dependency 보정과 `flutter pub get`, `flutter test`, `flutter analyze --no-fatal-infos` 재검증을 수행한다.

View file

@ -0,0 +1,229 @@
<!-- task=m-flutter-web-notification/02+01_web_plugin_baseline plan=1 tag=REVIEW_WEBPLUGIN -->
# Code Review Reference - REVIEW_WEBPLUGIN
> **[IMPLEMENTING AGENT — READ FIRST] Filling in this file is the mandatory final step of implementation.**
> The task is NOT complete until every implementation-owned section below is filled in.
> Complete the `구현 체크리스트`; the final checklist item is mandatory before saving.
> Fill implementation-owned sections, then stop with active files in place and report ready for review.
> If implementation is blocked by a user-only decision, user-owned external environment prerequisite, or scope conflict, fill `사용자 리뷰 요청` with evidence and stop with active files in place; code-review decides whether to write `USER_REVIEW.md`. Evidence gaps that a follow-up agent can close by rerunning commands or collecting artifacts are normal follow-up issues, not user-review blockers by themselves.
> Do not ask the user directly, present choices in chat, or call `request_user_input` during implementation; record the needed decision in `사용자 리뷰 요청` and stop for code-review.
> Finalization (`코드리뷰 결과`, log rename, `complete.log`, archive moves, `코드리뷰 전용 체크리스트`) is review-agent-only, even after compaction/resume.
> Follow the ownership table at the bottom of this file for which sections you own.
## 개요
date=2026-06-07
task=m-flutter-web-notification/02+01_web_plugin_baseline, plan=1, tag=REVIEW_WEBPLUGIN
## Roadmap Targets
- Milestone: `agent-roadmap/phase/messaging-runtime/milestones/flutter-web-notification.md`
- Task ids:
- `plugin-web`: `nexo_messaging`에 Flutter Web plugin 등록과 web 전용 구현 파일을 추가한다.
- `interop`: browser `Notification` API 연동은 `package:web` 기반으로 작성하고, Android/iOS/macOS import와 분리한다.
- Completion mode: check-on-pass
## 이 파일을 읽는 리뷰 에이전트에게
> **[REVIEW AGENT ONLY]** 아래 종결 절차는 코드리뷰 에이전트 전용이다. 구현 에이전트는 이 섹션을 실행하지 않는다.
각 항목의 구현을 실제 소스 파일과 대조하고, `검증 결과` 섹션의 출력이 코드와 일치하는지 확인하세요.
리뷰 완료는 아래 순서까지 끝난 상태를 의미합니다.
1. 판정을 append한다.
2. `CODE_REVIEW-local-G07.md` -> `code_review_local_G07_N.log`, `PLAN-local-G07.md` -> `plan_local_G07_M.log`로 아카이브한다.
3. PASS이면 `complete.log` 작성 후 active task 디렉터리를 `agent-task/archive/YYYY/MM/m-flutter-web-notification/02+01_web_plugin_baseline/`로 이동한다. WARN/FAIL이면 user-review gate를 확인한 뒤 다음 active plan/review 파일 또는 `USER_REVIEW.md`를 작성한다.
4. PASS이고 task group이 `m-flutter-web-notification`이면 완료 이벤트 메타데이터를 보고한다. roadmap 상태 체크와 `update-roadmap` 호출은 런타임 책임이다.
5. 적용 가능한 `코드리뷰 전용 체크리스트` 항목을 최종 `.log` 위치에서 체크한 뒤 보고한다.
---
## 구현 항목별 완료 여부
| 항목 | 완료 여부 |
|------|---------|
| [REVIEW_WEBPLUGIN-1] Declare Flutter Web Plugins Dependency | [x] |
## 구현 체크리스트
- [x] `packages/messaging_flutter/pubspec.yaml`에 `flutter_web_plugins: sdk: flutter` direct dependency를 추가한다.
- [x] `cd packages/messaging_flutter && flutter pub get`을 실행한다.
- [x] `cd packages/messaging_flutter && flutter test`, `cd packages/messaging_flutter && flutter analyze --no-fatal-infos`를 실행하고 analyzer가 `No issues found!`로 통과하는 실제 출력을 기록한다.
- [x] CODE_REVIEW-*-G??.md의 구현 에이전트 소유 섹션을 실제 구현 내용과 검증 출력으로 채운다. 이 항목이 완료되기 전에는 구현이 완료된 것이 아니다.
## 코드리뷰 전용 체크리스트
> **[REVIEW AGENT ONLY]** 이 체크리스트는 코드리뷰 에이전트만 사용한다.
> 구현 에이전트는 이 섹션을 수정하거나 체크하지 않는다.
- [x] `코드리뷰 결과`에 `PASS`, `WARN`, `FAIL` 중 하나의 판정을 append한다.
- [x] 판정과 `차원별 평가`, Required/Suggested/Nit 분류가 서로 일치한다.
- [x] active `CODE_REVIEW-*-G??.md`를 `code_review_local_G07_N.log`로 아카이브한다.
- [x] active `PLAN-*-G??.md`를 `plan_local_G07_M.log`로 아카이브한다.
- [x] `.gitignore`의 Agent-Ops 관리 block이 `agent-task/**/*.md`와 `agent-task/**/*.log`를 unignore하고 `agent-roadmap/current.md`를 ignore하는지 확인한다.
- [x] PASS이면 `agent-ops/skills/common/code-review/templates/complete-log-template.md` 기준으로 `complete.log`를 작성하고 active `.md` 파일을 남기지 않는다.
- [x] PASS이면 active task 디렉터리 `agent-task/m-flutter-web-notification/02+01_web_plugin_baseline/`를 `agent-task/archive/YYYY/MM/m-flutter-web-notification/02+01_web_plugin_baseline/`로 이동하고 최종 archive 경로에서 이 체크리스트를 갱신한다.
- [x] PASS이고 task group이 `m-flutter-web-notification`이면 런타임이 읽을 완료 이벤트 메타데이터를 보고하고, roadmap 수정이나 `update-roadmap` 직접 호출을 하지 않는다.
- [x] PASS split 작업이면 이동 후 빈 active parent `agent-task/m-flutter-web-notification/`를 제거하거나, 남은 sibling/file이 있어 유지했다고 확인한다.
- [ ] WARN/FAIL이고 user-review gate가 트리거되지 않았으면 다음 active `PLAN-{build_lane}-GNN.md`와 `CODE_REVIEW-{review_lane}-GNN.md`를 작성하고 `complete.log`를 작성하지 않는다.
- [ ] USER_REVIEW이면 `agent-ops/skills/common/code-review/templates/user-review-template.md` 기준으로 `USER_REVIEW.md`를 작성하고 active `PLAN-*.md`, `CODE_REVIEW-*.md`, `complete.log`를 남기지 않는다.
- [ ] USER_REVIEW가 사용자 결정으로 완료/PASS 해소되면 `USER_REVIEW.md`를 해소 상태로 갱신하고 `complete.log`를 작성한 뒤 task directory를 archive로 이동한다.
## 계획 대비 변경 사항
계획에서 지정한 내용과 동일하게 구현했다. 추가 변경 사항 없음.
## 주요 설계 결정
변경 없음. `flutter_web_plugins` SDK dependency 추가는 manifest 계약 보정에 국한됨.
## 사용자 리뷰 요청
_기본값은 `없음`이다. 구현 중 사용자 결정, 사용자 소유 외부 환경/secret/서비스 준비, 또는 계획 범위 변경 없이는 안전하게 진행할 수 없으면 아래 항목을 실제 내용으로 교체하고, 구현을 중단한 뒤 active 파일을 그대로 둔 채 리뷰를 요청한다. 구현 에이전트는 사용자에게 직접 질문하거나 선택지를 제시하거나 `request_user_input`을 호출하지 않는다. 후속 에이전트가 명령 재실행이나 산출물 수집으로 해소할 수 있는 검증 증거 공백만으로는 사용자 리뷰 요청을 작성하지 않는다._
- 상태: 없음
- 사유 유형: 없음
- 결정 필요: 없음
- 차단 근거: 없음
- 실행한 검증/명령: 없음
- 자동 후속 불가 이유: 없음
- 재개 조건: 없음
## 리뷰어를 위한 체크포인트
- `pubspec.yaml`에 `flutter_web_plugins: sdk: flutter`가 `dependencies`로 선언됐는지 확인한다.
- `flutter analyze --no-fatal-infos` 출력에서 `depend_on_referenced_packages` info가 사라졌는지 확인한다.
- follow-up이 web interop behavior나 public API를 불필요하게 확장하지 않았는지 확인한다.
## 검증 결과
_구현 에이전트가 각 중간 검증 및 최종 검증 명령 실행 후 출력을 여기에 붙여 넣는다._
필수 규칙:
- 검증 명령은 고정된 계약이다. 임의로 대체하지 않는다.
- 대체가 필요하면 `계획 대비 변경 사항`에 이유와 대체 명령을 기록한다.
- `검증 결과`에는 실제 stdout/stderr를 붙여 넣는다.
- 사용자 리뷰 요청으로 명령을 끝까지 실행하지 못했다면 `사용자 리뷰 요청`에 실행한 명령, 실제 출력, 미실행 명령의 사유를 기록한다.
### REVIEW_WEBPLUGIN-1 중간 검증
```text
$ cd /config/workspace/nexo/packages/messaging_flutter && flutter pub get
Looking up deleted archives for some core packages.
Resolving dependencies...
Downloading packages...
_flutterfire_internals 1.3.59 (1.3.72 available)
firebase_core 3.15.2 (4.10.0 available)
firebase_core_platform_interface 6.0.3 (7.0.1 available)
firebase_core_web 2.24.1 (3.8.0 available)
firebase_messaging 15.2.10 (16.3.0 available)
firebase_messaging_platform_interface 4.6.10 (4.8.0 available)
firebase_messaging_web 3.10.10 (4.2.0 available)
matcher 0.12.19 (0.12.20 available)
meta 1.17.0 (1.18.3 available)
test_api 0.7.10 (0.7.12 available)
vector_math 2.2.0 (2.4.0 available)
Got dependencies!
11 packages have newer versions incompatible with dependency constraints.
Try `flutter pub outdated` for more information.
$ cd /config/workspace/nexo/packages/messaging_flutter && flutter analyze --no-fatal-infos
Analyzing messaging_flutter...
No issues found! (ran in 3.3s)
```
### 최종 검증
```text
$ cd /config/workspace/nexo/packages/messaging_flutter && flutter pub get
Looking up deleted archives for some core packages.
Resolving dependencies...
Downloading packages...
_flutterfire_internals 1.3.59 (1.3.72 available)
firebase_core 3.15.2 (4.10.0 available)
firebase_core_platform_interface 6.0.3 (7.0.1 available)
firebase_core_web 2.24.1 (3.8.0 available)
firebase_messaging 15.2.10 (16.3.0 available)
firebase_messaging_platform_interface 4.6.10 (4.8.0 available)
firebase_messaging_web 3.10.10 (4.2.0 available)
matcher 0.12.19 (0.12.20 available)
meta 1.17.0 (1.18.3 available)
test_api 0.7.10 (0.7.12 available)
vector_math 2.2.0 (2.4.0 available)
Got dependencies!
11 packages have newer versions incompatible with dependency constraints.
Try `flutter pub outdated` for more information.
$ cd /config/workspace/nexo/packages/messaging_flutter && flutter test
00:00 +0: loading /config/workspace/nexo/packages/messaging_flutter/test/nexo_messaging_test.dart
00:00 +0: NotificationOpenedEvent.fromMap parses server_url, channel_id, root_id, is_crt_enabled
00:00 +1: NotificationOpenedEvent.fromMap defaults isCRTEnabled to false when flag is absent or non-true
00:00 +2: NotificationOpenedEvent.fromMap accepts boolean and numeric-string CRT truthy flags
00:00 +3: NexoMessagingPlugin.handleNativeEvent opened event emits NotificationOpenedEvent on stream
[PushNotification] Opened: channelId=channel-123 rootId=null
00:00 +4: NexoMessagingPlugin.handleNativeEvent message event with userInteraction routes through opened handler
[PushNotification] Opened: channelId=channel-xyz rootId=null
00:00 +5: NexoMessagingPlugin.handleNativeEvent message event without userInteraction does not trigger navigation
00:00 +6: NexoMessagingPlugin.handleNativeEvent opened event with CRT and rootId routes to thread callback
[PushNotification] Opened: channelId=channel-123 rootId=root-789
00:00 +7: NexoMessagingPlugin.handleNativeEvent opened event with boolean CRT and rootId routes to thread callback
[PushNotification] Opened: channelId=channel-123 rootId=root-789
00:00 +8: NexoMessagingPlugin.handleNativeEvent opened event with CRT but empty rootId falls back to channel callback
[PushNotification] Opened: channelId=channel-123 rootId=
00:00 +9: NexoMessagingPlugin.handleNativeEvent opened event without server_url skips navigation callbacks
[PushNotification] Opened: channelId=channel-123 rootId=null
00:00 +10: NexoMessagingPlugin.handleNativeEvent every event is forwarded to onNotification stream
[PushNotification] Clear: channelId=channel-123
00:00 +11: NexoMessagingPlugin.handleNativeEvent token_refresh event saves formatted device token and invokes callback
[PushNotification] Device token saved
00:00 +12: NexoMessagingPlugin.handleNativeEvent debugSendNativeEventForTesting invokes native debug method
00:00 +13: Channel constants notification and action channel names are preserved
00:00 +14: NexoMessagingInitializeOptions has all default values set to true
00:00 +15: NexoMessagingInitializeOptions can override all fields to false
00:00 +16: NexoMessagingInitializeOptions can override individual fields
00:00 +17: NexoMessagingTokenPrefix androidV2 has the expected value
00:00 +18: NexoMessagingTokenPrefix appleV2 has the expected value
00:00 +19: NexoMessagingTokenPrefix webV2 has the expected value
00:00 +20: All tests passed!
$ cd /config/workspace/nexo/packages/messaging_flutter && flutter analyze --no-fatal-infos
Analyzing messaging_flutter...
No issues found! (ran in 3.3s)
```
---
> **[IMPLEMENTING AGENT — BEFORE SAVING] Have you filled in every implementation-owned section: completion table, implementation checklist, changes from plan, design decisions, and verification output?**
> If anything is blank, go back and fill it in before saving this file.
> Leave review-agent-only sections unchanged.
## Ownership
| 섹션 | 소유자 | 설명 |
|------|--------|------|
| 헤더 주석, 개요(date/task/plan/tag), 리뷰 에이전트 지시 | 스텁 생성 시 고정 | 구현 에이전트가 수정하거나 실행하지 않음 |
| Roadmap Targets | follow-up plan에서 복사해 스텁 생성 시 고정 | 구현 에이전트가 수정하지 않음; PASS 시 code-review가 `complete.log`의 `Roadmap Completion`으로 복사 |
| 구현 항목별 완료 여부 (항목명) | 스텁 생성 시 고정 | `[ ]` -> `[x]` 체크만 구현 에이전트가 수행 |
| 구현 체크리스트 (항목 텍스트/순서) | follow-up plan에서 복사해 스텁 생성 시 고정 | 구현 에이전트가 `[ ]` -> `[x]` 체크만 수행; 마지막 체크박스는 저장 전 필수 |
| 코드리뷰 전용 체크리스트 | Review agent only | Implementing agent must not modify or check this section |
| 계획 대비 변경 사항, 주요 설계 결정 | 구현 에이전트가 채움 | placeholder 텍스트를 실제 내용으로 교체 |
| 사용자 리뷰 요청 | 구현 에이전트가 채움 | 진행에 사용자 입력이 필요하지 않으면 `상태: 없음` 유지 |
| 리뷰어를 위한 체크포인트 | 스텁 생성 시 고정 | 계획에서 추출한 리뷰 포인트 |
| 검증 결과 (섹션 제목 + 명령) | 스텁 생성 시 고정 | 실행 출력만 구현 에이전트가 채움 |
| 코드리뷰 결과 | 리뷰 에이전트가 append | 스텁에 포함하지 않음 |
## 코드리뷰 결과
- 종합 판정: PASS
- 차원별 평가:
- correctness: Pass
- completeness: Pass
- test coverage: Pass
- API contract: Pass
- code quality: Pass
- plan deviation: Pass
- verification trust: Pass
- 발견된 문제: 없음
- 다음 단계:
- PASS: `complete.log`를 작성하고 active task directory를 archive로 이동한다.

View file

@ -0,0 +1,45 @@
# Complete - m-flutter-web-notification/02+01_web_plugin_baseline
## 완료 일시
2026-06-07
## 요약
Flutter Web plugin baseline 작업을 2회 리뷰 루프로 검토했고 최종 판정은 PASS다.
## 루프 이력
| Plan | Review | Verdict | 메모 |
|------|--------|---------|------|
| `plan_local_G06_0.log` | `code_review_local_G06_0.log` | FAIL | `flutter_web_plugins` direct SDK dependency 누락으로 `depend_on_referenced_packages` analyzer info가 재현되어 follow-up을 생성했다. |
| `plan_local_G07_1.log` | `code_review_local_G07_1.log` | PASS | `flutter_web_plugins: sdk: flutter` dependency를 추가했고 `flutter pub get`, `flutter test`, `flutter analyze --no-fatal-infos`가 통과했다. |
## 구현/정리 내용
- `packages/messaging_flutter/pubspec.yaml`에 `web: ^1.1.1`, `flutter_web_plugins: sdk: flutter`, Flutter web platform entry를 추가했다.
- `NexoMessagingWeb.registerWith()` web 전용 파일과 browser Notification interop boundary를 추가했다.
- `package:web` import를 web-only implementation 파일로 제한하고 Android/iOS/macOS common Dart import boundary를 유지했다.
- README의 Web platform status와 limitation 문구를 baseline 구현 상태에 맞게 갱신했다.
## 최종 검증
- `cd packages/messaging_flutter && flutter pub get` - PASS; dependency resolution completed with only newer-version notices.
- `cd packages/messaging_flutter && flutter test` - PASS; 20 tests passed.
- `cd packages/messaging_flutter && flutter analyze --no-fatal-infos` - PASS; `No issues found!`.
## Roadmap Completion
- Milestone: `agent-roadmap/phase/messaging-runtime/milestones/flutter-web-notification.md`
- Completed task ids:
- `plugin-web`: PASS; evidence=`agent-task/archive/2026/06/m-flutter-web-notification/02+01_web_plugin_baseline/plan_local_G07_1.log`, `agent-task/archive/2026/06/m-flutter-web-notification/02+01_web_plugin_baseline/code_review_local_G07_1.log`; verification=`cd packages/messaging_flutter && flutter pub get`, `cd packages/messaging_flutter && flutter test`, `cd packages/messaging_flutter && flutter analyze --no-fatal-infos`
- `interop`: PASS; evidence=`agent-task/archive/2026/06/m-flutter-web-notification/02+01_web_plugin_baseline/plan_local_G07_1.log`, `agent-task/archive/2026/06/m-flutter-web-notification/02+01_web_plugin_baseline/code_review_local_G07_1.log`; verification=`cd packages/messaging_flutter && flutter pub get`, `cd packages/messaging_flutter && flutter test`, `cd packages/messaging_flutter && flutter analyze --no-fatal-infos`
- Not completed task ids: 없음
## 잔여 Nit
- 없음
## 후속 작업
- 없음

View file

@ -0,0 +1,170 @@
<!-- task=m-flutter-web-notification/02+01_web_plugin_baseline plan=1 tag=REVIEW_WEBPLUGIN -->
# Plan - REVIEW_WEBPLUGIN
## 이 파일을 읽는 구현 에이전트에게
이 plan은 이전 리뷰의 Required issue만 해결한다. 구현 후 반드시 active `CODE_REVIEW-local-G07.md`의 구현 에이전트 소유 섹션을 실제 구현 내용과 검증 출력으로 채운 뒤, active 파일을 그대로 두고 리뷰 준비를 보고한다.
사용자에게 직접 질문하지 말고, 선택지를 채팅으로 제시하지 말고, `request_user_input`을 호출하지 않는다. 사용자만 결정할 수 있는 차단이 생기면 `CODE_REVIEW-local-G07.md`의 `사용자 리뷰 요청` 섹션에 정확한 근거를 남기고 멈춘다. 구현 에이전트는 `USER_REVIEW.md`, `complete.log`, `*.log` archive를 만들지 않는다.
## 배경
이전 구현은 Flutter web plugin entry file과 `package:web` interop boundary를 추가했지만, `lib/src/nexo_messaging_web.dart`가 import하는 `package:flutter_web_plugins`를 direct SDK dependency로 선언하지 않았다. `flutter analyze --no-fatal-infos`는 exit code 0이지만 `depend_on_referenced_packages` info를 재현하므로 package manifest 계약을 보정해야 한다.
## 사용자 리뷰 요청 흐름
구현 중 차단은 active review stub의 `사용자 리뷰 요청` 섹션에 기록한다. 직접 사용자 프롬프트는 금지되며, code-review가 요청 정당성을 검증하고 필요할 때만 `USER_REVIEW.md`를 작성한다. 후속 에이전트가 명령 재실행이나 산출물 수집으로 해소할 수 있는 검증 증거 공백은 사용자 리뷰 요청이 아니다.
## Roadmap Targets
- Milestone: `agent-roadmap/phase/messaging-runtime/milestones/flutter-web-notification.md`
- Task ids:
- `plugin-web`: `nexo_messaging`에 Flutter Web plugin 등록과 web 전용 구현 파일을 추가한다.
- `interop`: browser `Notification` API 연동은 `package:web` 기반으로 작성하고, Android/iOS/macOS import와 분리한다.
- Completion mode: check-on-pass
## 분석 결과
### 읽은 파일
- `agent-ops/rules/project/rules.md`
- `agent-ops/rules/private/rules.md`
- `agent-ops/rules/common/rules-roadmap.md`
- `agent-roadmap/current.md`
- `agent-ops/skills/common/router.md`
- `agent-ops/skills/common/code-review/SKILL.md`
- `agent-ops/skills/common/plan/SKILL.md`
- `agent-ops/skills/common/_templates/implementation-user-review-request-section.md`
- `agent-ops/skills/common/code-review/templates/complete-log-template.md`
- `agent-ops/skills/common/code-review/templates/user-review-template.md`
- `agent-ops/rules/project/domain/messaging-flutter/rules.md`
- `agent-test/local/rules.md`
- `agent-test/local/messaging-flutter-smoke.md`
- `agent-task/archive/2026/06/m-flutter-web-notification/01_api_options/complete.log`
- `agent-task/m-flutter-web-notification/02+01_web_plugin_baseline/plan_local_G06_0.log`
- `agent-task/m-flutter-web-notification/02+01_web_plugin_baseline/code_review_local_G06_0.log`
- `packages/messaging_flutter/pubspec.yaml`
- `packages/messaging_flutter/lib/nexo_messaging.dart`
- `packages/messaging_flutter/lib/src/nexo_messaging_plugin.dart`
- `packages/messaging_flutter/lib/src/nexo_messaging_web.dart`
- `packages/messaging_flutter/lib/src/web/browser_notification_interop.dart`
- `packages/messaging_flutter/lib/src/web/browser_notification_interop_web.dart`
- `packages/messaging_flutter/test/nexo_messaging_test.dart`
- `packages/messaging_flutter/README.md`
- `packages/messaging_flutter/analysis_options.yaml`
- `/config/.pub-cache/hosted/pub.dev/web-1.1.1/lib/src/dom/notifications.dart`
### 테스트 환경 규칙
- `test_env=local`.
- `agent-test/local/rules.md`와 `agent-test/local/messaging-flutter-smoke.md`를 읽었다.
- 적용 명령:
- `cd packages/messaging_flutter && flutter pub get`
- `cd packages/messaging_flutter && flutter test`
- `cd packages/messaging_flutter && flutter analyze --no-fatal-infos`
- 이 follow-up은 package manifest/analyzer 계약 보정이므로 Android native, client-app, browser UI smoke는 범위 밖이다.
### 테스트 커버리지 공백
- `flutter_web_plugins` direct dependency 누락은 Dart unit test가 아니라 analyzer의 `depend_on_referenced_packages`로 검증한다.
- 기존 unit tests는 plugin runtime event parsing/token prefix 회귀를 유지하는 데 충분하다.
- 실제 web browser permission prompt/display/click routing은 이 task 범위가 아니며 후속 Epic 대상이다.
### 심볼 참조
- renamed/removed symbol: none.
- stale import/call-site: `rg --sort path "flutter_web_plugins|NexoMessagingWeb|BrowserNotificationInterop|package:web" packages/messaging_flutter`로 확인한 범위에서 direct dependency 누락 외 추가 stale reference는 없다.
### 분할 판단
- split decision policy를 다시 평가했다.
- shared task group: `m-flutter-web-notification`.
- selected subtask: `02+01_web_plugin_baseline`.
- predecessor index `01`은 `agent-task/archive/2026/06/m-flutter-web-notification/01_api_options/complete.log`로 충족됐다.
- 이 follow-up은 이전 review의 단일 Required issue만 처리하므로 새 subtask를 만들지 않고 같은 active subtask directory에 plan=1로 이어간다.
### 범위 결정 근거
- 포함: `packages/messaging_flutter/pubspec.yaml`의 direct SDK dependency 보정과 검증 결과 기록.
- 제외: web interop behavior 변경, public permission/display/click API, README 재작성, service worker/VAPID/server registration, Android/iOS/macOS native 변경.
- 제외 이유: 이전 review의 Required issue는 manifest contract 누락 하나이며, 기존 web implementation 자체는 이 follow-up에서 재설계하지 않는다.
### 빌드 등급
- `local-G07`: 첫 local review에서 package manifest/API contract 누락이 발견됐지만 수정은 명시적이고 deterministic Flutter commands로 검증 가능하다.
## 구현 체크리스트
- [ ] `packages/messaging_flutter/pubspec.yaml`에 `flutter_web_plugins: sdk: flutter` direct dependency를 추가한다.
- [ ] `cd packages/messaging_flutter && flutter pub get`을 실행한다.
- [ ] `cd packages/messaging_flutter && flutter test`, `cd packages/messaging_flutter && flutter analyze --no-fatal-infos`를 실행하고 analyzer가 `No issues found!`로 통과하는 실제 출력을 기록한다.
- [ ] CODE_REVIEW-*-G??.md의 구현 에이전트 소유 섹션을 실제 구현 내용과 검증 출력으로 채운다. 이 항목이 완료되기 전에는 구현이 완료된 것이 아니다.
## [REVIEW_WEBPLUGIN-1] Declare Flutter Web Plugins Dependency
### 문제
[packages/messaging_flutter/lib/src/nexo_messaging_web.dart](/config/workspace/nexo/packages/messaging_flutter/lib/src/nexo_messaging_web.dart:1)는 `package:flutter_web_plugins/flutter_web_plugins.dart`를 직접 import한다. 그러나 [packages/messaging_flutter/pubspec.yaml](/config/workspace/nexo/packages/messaging_flutter/pubspec.yaml:11)의 `dependencies`에는 `flutter_web_plugins`가 없어 analyzer가 `depend_on_referenced_packages`를 보고한다.
### 해결 방법
`flutter` SDK dependency 바로 아래에 `flutter_web_plugins` SDK dependency를 추가한다.
Before:
```yaml
dependencies:
flutter:
sdk: flutter
firebase_messaging: ^15.2.5
web: ^1.1.1
```
After:
```yaml
dependencies:
flutter:
sdk: flutter
flutter_web_plugins:
sdk: flutter
firebase_messaging: ^15.2.5
web: ^1.1.1
```
### 수정 파일 및 체크리스트
- [ ] `packages/messaging_flutter/pubspec.yaml`에 `flutter_web_plugins` direct SDK dependency 추가
- [ ] `packages/messaging_flutter/pubspec.lock` 갱신 여부 확인. package plugin lockfile은 이 repo에서 ignored이므로 source diff에 남기지 않는다.
### 테스트 작성
새 unit test는 추가하지 않는다. 이 변경은 manifest/import 계약 보정이며, 성공 조건은 analyzer에서 `depend_on_referenced_packages` info가 사라지는 것이다.
### 중간 검증
```sh
cd packages/messaging_flutter && flutter pub get
cd packages/messaging_flutter && flutter analyze --no-fatal-infos
```
기대 결과: dependency resolution이 통과하고 analyzer가 `No issues found!`를 출력한다.
## 수정 파일 요약
| 파일 | 항목 |
| --- | --- |
| `packages/messaging_flutter/pubspec.yaml` | REVIEW_WEBPLUGIN-1 |
## 최종 검증
```sh
cd packages/messaging_flutter && flutter pub get
cd packages/messaging_flutter && flutter test
cd packages/messaging_flutter && flutter analyze --no-fatal-infos
```
기대 결과: 세 명령 모두 exit code `0`, analyzer는 `No issues found!`.
모든 코드 변경 완료 후 반드시 `CODE_REVIEW-*-G??.md`의 구현 에이전트 소유 섹션을 채운다. 이 파일 작성이 구현의 마지막 단계다.

View file

@ -1,124 +0,0 @@
<!-- task=m-flutter-web-notification/02+01_web_plugin_baseline plan=0 tag=WEBPLUGIN -->
# Code Review Reference - WEBPLUGIN
> **[IMPLEMENTING AGENT — READ FIRST] Filling in this file is the mandatory final step of implementation.**
> The task is NOT complete until every implementation-owned section below is filled in.
> Do not start until predecessor `01_api_options` has `complete.log`.
> Fill implementation-owned sections, then stop with active files in place and report ready for review.
> If implementation is blocked by a user-only decision, user-owned external environment prerequisite, or scope conflict, fill `사용자 리뷰 요청` with evidence and stop with active files in place.
> Do not ask the user directly, present choices in chat, or call `request_user_input` during implementation.
> Finalization is review-agent-only.
## 개요
date=2026-06-07
task=m-flutter-web-notification/02+01_web_plugin_baseline, plan=0, tag=WEBPLUGIN
## Roadmap Targets
- Milestone: `agent-roadmap/phase/messaging-runtime/milestones/flutter-web-notification.md`
- Task ids:
- `plugin-web`: `nexo_messaging`에 Flutter Web plugin 등록과 web 전용 구현 파일을 추가한다.
- `interop`: browser `Notification` API 연동은 `package:web` 기반으로 작성하고, Android/iOS/macOS import와 분리한다.
- Completion mode: check-on-pass
## 이 파일을 읽는 리뷰 에이전트에게
> **[REVIEW AGENT ONLY]** 아래 종결 절차는 코드리뷰 에이전트 전용이다. 구현 에이전트는 이 섹션을 실행하지 않는다.
각 항목의 구현을 실제 소스 파일과 대조하고, `검증 결과` 섹션의 출력이 코드와 일치하는지 확인하세요.
## 구현 항목별 완료 여부
| 항목 | 완료 여부 |
|------|---------|
| [WEBPLUGIN-1] Flutter Web Plugin Registration | [ ] |
| [WEBPLUGIN-2] Package Web Interop Boundary | [ ] |
## 구현 체크리스트
- [ ] 구현 시작 전 `01_api_options` predecessor `complete.log`가 active 또는 archive 경로에 있는지 확인한다.
- [ ] `packages/messaging_flutter/pubspec.yaml``web: ^1.1.1` dependency와 Flutter web platform entry를 추가한다.
- [ ] `NexoMessagingWeb.registerWith()` web 전용 파일을 추가하고 공용 Dart 파일이 `package:web`를 직접 import하지 않게 유지한다.
- [ ] browser `Notification` API 접근은 `package:web` 기반 web-only interop wrapper로 분리한다.
- [ ] web baseline unit/analyze 검증을 추가 또는 보강한다.
- [ ] `cd packages/messaging_flutter && flutter pub get`, `cd packages/messaging_flutter && flutter test`, `cd packages/messaging_flutter && flutter analyze --no-fatal-infos`를 실행한다.
- [ ] CODE_REVIEW-*-G??.md의 구현 에이전트 소유 섹션을 실제 구현 내용과 검증 출력으로 채운다. 이 항목이 완료되기 전에는 구현이 완료된 것이 아니다.
## 코드리뷰 전용 체크리스트
> **[REVIEW AGENT ONLY]** 이 체크리스트는 코드리뷰 에이전트만 사용한다.
- [ ] `코드리뷰 결과``PASS`, `WARN`, `FAIL` 중 하나의 판정을 append한다.
- [ ] predecessor `01_api_options` complete.log가 실제로 있었는지 확인한다.
- [ ] active `CODE_REVIEW-*-G??.md``code_review_local_G06_N.log`로 아카이브한다.
- [ ] active `PLAN-*-G??.md``plan_local_G06_M.log`로 아카이브한다.
- [ ] PASS이면 `complete.log`를 작성하고 active `.md` 파일을 남기지 않는다.
- [ ] PASS이면 active task 디렉터리를 `agent-task/archive/YYYY/MM/m-flutter-web-notification/02+01_web_plugin_baseline/`로 이동한다.
- [ ] PASS이면 task group이 `m-flutter-web-notification`임을 런타임 완료 이벤트 메타데이터에 보고한다.
## 계획 대비 변경 사항
_구현 에이전트가 계획과 다르게 구현한 부분을 이유와 함께 기록한다._
## 주요 설계 결정
_구현 에이전트가 주요 설계 결정 사항을 기록한다._
## 사용자 리뷰 요청
_기본값은 `없음`이다. 구현 중 사용자 결정, 사용자 소유 외부 환경/secret/서비스 준비, 또는 계획 범위 변경 없이는 안전하게 진행할 수 없으면 아래 항목을 실제 내용으로 교체하고, 구현을 중단한 뒤 active 파일을 그대로 둔 채 리뷰를 요청한다._
- 상태: 없음
- 사유 유형: 없음
- 결정 필요: 없음
- 차단 근거: 없음
- 실행한 검증/명령: 없음
- 자동 후속 불가 이유: 없음
- 재개 조건: 없음
## 리뷰어를 위한 체크포인트
- `pubspec.yaml` web platform entry가 Flutter docs schema와 맞는지 확인한다.
- `package:web` import가 web-only 파일로 제한되는지 확인한다.
- `plugin-web``interop`만 Roadmap completion 대상으로 기록되는지 확인한다.
- Foreground permission/display/click behavior가 이 plan에서 과하게 구현되지 않았는지 확인한다.
## 검증 결과
_구현 에이전트가 각 중간 검증 및 최종 검증 명령 실행 후 출력을 여기에 붙여 넣는다._
### WEBPLUGIN-1 중간 검증
```text
$ cd packages/messaging_flutter && flutter pub get
(output)
$ cd packages/messaging_flutter && flutter analyze --no-fatal-infos
(output)
```
### WEBPLUGIN-2 중간 검증
```text
$ cd packages/messaging_flutter && flutter analyze --no-fatal-infos
(output)
```
### 최종 검증
```text
$ cd packages/messaging_flutter && flutter pub get
(output)
$ cd packages/messaging_flutter && flutter test
(output)
$ cd packages/messaging_flutter && flutter analyze --no-fatal-infos
(output)
```
---
> **[IMPLEMENTING AGENT — BEFORE SAVING] Have you filled in every implementation-owned section: completion table, implementation checklist, changes from plan, design decisions, and verification output?**

View file

@ -53,7 +53,7 @@ copying upstream mobile code.
| iOS | Stub | Plugin scaffold exists, behavior is not implemented yet |
| macOS | Stub | Plugin scaffold exists; user-provided signing, machine, APNs/Firebase scope, and evidence handoff requirements are documented in [`../../docs/macos-notification-test-guide.md`](../../docs/macos-notification-test-guide.md) |
| Windows | Not registered | No Flutter plugin scaffold yet; user-provided Windows runner, packaging, identity, signing, and evidence handoff requirements are documented in [`../../docs/windows-notification-test-guide.md`](../../docs/windows-notification-test-guide.md) |
| Web | Planned | Browser foreground notification (display/open routing while tab is active) is the first web milestone. Full Web Push (service worker, VAPID, server device-token registration) follows. API baseline (`NexoMessagingInitializeOptions`, token prefix boundaries) is available in this version. |
| Web | Baseline | Plugin registration (`NexoMessagingWeb.registerWith()`), `package:web` dependency, and browser Notification interop boundary (`BrowserNotificationInterop`) are in place. Public permission/request/display APIs are reserved for a future Epic. Full Web Push (service worker, VAPID, server device-token registration) follows. |
## Repository Layout
@ -291,13 +291,22 @@ through the open connection.
**Full Web Push** (a future milestone) will introduce service-worker handling,
VAPID keys, and a `core/push-proxy` contract. That milestone will use the
reserved token prefix `web_rn-v2:<raw-push-token>` for server device-token
registration. Until that milestone lands:
registration.
- `NexoMessagingTokenPrefix.webV2` is a documentation-only constant.
- No web implementation files, `package:web` dependency, or browser
`Notification.requestPermission()` / `Notification.showNotification()` calls
are present in this package.
- Those are tracked under the subsequent `02+01_web_plugin_baseline` task.
`02+01_web_plugin_baseline` has delivered:
- Flutter web plugin registration (`NexoMessagingWeb.registerWith()`).
- `package:web: ^1.1.1` as a dependency.
- A web-only browser Notification interop boundary
(`BrowserNotificationInterop` / `BrowserNotificationInteropImpl`) exposing
`permission` and `requestPermission()`.
- `lib/src/web/` imports are confined to web-only files; common Dart code does
not import `package:web`.
Remaining for the foreground Epic:
- Public permission / display / click routing APIs.
- Notification event forwarding through the main plugin stream.
## Public API Contract
@ -652,8 +661,11 @@ Evidence to capture:
- Android is the only implemented runtime target.
- iOS and macOS are scaffolded but no-op.
- Web is planned: API baseline (`NexoMessagingInitializeOptions`, token prefix
constants) is ready; browser foreground notification and Full Web Push
implementation are tracked in subsequent milestones.
- Web baseline (`NexoMessagingWeb.registerWith()`, `BrowserNotificationInterop`,
`package:web` dependency) is implemented. However:
- Public permission / display / click routing APIs are not yet exposed.
- Notification events are not yet forwarded through the main plugin stream.
- Full Web Push (service worker, VAPID, server device-token registration) is
not implemented.
- Full FCM delivery cannot be reliably automated in a headless test runner.
- The `apps/flutter-test/` app should stay focused on package integration behavior.

View file

@ -0,0 +1,25 @@
import 'package:flutter_web_plugins/flutter_web_plugins.dart';
import 'web/browser_notification_interop.dart';
import 'web/browser_notification_interop_web.dart';
/// Web platform implementation for the nexo_messaging plugin.
///
/// This file is **web-only** and should never be imported by
/// Android/iOS/macOS common Dart code. It registers this plugin as a
/// Flutter web plugin so that consuming web apps resolve the web
/// implementation automatically through the generated registrant.
///
/// Foreground permission, notification display, click routing,
/// service-worker, and VAPID logic are wired in later tasks.
class NexoMessagingWeb {
/// The browser notification interop instance used by this plugin.
/// On web builds this resolves to [BrowserNotificationInteropImpl].
static BrowserNotificationInterop interop = const BrowserNotificationInteropImpl();
/// Register this plugin for web platforms.
static void registerWith(Registrar registrar) {
// Baseline registration: future tasks will attach interop
// mappers (permission request, display, event routing) here.
}
}

View file

@ -0,0 +1,21 @@
/// Web-only browser Notification API interop boundary.
///
/// This is a **dumb interface / abstract shell**. On the VM side (Android/iOS/
/// macOS) there is no implementation file; the symbol is never resolved because
/// only a web-specific build variant (`*_web.dart`) is included via conditional
/// imports in the actual web plugin entry point.
///
/// This file must NOT import `package:web`. Keep it import-free of
/// platform-specific interop libraries so that VM analyzers do not choke on it.
abstract class BrowserNotificationInterop {
const BrowserNotificationInterop();
/// Current browser notification permission state (`granted`, `denied`, or
/// `default`).
String get permission;
/// Request notification permission from the user.
///
/// Returns the resulting permission state string after the browser prompt.
Future<String> requestPermission();
}

View file

@ -0,0 +1,22 @@
import 'dart:js_interop';
import 'package:web/web.dart' as web;
import 'browser_notification_interop.dart';
/// Web-specific browser Notification API interop using `package:web`.
///
/// This file is reached from the Flutter web plugin entry point, not from
/// Android/iOS/macOS common Dart code.
class BrowserNotificationInteropImpl extends BrowserNotificationInterop {
const BrowserNotificationInteropImpl();
@override
String get permission => web.Notification.permission.toString();
@override
Future<String> requestPermission() async {
final result = await web.Notification.requestPermission().toDart;
return result.toDart;
}
}

View file

@ -11,7 +11,10 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_web_plugins:
sdk: flutter
firebase_messaging: ^15.2.5
web: ^1.1.1
dev_dependencies:
flutter_test:
@ -28,3 +31,6 @@ flutter:
pluginClass: NexoMessagingPlugin
macos:
pluginClass: NexoMessagingPlugin
web:
pluginClass: NexoMessagingWeb
fileName: src/nexo_messaging_web.dart