@ohos-cpf/3rdloop 0.0.1
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/README.md +425 -0
- package/bin/3rdloop.mjs +48 -0
- package/lib/cli.js +741 -0
- package/lib/config.js +318 -0
- package/lib/doctor.js +114 -0
- package/lib/exit-codes.js +31 -0
- package/lib/opencode.js +156 -0
- package/lib/orch.js +427 -0
- package/lib/queries.js +264 -0
- package/lib/runner.js +979 -0
- package/lib/step.js +326 -0
- package/lib/ui.js +223 -0
- package/lib/workflow.js +291 -0
- package/lib/workflows.js +132 -0
- package/package.json +50 -0
- package/vendor/Server/Agent/SkillSelector/README.md +344 -0
- package/vendor/Server/Agent/SkillSelector/core/Agent.js +207 -0
- package/vendor/Server/Agent/SkillSelector/index.js +14 -0
- package/vendor/Server/Agent/SkillSelector/llm/llmClient.js +313 -0
- package/vendor/Server/Agent/SkillSelector/llm/prompts.js +161 -0
- package/vendor/Server/Agent/SkillSelector/llm/reactSteps.js +144 -0
- package/vendor/Server/Agent/SkillSelector/matcher/fuzzyMatcher.js +433 -0
- package/vendor/Server/Agent/SkillSelector/scanner/skillScanner.js +382 -0
- package/vendor/Server/Agent/SkillSelector/types.js +63 -0
- package/vendor/Server/Agent/SkillSelector/utils/actionWords.js +60 -0
- package/vendor/Server/Brain/AnalysisStrategies.js +422 -0
- package/vendor/Server/Brain/Brain.js +686 -0
- package/vendor/Server/Brain/DecompositionStrategies.js +621 -0
- package/vendor/Server/Brain/PlanPersistence.js +196 -0
- package/vendor/Server/Brain/SkillExecutor.js +251 -0
- package/vendor/Server/Brain/index.js +11 -0
- package/vendor/Server/CLI/cli.js +243 -0
- package/vendor/Server/CLI/opencode/index.js +804 -0
- package/vendor/Server/CLI/opencode.js +5 -0
- package/vendor/Server/DbUse/MessageArchive.js +61 -0
- package/vendor/Server/DbUse/StorageManager.js +107 -0
- package/vendor/Server/DbUse/adapters/BaseAdapter.js +94 -0
- package/vendor/Server/DbUse/adapters/FileAdapter.js +138 -0
- package/vendor/Server/DbUse/adapters/JsonAdapter.js +138 -0
- package/vendor/Server/DbUse/adapters/JsonlAdapter.js +114 -0
- package/vendor/Server/DbUse/adapters/SqliteAdapter.js +157 -0
- package/vendor/Server/DbUse/index.js +160 -0
- package/vendor/Server/DbUse/stores/SessionStore.js +279 -0
- package/vendor/Server/DbUse/stores/TaskExecutionStore.js +133 -0
- package/vendor/Server/DbUse/stores/TaskRegistryStore.js +262 -0
- package/vendor/Server/DbUse/stores/TaskStepStore.js +279 -0
- package/vendor/Server/FlexRunner/FlexRunner.js +1759 -0
- package/vendor/Server/FlexRunner/index.js +12 -0
- package/vendor/Server/Knowledge/KnowledgeImporter.js +523 -0
- package/vendor/Server/Knowledge/KnowledgeManager.js +341 -0
- package/vendor/Server/Knowledge/index.js +33 -0
- package/vendor/Server/LoopEngine/LoopEngine.js +1133 -0
- package/vendor/Server/LoopEngine/index.js +11 -0
- package/vendor/Server/Orchestrator/Orchestrator.js +1425 -0
- package/vendor/Server/Orchestrator/StepNode.js +312 -0
- package/vendor/Server/Orchestrator/index.js +13 -0
- package/vendor/Server/Routes/controllers/BrainController.js +241 -0
- package/vendor/Server/Routes/controllers/FlexRunnerController.js +1125 -0
- package/vendor/Server/Routes/controllers/HealthController.js +44 -0
- package/vendor/Server/Routes/controllers/KnowledgeImportController.js +355 -0
- package/vendor/Server/Routes/controllers/LoopEngineController.js +788 -0
- package/vendor/Server/Routes/controllers/OrchestratorController.js +911 -0
- package/vendor/Server/Routes/controllers/StatsController.js +57 -0
- package/vendor/Server/Routes/controllers/StreamController.js +67 -0
- package/vendor/Server/Routes/library/logger.js +179 -0
- package/vendor/Server/Routes/library/zipArchive.js +172 -0
- package/vendor/Server/Routes/router/Router.js +204 -0
- package/vendor/Server/Routes/routes/brain.js +47 -0
- package/vendor/Server/Routes/routes/flexrunner.js +72 -0
- package/vendor/Server/Routes/routes/health.js +28 -0
- package/vendor/Server/Routes/routes/index.js +57 -0
- package/vendor/Server/Routes/routes/knowledge.js +55 -0
- package/vendor/Server/Routes/routes/loopengine.js +58 -0
- package/vendor/Server/Routes/routes/orchestrator.js +61 -0
- package/vendor/Server/Routes/routes/registry.js +98 -0
- package/vendor/Server/Routes/routes/stats.js +23 -0
- package/vendor/Server/Routes/routes/stream.js +30 -0
- package/vendor/Server/Routes/server.js +202 -0
- package/vendor/Server/Routes/sse/SseHub.js +308 -0
- package/vendor/Server/Skills/acceptance-check/SKILL.md +174 -0
- package/vendor/Server/Skills/acceptance-check/references/PHASE1_ARTIFACT_COLLECTION.md +52 -0
- package/vendor/Server/Skills/acceptance-check/references/PHASE2_CRITERIA_EVALUATION.md +77 -0
- package/vendor/Server/Skills/arkts-code-check/SKILL.md +314 -0
- package/vendor/Server/Skills/arkts-code-check/references/CODE_CHECK_GUIDE.md +160 -0
- package/vendor/Server/Skills/arkts-code-check/references/FILE_TYPE_GUIDE.md +29 -0
- package/vendor/Server/Skills/arkts-code-check/references/PHASE1_INFO_COLLECTION.md +222 -0
- package/vendor/Server/Skills/arkts-code-check/references/REPORT_TEMPLATE.md +220 -0
- package/vendor/Server/Skills/arkts-library-compile-validate/SKILL.md +329 -0
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/build.ps1 +93 -0
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/code-linter.cjs +433 -0
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/migrate.cjs +851 -0
- package/vendor/Server/Skills/arkts-library-compile-validate/scripts/ohpm-switch.cjs +789 -0
- package/vendor/Server/Skills/arkts-library-demo-code/SKILL.md +291 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/API_SIGNATURE_CHECKS.md +68 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/BUILD_VALIDATION.md +184 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/CODE_STANDARDS.md +337 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/EXAMPLES.md +400 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/SYSTEM_API_LOOKUP.md +99 -0
- package/vendor/Server/Skills/arkts-library-demo-code/references/TEMPLATE.md +544 -0
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/build.ps1 +93 -0
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/code-linter.cjs +433 -0
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/migrate.cjs +851 -0
- package/vendor/Server/Skills/arkts-library-demo-code/scripts/ohpm-switch.cjs +789 -0
- package/vendor/Server/Skills/arkts-library-demo-coverage/SKILL.md +174 -0
- package/vendor/Server/Skills/arkts-library-demo-scenario/SKILL.md +321 -0
- package/vendor/Server/Skills/arkts-library-demo-scenario/references/EXAMPLES.md +100 -0
- package/vendor/Server/Skills/arkts-library-demo-scenario/references/TEMPLATE.md +185 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/SKILL.md +234 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/assets/REPORT_TEMPLATE.md +103 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/CHECK_DIMENSIONS.md +89 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/COMPLIANCE_CHECKLIST.md +62 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/KB_QUERY_GUIDE.md +108 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/MCP_TOOL_DISCOVERY.md +124 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/REPORT_TEMPLATE.md +90 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/references/SCORING_FORMULA.md +57 -0
- package/vendor/Server/Skills/arkts-library-documentation-quality-check/scripts/validate-skill.cjs +259 -0
- package/vendor/Server/Skills/arkts-library-interface-spec/SKILL.md +97 -0
- package/vendor/Server/Skills/arkts-library-memory-leak-check/SKILL.md +392 -0
- package/vendor/Server/Skills/arkts-library-source-clone/SKILL.md +113 -0
- package/vendor/Server/Skills/arkts-library-stability-check/SKILL.md +313 -0
- package/vendor/Server/Skills/arkts-library-stability-check/assets/REPORT_TEMPLATE.md +154 -0
- package/vendor/Server/Skills/arkts-library-stability-check/references/CHECKLIST.md +166 -0
- package/vendor/Server/Skills/arkts-library-stability-check/references/CODE_EXAMPLES.md +309 -0
- package/vendor/Server/Skills/arkts-library-stability-check/references/SCORING_RULES.md +90 -0
- package/vendor/Server/Skills/arkts-library-stability-check/scripts/validate-skill.cjs +282 -0
- package/vendor/Server/Skills/arkts-library-test-coverage-check/SKILL.md +361 -0
- package/vendor/Server/Skills/arkts-library-test-coverage-check/assets/REPORT_TEMPLATE.md +146 -0
- package/vendor/Server/Skills/arkts-library-test-coverage-check/references/CHECKLIST.md +253 -0
- package/vendor/Server/Skills/arkts-library-test-coverage-check/references/MCP_TOOL_USAGE.md +115 -0
- package/vendor/Server/Skills/arkts-library-test-coverage-check/scripts/validate-skill.cjs +263 -0
- package/vendor/Server/Skills/arkts-library-xts-code/SKILL.md +455 -0
- package/vendor/Server/Skills/arkts-library-xts-code/assets/report-template.md +60 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/ACCESS_MODIFIER_PRECHECK.md +76 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/BUILD_VERIFICATION.md +200 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/CODE_STANDARDS.md +519 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/SUBAGENT_PROMPT_TEMPLATE.md +276 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/SYSTEM_API_LOOKUP.md +93 -0
- package/vendor/Server/Skills/arkts-library-xts-code/references/XTS_TEMPLATE.md +767 -0
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/build.ps1 +93 -0
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/code-linter.cjs +433 -0
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/migrate.cjs +851 -0
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/ohpm-switch.cjs +789 -0
- package/vendor/Server/Skills/arkts-library-xts-code/scripts/precheck-access-modifiers.cjs +221 -0
- package/vendor/Server/Skills/arkts-library-xts-code-fix/SKILL.md +229 -0
- package/vendor/Server/Skills/arkts-library-xts-coverage/SKILL.md +97 -0
- package/vendor/Server/Skills/arkts-library-xts-doc/SKILL.md +194 -0
- package/vendor/Server/Skills/arkts-library-xts-doc/references/EXAMPLES.md +576 -0
- package/vendor/Server/Skills/arkts-library-xts-doc/references/TEMPLATE.md +575 -0
- package/vendor/Server/Skills/arkts-library-xts-doc/references/TESTABILITY_GUIDE.md +182 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/SKILL.md +491 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/references/error-fixing-examples.md +217 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/build.ps1 +93 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/code-linter.cjs +433 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/migrate.cjs +851 -0
- package/vendor/Server/Skills/arkts-library-xts-execution/scripts/ohpm-switch.cjs +789 -0
- package/vendor/Server/Skills/flutter-code-check/SKILL.md +299 -0
- package/vendor/Server/Skills/flutter-code-check/assets/OUTPUT_TEMPLATE.md +312 -0
- package/vendor/Server/Skills/flutter-code-check/references/CHECKLIST.md +190 -0
- package/vendor/Server/Skills/flutter-code-check/references/PLATFORMS.md +134 -0
- package/vendor/Server/Skills/flutter-code-check/scripts/validate-skill.cjs +259 -0
- package/vendor/Server/Skills/flutter-interface/README.md +75 -0
- package/vendor/Server/Skills/flutter-interface/SKILL.md +291 -0
- package/vendor/Server/Skills/flutter-interface/references/EXAMPLES.md +336 -0
- package/vendor/Server/Skills/flutter-interface/references/GIT_CLONE_GUIDE.md +190 -0
- package/vendor/Server/Skills/flutter-interface/references/SCRIPT_REFERENCE.md +258 -0
- package/vendor/Server/Skills/flutter-interface/references/TEMPLATE.md +254 -0
- package/vendor/Server/Skills/flutter-library-consistency-check/SKILL.md +518 -0
- package/vendor/Server/Skills/flutter-library-consistency-check/references/CHECKLIST.md +382 -0
- package/vendor/Server/Skills/flutter-library-consistency-check/references/FUNCTION_COMPARISON_GUIDE.md +342 -0
- package/vendor/Server/Skills/flutter-library-consistency-check/references/PLATFORM_LIMITATION_GUIDE.md +71 -0
- package/vendor/Server/Skills/flutter-library-documentation-quality-check/SKILL.md +519 -0
- package/vendor/Server/Skills/flutter-library-documentation-quality-check/references/CHECKLIST.md +407 -0
- package/vendor/Server/Skills/flutter-library-memory-leak-check/SKILL.md +653 -0
- package/vendor/Server/Skills/flutter-library-memory-leak-check/references/CHECKLIST.md +397 -0
- package/vendor/Server/Skills/flutter-library-stability-check/SKILL.md +745 -0
- package/vendor/Server/Skills/flutter-library-stability-check/references/CHECKLIST.md +721 -0
- package/vendor/Server/Skills/flutter-library-test-coverage-check/SKILL.md +414 -0
- package/vendor/Server/Skills/flutter-library-test-coverage-check/assets/REPORT_TEMPLATE.md +150 -0
- package/vendor/Server/Skills/flutter-library-test-coverage-check/references/CHECKLIST.md +304 -0
- package/vendor/Server/Skills/flutter-library-test-coverage-check/references/SCORING_RULES.md +265 -0
- package/vendor/Server/Skills/flutter-library-test-coverage-check/references/SCRIPT_USAGE.md +286 -0
- package/vendor/Server/Skills/knowledge-import/SKILL.md +383 -0
- package/vendor/Server/Skills/knowledge-import/references/MCP_TOOL_USAGE.md +165 -0
- package/vendor/Server/Skills/knowledge-import/references/SKILL_LOCATOR_GUIDE.md +91 -0
- package/vendor/Server/Skills/knowledge-import/references/SKILL_OPTIMIZATION_GUIDE.md +127 -0
- package/vendor/Server/Skills/ohos-lib-pr-push/SKILL.md +301 -0
- package/vendor/Server/Skills/ohos-lib-pr-push/assets/PR_ISSUE_TEMPLATE.md +105 -0
- package/vendor/Server/Skills/ohos-lib-pr-push/references/GITCODE_API.md +127 -0
- package/vendor/Server/Skills/ohos-lib-pr-push/scripts/gitcode-api.cjs +208 -0
- package/vendor/Server/Skills/rn-code-check/SKILL.md +321 -0
- package/vendor/Server/Skills/rn-code-check/references/API-GUIDE.md +235 -0
- package/vendor/Server/Skills/rn-code-check/references/CHECKLIST.md +189 -0
- package/vendor/Server/Skills/rn-code-check/references/REPORT-TEMPLATE.md +247 -0
- package/vendor/Server/Skills/rn-lib-add-example/SKILL.md +198 -0
- package/vendor/Server/Skills/rn-lib-add-example/references/APP_RENAME_GUIDE.md +40 -0
- package/vendor/Server/Skills/rn-lib-add-example/references/SHELL_ADAPTATION_CHECKLIST.md +78 -0
- package/vendor/Server/Skills/rn-lib-add-example/references/TEMPLATE_REPO_GUIDE.md +70 -0
- package/vendor/Server/Skills/rn-lib-add-example/references/VERIFICATION_GUIDE.md +47 -0
- package/vendor/Server/Skills/rn-lib-add-example/scripts/create-example.cjs +252 -0
- package/vendor/Server/Skills/rn-lib-update-doc/SKILL.md +176 -0
- package/vendor/Server/Skills/rn-lib-update-doc/config.json +5 -0
- package/vendor/Server/Skills/rn-lib-update-doc/references/changelog-template.md +35 -0
- package/vendor/Server/Skills/rn-lib-update-doc/references/format-diff.md +137 -0
- package/vendor/Server/Skills/rn-lib-update-doc/references/link-registry.json +33 -0
- package/vendor/Server/Skills/rn-lib-update-doc/references/model-0.4.2-overview.md +40 -0
- package/vendor/Server/Skills/rn-lib-update-doc/references/model-0.4.2.md +429 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/detect-readme-format.cjs +105 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/find-usage-doc.cjs +90 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/link-verify.cjs +213 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/normalize-changelog.cjs +73 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/normalize-package-meta.cjs +258 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/normalize-readme-links.cjs +341 -0
- package/vendor/Server/Skills/rn-lib-update-doc/scripts/resolve-usage-docs.cjs +67 -0
- package/vendor/Server/Skills/rn-library-consistency-check/SKILL.md +299 -0
- package/vendor/Server/Skills/rn-library-consistency-check/assets/REPORT_TEMPLATE.md +293 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/ARKTS_COMPONENT_CHECK_GUIDE.md +857 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/ARKTS_TURBOMODULE_CHECK_GUIDE.md +856 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/CHECKLIST.md +157 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/CPP_COMPONENT_CHECK_GUIDE.md +801 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/CPP_TURBOMODULE_CHECK_GUIDE.md +684 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/FUNCTION_COMPARISON_GUIDE.md +233 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/NATIVE_COMPONENT_IDENTIFICATION.md +1373 -0
- package/vendor/Server/Skills/rn-library-consistency-check/references/SCORING_STANDARD.md +220 -0
- package/vendor/Server/Skills/rn-library-consistency-check/scripts/validate-skill.py +245 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/SKILL.md +263 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/assets/MODEL.md +414 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/assets/MODEL_en.md +413 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/assets/REPORT_TEMPLATE.md +311 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/CHECK_CHECKLIST.md +355 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/CROSS_VALIDATION_GUIDE.md +115 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/DOC_COLLECTION_GUIDE.md +139 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/EXAMPLES.md +586 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/references/GOTCHAS.md +57 -0
- package/vendor/Server/Skills/rn-library-documentation-quality-check/scripts/validate-skill.py +259 -0
- package/vendor/Server/Skills/rn-library-interface-analyzer/SKILL.md +301 -0
- package/vendor/Server/Skills/rn-library-interface-analyzer/assets/REPORT_TEMPLATE.md +148 -0
- package/vendor/Server/Skills/rn-library-interface-analyzer/references/DOC_ANNOTATION_GUIDE.md +118 -0
- package/vendor/Server/Skills/rn-library-interface-analyzer/references/SCRIPT_USAGE_GUIDE.md +168 -0
- package/vendor/Server/Skills/rn-library-interface-analyzer/references/URL_PARSING_RULES.md +176 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/SKILL.md +274 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/assets/case-template.md +45 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/assets/rule-template.md +25 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/references/PR_FETCH_GUIDE.md +61 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/references/RULE_TEMPLATE_GUIDE.md +165 -0
- package/vendor/Server/Skills/rn-library-issue-generalizer/scripts/fetch-pr-info.py +239 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/SKILL.md +263 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/assets/REPORT_TEMPLATE.md +96 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/references/COMPLIANCE_CHECKLIST.md +58 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/references/INSPECTION_GUIDE.md +99 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/references/PRESCREEN_GUIDE.md +64 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/references/SOURCE_PREP_GUIDE.md +75 -0
- package/vendor/Server/Skills/rn-library-known-issue-check/scripts/validate-known-issue-report.py +164 -0
- package/vendor/Server/Skills/rn-library-memory-leak-check/SKILL.md +339 -0
- package/vendor/Server/Skills/rn-library-memory-leak-check/assets/REPORT_TEMPLATE.md +83 -0
- package/vendor/Server/Skills/rn-library-memory-leak-check/references/CHECKLIST.md +859 -0
- package/vendor/Server/Skills/rn-library-memory-leak-check/references/HARMONY_CODE_PATTERNS.md +122 -0
- package/vendor/Server/Skills/rn-library-memory-leak-check/scripts/scan_harmony_code.py +279 -0
- package/vendor/Server/Skills/rn-library-stability-check/SKILL.md +273 -0
- package/vendor/Server/Skills/rn-library-stability-check/assets/REPORT_TEMPLATE.md +129 -0
- package/vendor/Server/Skills/rn-library-stability-check/references/CHECKLIST.md +581 -0
- package/vendor/Server/Skills/rn-library-stability-check/references/SCORING_RULES.md +138 -0
- package/vendor/Server/Skills/rn-library-stability-check/scripts/scan-harmony-code.py +168 -0
- package/vendor/Server/Skills/rn-library-test-coverage-check/SKILL.md +506 -0
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/CHECKLIST.md +280 -0
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/DEMO_LOCATION.md +221 -0
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/REPORT_TEMPLATE.md +209 -0
- package/vendor/Server/Skills/rn-library-test-coverage-check/references/SCRIPT_USAGE.md +325 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/SKILL.md +279 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/assets/TEST_FILE_TEMPLATES.md +404 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/BUILD_TROUBLESHOOTING.md +185 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/BUILD_WORKFLOW.md +265 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/COMMON_CONFIG.md +189 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/CONFIG_GUIDE.md +203 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/COVERAGE_ANALYZER.md +147 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/DESIGN_DOC_GUIDE.md +148 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/GENERATION_FLOW.md +165 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/GENERATION_STRATEGY.md +195 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/HARMONY_SCANNER.md +249 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/JEST_FRAMEWORK.md +235 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/PLATFORM_COMPAT.md +161 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/RN_TEST_PATTERNS.md +413 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/SOURCE_PARSER.md +235 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/TEST_CONVENTIONS.md +245 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/TROUBLESHOOTING.md +282 -0
- package/vendor/Server/Skills/rn-ohos-xts-generator/references/USAGE_GUIDE.md +251 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/SKILL.md +469 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/assets/CPTF_TEST_TEMPLATE.md +310 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/assets/DEMO_PAGE_TEMPLATE.md +303 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/CPTF_TEST_GENERATION_GUIDE.md +421 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/DEMO_GENERATION_GUIDE.md +358 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/QUALITY_CHECKLIST.md +114 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/references/SPEC_PARSING_GUIDE.md +274 -0
- package/vendor/Server/Skills/rnoh-cptf-api-test/scripts/validate-rnoh-cptf-api-test.sh +185 -0
- package/vendor/Server/Skills/rnoh-cptf-demo-test/SKILL.md +191 -0
- package/vendor/Server/Skills/rnoh-cptf-demo-test/assets/TEST_TEMPLATE.md +216 -0
- package/vendor/Server/Skills/rnoh-cptf-demo-test/references/CPTF_SETUP.md +107 -0
- package/vendor/Server/Skills/rnoh-cptf-demo-test/references/DEMO_ANALYSIS.md +120 -0
- package/vendor/Server/Skills/rnoh-cptf-demo-test/scripts/validate-rnoh-cptf-test.sh +108 -0
- package/vendor/Server/Skills/rnoh-cptf-test-run/SKILL.md +237 -0
- package/vendor/Server/Skills/rnoh-cptf-test-run/references/DEBUG_PLAYBOOK.md +261 -0
- package/vendor/Server/Skills/rnoh-cptf-test-run/scripts/validate-run-env.sh +112 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/SKILL.md +498 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/adapt-checklist.md +270 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/api-migration-checklist.md +164 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/common-compile-errors.md +556 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/deveco-cli-tools.md +459 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/edge-cases.md +65 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/har-tgz-build.md +512 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/references/version-compat-matrix.md +132 -0
- package/vendor/Server/Skills/rnoh-lib-code-adapt/scripts/auto-integrate.sh +424 -0
- package/vendor/Server/Skills/rnoh-lib-demo-coverage/SKILL.md +137 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/SKILL.md +306 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/assets/DEMO_PAGE_TEMPLATE.md +485 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/assets/INDEX_TEMPLATE.md +172 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/references/DEMO_CODE_RULES.md +422 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/references/QUALITY_CHECKLIST.md +95 -0
- package/vendor/Server/Skills/rnoh-lib-demo-create/references/SOURCE_EXPLORATION.md +169 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/SKILL.md +554 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/assets/DEMO_DOC_TEMPLATE.md +106 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/COVERAGE_INCREMENTAL.md +216 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/DEMO_DESIGN_RULES.md +413 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/OUTPUT_FORMAT.md +269 -0
- package/vendor/Server/Skills/rnoh-lib-demo-doc/references/QUALITY_CHECKLIST.md +98 -0
- package/vendor/Server/Skills/rnoh-lib-func-test/SKILL.md +337 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/SKILL.md +722 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/assets/PORT_REPORT_TEMPLATE.md +219 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/references/DEMO_PORTING_GUIDE.md +345 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/references/PORT_VERIFICATION.md +269 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/references/RNT_PROJECT_STRUCTURE.md +173 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/analyze-demo-deps.cjs +267 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/detect-rnoh-version.cjs +174 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/find-rnt-demo.sh +111 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/port-demo.sh +186 -0
- package/vendor/Server/Skills/rnoh-lib-rnt-search/scripts/read-lib-meta.cjs +150 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/SKILL.md +296 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/references/jest-troubleshooting.md +371 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/references/port-test-demo-guide.md +212 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/references/runtime-troubleshooting.md +345 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/references/unit-test-template.md +223 -0
- package/vendor/Server/Skills/rnoh-lib-test-align/scripts/port-test-demo.sh +1053 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/SKILL.md +255 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/references/OHOS_ADAPTATION.md +77 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/references/OHOS_API_LOOKUP.md +224 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/references/script-reference.md +174 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/scripts/detect-upstream-version.js +967 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/scripts/generate-diff.js +1798 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/scripts/package.json +5 -0
- package/vendor/Server/Skills/rnoh-lib-version-diff/templates/report-template.md +137 -0
- package/vendor/Server/Skills/rnoh-lib-xts-coverage/SKILL.md +145 -0
- package/vendor/Server/Skills/skill-generator/SKILL.md +365 -0
- package/vendor/Server/Skills/skill-generator/assets/SKILL_TEMPLATE.md +183 -0
- package/vendor/Server/Skills/skill-generator/references/COMPLIANCE_CHECKLIST.md +82 -0
- package/vendor/Server/Skills/skill-generator/references/KB_QUERY_GUIDE.md +110 -0
- package/vendor/Server/Skills/skill-generator/references/MCP_TOOL_DISCOVERY.md +122 -0
- package/vendor/Server/Skills/skill-generator/references/SKILL_SPEC.md +121 -0
- package/vendor/Server/Skills/skill-generator/scripts/validate-skill.cjs +259 -0
- package/vendor/Server/Skills/task-analysis/SKILL.md +234 -0
- package/vendor/Server/Skills/task-analysis/assets/OUTPUT_EXAMPLES.md +160 -0
- package/vendor/Server/Skills/task-analysis/references/ACCEPTANCE_CRITERIA_GUIDE.md +190 -0
- package/vendor/Server/Skills/task-analysis/references/ANALYSIS_SCHEMA.md +224 -0
- package/vendor/Server/Skills/task-analysis/references/INTEGRATION_CONTEXT.md +162 -0
- package/vendor/Server/Skills/task-analysis/references/LESSONS_LEARNED.md +55 -0
- package/vendor/Server/Skills/task-analysis/references/REPLAN_CONTEXT_GUIDE.md +126 -0
- package/vendor/Server/Skills/task-analysis/scripts/validate-analysis-output.sh +256 -0
- package/vendor/Server/Skills/task-decomposition/SKILL.md +529 -0
- package/vendor/Server/Skills/task-decomposition/assets/OUTPUT_EXAMPLES.md +451 -0
- package/vendor/Server/Skills/task-decomposition/references/ACCEPTANCE_CRITERIA_GUIDE.md +179 -0
- package/vendor/Server/Skills/task-decomposition/references/DEPENDENCY_GRAPH_GUIDE.md +152 -0
- package/vendor/Server/Skills/task-decomposition/references/INTEGRATION_CONTEXT.md +175 -0
- package/vendor/Server/Skills/task-decomposition/references/REPLAN_CONTEXT_GUIDE.md +195 -0
- package/vendor/Server/Skills/task-decomposition/references/TASK_DECOMPOSITION_TEMPLATES.md +226 -0
- package/vendor/Server/Skills/task-decomposition/scripts/list-available-skills.cjs +263 -0
- package/vendor/Server/Skills/task-decomposition/scripts/skill-blacklist.json +29 -0
- package/vendor/Server/Skills/task-decomposition/scripts/validate-decomposition-output.cjs +376 -0
- package/vendor/Server/Skills/task-decomposition/scripts/validate-param-consistency.cjs +259 -0
- package/vendor/Server/Skills/task-decomposition/scripts/validate-specified-skills.cjs +216 -0
- package/vendor/Server/Skills/task-decomposition/scripts/validate-step-graph.cjs +425 -0
- package/vendor/Server/Skills/tpc-cpp-check/SKILL.md +427 -0
- package/vendor/Server/Skills/tpc-cpp-check/references/CHECKLIST.md +214 -0
- package/vendor/Server/Skills/tpc-cpp-check/references/HPKBUILD_GUIDE.md +235 -0
- package/vendor/Server/Skills/tpc-cpp-check/references/REPORT_TEMPLATE.md +250 -0
- package/vendor/Server/TestCheck/TestCheck.js +775 -0
- package/vendor/Server/TestCheck/index.js +11 -0
- package/vendor/Server/library/McpToolGuide.js +280 -0
- package/vendor/Server/library/StatsService.js +127 -0
- package/vendor/Server/library/cstTime.js +16 -0
- package/vendor/Server/package.json +17 -0
- package/vendor/VERSION +3 -0
- package/workflows/pr-check.mjs +106 -0
|
@@ -0,0 +1,485 @@
|
|
|
1
|
+
# Demo 页面模板
|
|
2
|
+
|
|
3
|
+
> 生成 Demo 页面 .tsx 文件时可直接复制此模板,替换 `{占位符}` 内容。
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 标准 Demo 页面模板
|
|
8
|
+
|
|
9
|
+
```tsx
|
|
10
|
+
import React, { useCallback, useEffect, useRef, useState } from 'react';
|
|
11
|
+
import { View, Text, TouchableOpacity, StyleSheet } from 'react-native';
|
|
12
|
+
import { ComponentName } from '@react-native-ohos/{libName}';
|
|
13
|
+
|
|
14
|
+
const TAG = '{libName}_{DemoName}';
|
|
15
|
+
|
|
16
|
+
const {DemoName}Page = () => {
|
|
17
|
+
const [result, setResult] = useState<string>('');
|
|
18
|
+
const [callCount, setCallCount] = useState<number>(0);
|
|
19
|
+
const [callbackCount, setCallbackCount] = useState<number>(0);
|
|
20
|
+
|
|
21
|
+
useEffect(() => {
|
|
22
|
+
console.log(`[${TAG}] Component mounted`);
|
|
23
|
+
return () => {
|
|
24
|
+
console.log(`[${TAG}] Component unmounted`);
|
|
25
|
+
};
|
|
26
|
+
}, []);
|
|
27
|
+
|
|
28
|
+
const handleAction = useCallback(async () => {
|
|
29
|
+
setCallCount(prev => prev + 1);
|
|
30
|
+
try {
|
|
31
|
+
const res = await ComponentName.someMethod();
|
|
32
|
+
setResult(JSON.stringify(res));
|
|
33
|
+
setCallbackCount(prev => prev + 1);
|
|
34
|
+
} catch (error: any) {
|
|
35
|
+
console.warn(`[${TAG}] Failed: ${error?.message || error}`);
|
|
36
|
+
setResult(`Error: ${error?.message || error}`);
|
|
37
|
+
}
|
|
38
|
+
}, []);
|
|
39
|
+
|
|
40
|
+
return (
|
|
41
|
+
<View style={styles.container}>
|
|
42
|
+
<View style={styles.card}>
|
|
43
|
+
<Text style={styles.title}>{DemoName}</Text>
|
|
44
|
+
<TouchableOpacity style={styles.button} onPress={handleAction}>
|
|
45
|
+
<Text style={styles.buttonText}>Execute</Text>
|
|
46
|
+
</TouchableOpacity>
|
|
47
|
+
<View style={styles.resultRow}>
|
|
48
|
+
<Text style={styles.label}>Call Count:</Text>
|
|
49
|
+
<Text style={styles.value}>{callCount}</Text>
|
|
50
|
+
</View>
|
|
51
|
+
<View style={styles.resultRow}>
|
|
52
|
+
<Text style={styles.label}>Callback Count:</Text>
|
|
53
|
+
<Text style={styles.value}>{callbackCount}</Text>
|
|
54
|
+
</View>
|
|
55
|
+
<View style={styles.resultRow}>
|
|
56
|
+
<Text style={styles.label}>Result:</Text>
|
|
57
|
+
<Text style={styles.value}>{result}</Text>
|
|
58
|
+
</View>
|
|
59
|
+
</View>
|
|
60
|
+
</View>
|
|
61
|
+
);
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
const styles = StyleSheet.create({
|
|
65
|
+
container: {
|
|
66
|
+
flex: 1,
|
|
67
|
+
padding: 16,
|
|
68
|
+
backgroundColor: '#fff',
|
|
69
|
+
},
|
|
70
|
+
card: {
|
|
71
|
+
padding: 16,
|
|
72
|
+
borderRadius: 8,
|
|
73
|
+
backgroundColor: '#f5f5f5',
|
|
74
|
+
marginBottom: 12,
|
|
75
|
+
},
|
|
76
|
+
title: {
|
|
77
|
+
fontSize: 16,
|
|
78
|
+
fontWeight: 'bold',
|
|
79
|
+
color: '#333',
|
|
80
|
+
marginBottom: 12,
|
|
81
|
+
},
|
|
82
|
+
button: {
|
|
83
|
+
padding: 12,
|
|
84
|
+
borderRadius: 6,
|
|
85
|
+
backgroundColor: '#007AFF',
|
|
86
|
+
alignItems: 'center',
|
|
87
|
+
marginBottom: 12,
|
|
88
|
+
},
|
|
89
|
+
buttonText: {
|
|
90
|
+
color: '#fff',
|
|
91
|
+
fontSize: 14,
|
|
92
|
+
},
|
|
93
|
+
resultRow: {
|
|
94
|
+
flexDirection: 'row',
|
|
95
|
+
marginBottom: 4,
|
|
96
|
+
},
|
|
97
|
+
label: {
|
|
98
|
+
fontSize: 14,
|
|
99
|
+
color: '#666',
|
|
100
|
+
width: 120,
|
|
101
|
+
},
|
|
102
|
+
value: {
|
|
103
|
+
fontSize: 14,
|
|
104
|
+
color: '#333',
|
|
105
|
+
flex: 1,
|
|
106
|
+
},
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
export default {DemoName}Page;
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
## 带权限请求的 Demo 页面模板
|
|
115
|
+
|
|
116
|
+
```tsx
|
|
117
|
+
import React, { useCallback, useEffect, useState } from 'react';
|
|
118
|
+
import { View, Text, TouchableOpacity, StyleSheet } from 'react-native';
|
|
119
|
+
import { AudioRecorder } from '@react-native-ohos/{libName}';
|
|
120
|
+
|
|
121
|
+
const TAG = '{libName}_{DemoName}';
|
|
122
|
+
|
|
123
|
+
const {DemoName}Page = () => {
|
|
124
|
+
const [resultInfo, setResultInfo] = useState<string>('');
|
|
125
|
+
const [callCount, setCallCount] = useState<number>(0);
|
|
126
|
+
|
|
127
|
+
useEffect(() => {
|
|
128
|
+
console.log(`[${TAG}] Component mounted`);
|
|
129
|
+
return () => {
|
|
130
|
+
console.log(`[${TAG}] Component unmounted`);
|
|
131
|
+
};
|
|
132
|
+
}, []);
|
|
133
|
+
|
|
134
|
+
const handleAction = useCallback(async () => {
|
|
135
|
+
setCallCount(prev => prev + 1);
|
|
136
|
+
try {
|
|
137
|
+
const authorized = await AudioRecorder.requestAuthorization();
|
|
138
|
+
if (!authorized) {
|
|
139
|
+
setResultInfo('权限被拒绝,请在设置中开启');
|
|
140
|
+
return;
|
|
141
|
+
}
|
|
142
|
+
const result = await AudioRecorder.startRecording();
|
|
143
|
+
setResultInfo(`Success: ${JSON.stringify(result)}`);
|
|
144
|
+
} catch (error: any) {
|
|
145
|
+
console.warn(`[${TAG}] Failed: ${error?.message || error}`);
|
|
146
|
+
setResultInfo(`Error: ${error?.message || error}`);
|
|
147
|
+
}
|
|
148
|
+
}, []);
|
|
149
|
+
|
|
150
|
+
return (
|
|
151
|
+
<View style={styles.container}>
|
|
152
|
+
<View style={styles.card}>
|
|
153
|
+
<Text style={styles.title}>{DemoName}</Text>
|
|
154
|
+
<TouchableOpacity style={styles.button} onPress={handleAction}>
|
|
155
|
+
<Text style={styles.buttonText}>Start</Text>
|
|
156
|
+
</TouchableOpacity>
|
|
157
|
+
<Text style={styles.text}>Call Count: {callCount}</Text>
|
|
158
|
+
<Text style={styles.text}>Result: {resultInfo}</Text>
|
|
159
|
+
</View>
|
|
160
|
+
</View>
|
|
161
|
+
);
|
|
162
|
+
};
|
|
163
|
+
|
|
164
|
+
const styles = StyleSheet.create({
|
|
165
|
+
container: { flex: 1, padding: 16, backgroundColor: '#fff' },
|
|
166
|
+
card: { padding: 16, borderRadius: 8, backgroundColor: '#f5f5f5', marginBottom: 12 },
|
|
167
|
+
title: { fontSize: 16, fontWeight: 'bold', color: '#333', marginBottom: 12 },
|
|
168
|
+
button: { padding: 12, borderRadius: 6, backgroundColor: '#007AFF', alignItems: 'center', marginBottom: 12 },
|
|
169
|
+
buttonText: { color: '#fff', fontSize: 14 },
|
|
170
|
+
text: { fontSize: 14, color: '#333', marginBottom: 4 },
|
|
171
|
+
});
|
|
172
|
+
|
|
173
|
+
export default {DemoName}Page;
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
## 带计时器兜底的 Demo 页面模板
|
|
179
|
+
|
|
180
|
+
```tsx
|
|
181
|
+
import React, { useCallback, useEffect, useRef, useState } from 'react';
|
|
182
|
+
import { View, Text, TouchableOpacity, StyleSheet } from 'react-native';
|
|
183
|
+
import { AudioRecorder } from '@react-native-ohos/{libName}';
|
|
184
|
+
|
|
185
|
+
const TAG = '{libName}_{DemoName}';
|
|
186
|
+
|
|
187
|
+
const {DemoName}Page = () => {
|
|
188
|
+
const [recordingTime, setRecordingTime] = useState<number>(0);
|
|
189
|
+
const [isRecording, setIsRecording] = useState<boolean>(false);
|
|
190
|
+
const timerRef = useRef<ReturnType<typeof setInterval> | null>(null);
|
|
191
|
+
const startTimeRef = useRef<number>(0);
|
|
192
|
+
|
|
193
|
+
useEffect(() => {
|
|
194
|
+
console.log(`[${TAG}] Component mounted`);
|
|
195
|
+
return () => {
|
|
196
|
+
console.log(`[${TAG}] Component unmounted`);
|
|
197
|
+
if (timerRef.current !== null) {
|
|
198
|
+
clearInterval(timerRef.current);
|
|
199
|
+
}
|
|
200
|
+
};
|
|
201
|
+
}, []);
|
|
202
|
+
|
|
203
|
+
const startTimer = useCallback(() => {
|
|
204
|
+
startTimeRef.current = Date.now();
|
|
205
|
+
timerRef.current = setInterval(() => {
|
|
206
|
+
const elapsed = (Date.now() - startTimeRef.current) / 1000;
|
|
207
|
+
setRecordingTime(elapsed);
|
|
208
|
+
}, 100);
|
|
209
|
+
}, []);
|
|
210
|
+
|
|
211
|
+
const clearTimer = useCallback(() => {
|
|
212
|
+
if (timerRef.current !== null) {
|
|
213
|
+
clearInterval(timerRef.current);
|
|
214
|
+
timerRef.current = null;
|
|
215
|
+
}
|
|
216
|
+
}, []);
|
|
217
|
+
|
|
218
|
+
const handleStart = useCallback(async () => {
|
|
219
|
+
try {
|
|
220
|
+
const authorized = await AudioRecorder.requestAuthorization();
|
|
221
|
+
if (!authorized) {
|
|
222
|
+
return;
|
|
223
|
+
}
|
|
224
|
+
await AudioRecorder.startRecording();
|
|
225
|
+
setIsRecording(true);
|
|
226
|
+
startTimer();
|
|
227
|
+
} catch (error: any) {
|
|
228
|
+
console.warn(`[${TAG}] Start failed: ${error?.message || error}`);
|
|
229
|
+
}
|
|
230
|
+
}, []);
|
|
231
|
+
|
|
232
|
+
const handleStop = useCallback(async () => {
|
|
233
|
+
try {
|
|
234
|
+
await AudioRecorder.stopRecording();
|
|
235
|
+
setIsRecording(false);
|
|
236
|
+
clearTimer();
|
|
237
|
+
} catch (error: any) {
|
|
238
|
+
console.warn(`[${TAG}] Stop failed: ${error?.message || error}`);
|
|
239
|
+
}
|
|
240
|
+
}, []);
|
|
241
|
+
|
|
242
|
+
return (
|
|
243
|
+
<View style={styles.container}>
|
|
244
|
+
<View style={styles.card}>
|
|
245
|
+
<Text style={styles.title}>{DemoName}</Text>
|
|
246
|
+
<Text style={styles.text}>Time: {recordingTime.toFixed(1)}s</Text>
|
|
247
|
+
<Text style={styles.text}>Status: {isRecording ? 'Recording' : 'Stopped'}</Text>
|
|
248
|
+
<TouchableOpacity style={styles.button} onPress={handleStart} disabled={isRecording}>
|
|
249
|
+
<Text style={styles.buttonText}>Start</Text>
|
|
250
|
+
</TouchableOpacity>
|
|
251
|
+
<TouchableOpacity style={styles.button} onPress={handleStop} disabled={!isRecording}>
|
|
252
|
+
<Text style={styles.buttonText}>Stop</Text>
|
|
253
|
+
</TouchableOpacity>
|
|
254
|
+
</View>
|
|
255
|
+
</View>
|
|
256
|
+
);
|
|
257
|
+
};
|
|
258
|
+
|
|
259
|
+
const styles = StyleSheet.create({
|
|
260
|
+
container: { flex: 1, padding: 16, backgroundColor: '#fff' },
|
|
261
|
+
card: { padding: 16, borderRadius: 8, backgroundColor: '#f5f5f5', marginBottom: 12 },
|
|
262
|
+
title: { fontSize: 16, fontWeight: 'bold', color: '#333', marginBottom: 12 },
|
|
263
|
+
button: { padding: 12, borderRadius: 6, backgroundColor: '#007AFF', alignItems: 'center', marginBottom: 8 },
|
|
264
|
+
buttonText: { color: '#fff', fontSize: 14 },
|
|
265
|
+
text: { fontSize: 14, color: '#333', marginBottom: 4 },
|
|
266
|
+
});
|
|
267
|
+
|
|
268
|
+
export default {DemoName}Page;
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
---
|
|
272
|
+
|
|
273
|
+
## Slider 替代方案模板
|
|
274
|
+
|
|
275
|
+
```tsx
|
|
276
|
+
<View style={styles.buttonRow}>
|
|
277
|
+
<TouchableOpacity style={styles.miniButton} onPress={() => handleValueChange(-0.1)}>
|
|
278
|
+
<Text style={styles.miniButtonText}>-0.1</Text>
|
|
279
|
+
</TouchableOpacity>
|
|
280
|
+
<Text style={styles.valueText}>{value.toFixed(2)}</Text>
|
|
281
|
+
<TouchableOpacity style={styles.miniButton} onPress={() => handleValueChange(0.01)}>
|
|
282
|
+
<Text style={styles.miniButtonText}>+0.01</Text>
|
|
283
|
+
</TouchableOpacity>
|
|
284
|
+
</View>
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
```typescript
|
|
288
|
+
const styles = StyleSheet.create({
|
|
289
|
+
buttonRow: { flexDirection: 'row', alignItems: 'center', marginVertical: 8 },
|
|
290
|
+
miniButton: { padding: 8, borderRadius: 4, backgroundColor: '#007AFF', marginHorizontal: 4 },
|
|
291
|
+
miniButtonText: { color: '#fff', fontSize: 12 },
|
|
292
|
+
valueText: { fontSize: 14, color: '#333', marginHorizontal: 8 },
|
|
293
|
+
});
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
---
|
|
297
|
+
|
|
298
|
+
## 废弃接口验证模板(Provider 子组件拆分)
|
|
299
|
+
|
|
300
|
+
> 当 Demo 需要验证 `@deprecated` 废弃别名接口(如 `useSafeArea`、`SafeAreaConsumer`、`SafeAreaContext`)时使用此模板。核心技巧:拆分 InnerComponent 放在 Provider 内部,使用 `===` 引用比较验证别名关系。
|
|
301
|
+
|
|
302
|
+
```tsx
|
|
303
|
+
import React, { useCallback, useEffect, useState } from 'react';
|
|
304
|
+
import { View, Text, TouchableOpacity, StyleSheet } from 'react-native';
|
|
305
|
+
import {
|
|
306
|
+
useSafeArea,
|
|
307
|
+
SafeAreaConsumer,
|
|
308
|
+
SafeAreaContext,
|
|
309
|
+
SafeAreaInsetsContext,
|
|
310
|
+
SafeAreaProvider,
|
|
311
|
+
} from 'react-native-safe-area-context';
|
|
312
|
+
|
|
313
|
+
const TAG = '{libName}_{DemoName}';
|
|
314
|
+
|
|
315
|
+
const InnerComponent = () => {
|
|
316
|
+
const [isSameContext, setIsSameContext] = useState(false);
|
|
317
|
+
const [verifyCount, setVerifyCount] = useState(0);
|
|
318
|
+
|
|
319
|
+
const insets = useSafeArea();
|
|
320
|
+
|
|
321
|
+
const handleVerify = useCallback(() => {
|
|
322
|
+
setVerifyCount(c => c + 1);
|
|
323
|
+
setIsSameContext(SafeAreaContext === SafeAreaInsetsContext);
|
|
324
|
+
}, []);
|
|
325
|
+
|
|
326
|
+
return (
|
|
327
|
+
<View style={styles.card}>
|
|
328
|
+
<Text style={styles.title}>废弃 Context 别名验证</Text>
|
|
329
|
+
<View style={styles.resultRow}>
|
|
330
|
+
<Text style={styles.label}>useSafeArea 返回:</Text>
|
|
331
|
+
<Text style={styles.value}>{JSON.stringify(insets)}</Text>
|
|
332
|
+
</View>
|
|
333
|
+
<SafeAreaConsumer>
|
|
334
|
+
{(consumerInsets) => (
|
|
335
|
+
<View style={styles.resultRow}>
|
|
336
|
+
<Text style={styles.label}>SafeAreaConsumer 返回:</Text>
|
|
337
|
+
<Text style={styles.value}>{JSON.stringify(consumerInsets)}</Text>
|
|
338
|
+
</View>
|
|
339
|
+
)}
|
|
340
|
+
</SafeAreaConsumer>
|
|
341
|
+
<View style={styles.resultRow}>
|
|
342
|
+
<Text style={styles.label}>Context 相同:</Text>
|
|
343
|
+
<Text style={styles.value}>{isSameContext.toString()}</Text>
|
|
344
|
+
</View>
|
|
345
|
+
<View style={styles.resultRow}>
|
|
346
|
+
<Text style={styles.label}>验证次数:</Text>
|
|
347
|
+
<Text style={styles.value}>{verifyCount}</Text>
|
|
348
|
+
</View>
|
|
349
|
+
<TouchableOpacity style={styles.button} onPress={handleVerify}>
|
|
350
|
+
<Text style={styles.buttonText}>验证废弃别名</Text>
|
|
351
|
+
</TouchableOpacity>
|
|
352
|
+
</View>
|
|
353
|
+
);
|
|
354
|
+
};
|
|
355
|
+
|
|
356
|
+
const {DemoName}Page = () => {
|
|
357
|
+
useEffect(() => {
|
|
358
|
+
console.log(`[${TAG}] Component mounted`);
|
|
359
|
+
return () => {
|
|
360
|
+
console.log(`[${TAG}] Component unmounted`);
|
|
361
|
+
};
|
|
362
|
+
}, []);
|
|
363
|
+
|
|
364
|
+
return (
|
|
365
|
+
<View style={styles.container}>
|
|
366
|
+
<SafeAreaProvider>
|
|
367
|
+
<InnerComponent />
|
|
368
|
+
</SafeAreaProvider>
|
|
369
|
+
</View>
|
|
370
|
+
);
|
|
371
|
+
};
|
|
372
|
+
|
|
373
|
+
const styles = StyleSheet.create({
|
|
374
|
+
container: { flex: 1, padding: 16, backgroundColor: '#fff' },
|
|
375
|
+
card: { padding: 16, borderRadius: 8, backgroundColor: '#f5f5f5', marginBottom: 12 },
|
|
376
|
+
title: { fontSize: 16, fontWeight: 'bold', color: '#333', marginBottom: 12 },
|
|
377
|
+
resultRow: { flexDirection: 'row', marginBottom: 8 },
|
|
378
|
+
label: { fontSize: 14, color: '#666', width: 160 },
|
|
379
|
+
value: { fontSize: 14, color: '#333', flex: 1 },
|
|
380
|
+
button: { padding: 12, borderRadius: 6, backgroundColor: '#007AFF', alignItems: 'center', marginTop: 8 },
|
|
381
|
+
buttonText: { color: '#fff', fontSize: 14 },
|
|
382
|
+
});
|
|
383
|
+
|
|
384
|
+
export default {DemoName}Page;
|
|
385
|
+
```
|
|
386
|
+
|
|
387
|
+
---
|
|
388
|
+
|
|
389
|
+
## 废弃初始值/常量验证模板
|
|
390
|
+
|
|
391
|
+
> 当 Demo 需要验证 `@deprecated` 废弃常量(如 `initialWindowSafeAreaInsets`)和废弃 Props(如 `initialSafeAreaInsets`)时使用此模板。核心技巧:在 useEffect 中读取常量值,通过 Provider 注入初始值后子组件读取验证。
|
|
392
|
+
|
|
393
|
+
```tsx
|
|
394
|
+
import React, { useCallback, useEffect, useState } from 'react';
|
|
395
|
+
import { View, Text, TouchableOpacity, StyleSheet } from 'react-native';
|
|
396
|
+
import {
|
|
397
|
+
SafeAreaProvider,
|
|
398
|
+
useSafeAreaInsets,
|
|
399
|
+
initialWindowSafeAreaInsets,
|
|
400
|
+
type EdgeInsets,
|
|
401
|
+
} from 'react-native-safe-area-context';
|
|
402
|
+
|
|
403
|
+
const TAG = '{libName}_{DemoName}';
|
|
404
|
+
|
|
405
|
+
const customInitialInsets: EdgeInsets = { top: 50, right: 0, bottom: 50, left: 0 };
|
|
406
|
+
|
|
407
|
+
type InnerComponentProps = {
|
|
408
|
+
onInsets: (text: string) => void;
|
|
409
|
+
};
|
|
410
|
+
|
|
411
|
+
const InnerComponent = ({ onInsets }: InnerComponentProps) => {
|
|
412
|
+
const insets = useSafeAreaInsets();
|
|
413
|
+
|
|
414
|
+
useEffect(() => {
|
|
415
|
+
onInsets(JSON.stringify(insets));
|
|
416
|
+
}, [insets, onInsets]);
|
|
417
|
+
|
|
418
|
+
return <View />;
|
|
419
|
+
};
|
|
420
|
+
|
|
421
|
+
const {DemoName}Page = () => {
|
|
422
|
+
const [windowInsetsText, setWindowInsetsText] = useState('未获取');
|
|
423
|
+
const [providerInsetsText, setProviderInsetsText] = useState('未获取');
|
|
424
|
+
const [verifyCount, setVerifyCount] = useState(0);
|
|
425
|
+
|
|
426
|
+
useEffect(() => {
|
|
427
|
+
console.log(`[${TAG}] Component mounted`);
|
|
428
|
+
setWindowInsetsText(initialWindowSafeAreaInsets ? JSON.stringify(initialWindowSafeAreaInsets) : 'null');
|
|
429
|
+
return () => {
|
|
430
|
+
console.log(`[${TAG}] Component unmounted`);
|
|
431
|
+
};
|
|
432
|
+
}, []);
|
|
433
|
+
|
|
434
|
+
const handleInsets = useCallback((text: string) => {
|
|
435
|
+
setProviderInsetsText(text);
|
|
436
|
+
}, []);
|
|
437
|
+
|
|
438
|
+
const handleVerify = useCallback(() => {
|
|
439
|
+
setVerifyCount(c => c + 1);
|
|
440
|
+
}, []);
|
|
441
|
+
|
|
442
|
+
return (
|
|
443
|
+
<View style={styles.container}>
|
|
444
|
+
<View style={styles.card}>
|
|
445
|
+
<Text style={styles.title}>废弃初始值属性验证</Text>
|
|
446
|
+
<View style={styles.resultRow}>
|
|
447
|
+
<Text style={styles.label}>initialWindowSafeAreaInsets:</Text>
|
|
448
|
+
<Text style={styles.value}>{windowInsetsText}</Text>
|
|
449
|
+
</View>
|
|
450
|
+
<View style={styles.resultRow}>
|
|
451
|
+
<Text style={styles.label}>Provider 注入值:</Text>
|
|
452
|
+
<Text style={styles.value}>{providerInsetsText}</Text>
|
|
453
|
+
</View>
|
|
454
|
+
<View style={styles.resultRow}>
|
|
455
|
+
<Text style={styles.label}>自定义初始值:</Text>
|
|
456
|
+
<Text style={styles.value}>{JSON.stringify(customInitialInsets)}</Text>
|
|
457
|
+
</View>
|
|
458
|
+
<View style={styles.resultRow}>
|
|
459
|
+
<Text style={styles.label}>验证次数:</Text>
|
|
460
|
+
<Text style={styles.value}>{verifyCount}</Text>
|
|
461
|
+
</View>
|
|
462
|
+
<TouchableOpacity style={styles.button} onPress={handleVerify}>
|
|
463
|
+
<Text style={styles.buttonText}>验证初始值</Text>
|
|
464
|
+
</TouchableOpacity>
|
|
465
|
+
</View>
|
|
466
|
+
<SafeAreaProvider initialSafeAreaInsets={customInitialInsets}>
|
|
467
|
+
<InnerComponent onInsets={handleInsets} />
|
|
468
|
+
</SafeAreaProvider>
|
|
469
|
+
</View>
|
|
470
|
+
);
|
|
471
|
+
};
|
|
472
|
+
|
|
473
|
+
const styles = StyleSheet.create({
|
|
474
|
+
container: { flex: 1, padding: 16, backgroundColor: '#fff' },
|
|
475
|
+
card: { padding: 16, borderRadius: 8, backgroundColor: '#f5f5f5', marginBottom: 12 },
|
|
476
|
+
title: { fontSize: 16, fontWeight: 'bold', color: '#333', marginBottom: 12 },
|
|
477
|
+
resultRow: { flexDirection: 'row', marginBottom: 8 },
|
|
478
|
+
label: { fontSize: 14, color: '#666', width: 180 },
|
|
479
|
+
value: { fontSize: 14, color: '#333', flex: 1 },
|
|
480
|
+
button: { padding: 12, borderRadius: 6, backgroundColor: '#007AFF', alignItems: 'center', marginTop: 8 },
|
|
481
|
+
buttonText: { color: '#fff', fontSize: 14 },
|
|
482
|
+
});
|
|
483
|
+
|
|
484
|
+
export default {DemoName}Page;
|
|
485
|
+
```
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
# 入口文件模板
|
|
2
|
+
|
|
3
|
+
> 生成 index.tsx 主入口文件时可直接复制此模板,替换 `{占位符}` 内容。文件生成在 Phase 1.2 探查到的 `{exampleDir}/{libName}/index.tsx`。
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 标准入口模板
|
|
8
|
+
|
|
9
|
+
```tsx
|
|
10
|
+
import React from 'react';
|
|
11
|
+
import { ScrollView } from 'react-native';
|
|
12
|
+
import { Tester, TestCase, TestSuite } from '@rnoh/testerino';
|
|
13
|
+
|
|
14
|
+
import Demo1Page from './demo/001_{描述1}Page';
|
|
15
|
+
import Demo2Page from './demo/002_{描述2}Page';
|
|
16
|
+
import Demo3Page from './demo/003_{描述3}Page';
|
|
17
|
+
|
|
18
|
+
function MainDemo() {
|
|
19
|
+
return (
|
|
20
|
+
<Tester>
|
|
21
|
+
<TestSuite name="{libName}">
|
|
22
|
+
<TestCase itShould="{Demo1描述}">
|
|
23
|
+
<Demo1Page />
|
|
24
|
+
</TestCase>
|
|
25
|
+
<TestCase itShould="{Demo2描述}">
|
|
26
|
+
<Demo2Page />
|
|
27
|
+
</TestCase>
|
|
28
|
+
<TestCase itShould="{Demo3描述}">
|
|
29
|
+
<Demo3Page />
|
|
30
|
+
</TestCase>
|
|
31
|
+
</TestSuite>
|
|
32
|
+
</Tester>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export default function {LibNamePascalCase}Tester() {
|
|
37
|
+
return (
|
|
38
|
+
<ScrollView style={{ height: '100%', width: '100%' }}>
|
|
39
|
+
<MainDemo />
|
|
40
|
+
</ScrollView>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export const displayName = '{libName}';
|
|
45
|
+
export const framework = 'React';
|
|
46
|
+
export const category = '{category}';
|
|
47
|
+
export const title = '{libName}';
|
|
48
|
+
export const documentationURL = 'https://gitcode.com/OpenHarmony-RN/usage-docs/tree/master/zh-cn';
|
|
49
|
+
export const description = '{简短描述}';
|
|
50
|
+
|
|
51
|
+
export const examples = [
|
|
52
|
+
{
|
|
53
|
+
title: '{libName} Demo',
|
|
54
|
+
render: function (): any {
|
|
55
|
+
return <MainDemo />;
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
];
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## Demo 注册模板
|
|
64
|
+
|
|
65
|
+
> 在 Phase 1.2 探查到的 `registerFile` 中追加注册。**按该文件现有的注册模式追加**,路径根据 `registerFile` 到 `indexFile` 的实际目录层级计算。
|
|
66
|
+
|
|
67
|
+
### 模式 A:RNTesterList.ts 数组注册
|
|
68
|
+
|
|
69
|
+
适用于 RNTester 框架(`registerFile` 为 `RNTesterList.ts` 或类似文件),在组件列表数组中添加:
|
|
70
|
+
|
|
71
|
+
```typescript
|
|
72
|
+
{
|
|
73
|
+
key: '{libName}',
|
|
74
|
+
category: '{category}',
|
|
75
|
+
module: require('{相对路径}'),
|
|
76
|
+
}
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
**路径计算示例**:
|
|
80
|
+
|
|
81
|
+
| registerFile 位置 | indexFile 位置 | require 相对路径 |
|
|
82
|
+
|------------------|---------------|-----------------|
|
|
83
|
+
| `rn-tester/utils/RNTesterList.ts` | `rn-tester/examples/{libName}/index.tsx` | `../examples/{libName}/index` |
|
|
84
|
+
| `example/src/RNTesterList.ts` | `example/src/demos/{libName}/index.tsx` | `./demos/{libName}/index` |
|
|
85
|
+
| `example/src/App.tsx` | `example/src/examples/{libName}/index.tsx` | `./examples/{libName}/index` |
|
|
86
|
+
|
|
87
|
+
**注意事项**:
|
|
88
|
+
- 不使用 `.default`,直接 require 整个模块
|
|
89
|
+
- category 可以是 `'UI'`、`'Basic'`、`'Component'`、`'API'`、`'Media'` 等
|
|
90
|
+
- 路径必须从 `registerFile` 所在目录到 `indexFile` 的相对路径
|
|
91
|
+
|
|
92
|
+
### 模式 B:App.tsx 导入注册
|
|
93
|
+
|
|
94
|
+
适用于 example 工程(`registerFile` 为 `App.tsx` 或导航配置文件):
|
|
95
|
+
|
|
96
|
+
```typescript
|
|
97
|
+
import {LibNamePascalCase}Tester from '{相对路径}';
|
|
98
|
+
|
|
99
|
+
// 在导航/路由配置中注册该 Demo 页面
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
### 模式 C:自定义 demos 数组注册
|
|
103
|
+
|
|
104
|
+
适用于工程自带的自定义 Tester 入口(`registerFile` 为 `example/src/index.tsx` 或类似文件,含 `demos`/`items` 数组):
|
|
105
|
+
|
|
106
|
+
**步骤 1:在文件顶部添加 import**
|
|
107
|
+
|
|
108
|
+
```typescript
|
|
109
|
+
import {LibNamePascalCase}Tester from './{相对于registerFile的路径到index}';
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
**步骤 2:在 demos 数组末尾追加条目**
|
|
113
|
+
|
|
114
|
+
```typescript
|
|
115
|
+
const demos: IDemoItem[] = [
|
|
116
|
+
// ...已有条目
|
|
117
|
+
{ Component: {LibNamePascalCase}Tester, name: '{Demo显示名}', key: '{LibNamePascalCase}' }
|
|
118
|
+
];
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
**模式识别方法**:
|
|
122
|
+
|
|
123
|
+
读取 `registerFile` 内容后,按以下特征判断是否为模式 C:
|
|
124
|
+
|
|
125
|
+
| 特征 | 判定 |
|
|
126
|
+
|------|------|
|
|
127
|
+
| 文件含 `demos` 或 `items` 数组 | 模式 C 候选 |
|
|
128
|
+
| 数组元素含 `Component` 字段 | 确认模式 C |
|
|
129
|
+
| 数组元素含 `module` 字段 + `require()` | 模式 A |
|
|
130
|
+
| 文件含导航/路由配置 + `import` | 模式 B |
|
|
131
|
+
|
|
132
|
+
**注意事项**:
|
|
133
|
+
- 追加条目时保持与已有条目相同的字段结构(`Component`、`name`、`key`)
|
|
134
|
+
- `key` 值需唯一,不与已有条目冲突
|
|
135
|
+
- import 路径为从 `registerFile` 所在目录到 `indexFile` 的相对路径
|
|
136
|
+
|
|
137
|
+
---
|
|
138
|
+
|
|
139
|
+
## 完整文件结构
|
|
140
|
+
|
|
141
|
+
```
|
|
142
|
+
{exampleDir}/
|
|
143
|
+
└── {libName}/
|
|
144
|
+
├── index.tsx # 主入口(上方模板)
|
|
145
|
+
└── demo/
|
|
146
|
+
├── 001_{描述1}Page.tsx # Demo 页面(参见 Demo 页面模板)
|
|
147
|
+
├── 002_{描述2}Page.tsx
|
|
148
|
+
├── 003_{描述3}Page.tsx
|
|
149
|
+
└── ...
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
`{exampleDir}` 由 Phase 1.2 探查确定,常见值:
|
|
153
|
+
- `rn-tester/examples/`
|
|
154
|
+
- `example/src/`
|
|
155
|
+
- `examples/src/`
|
|
156
|
+
- `example/`
|
|
157
|
+
- `demo/src/`
|
|
158
|
+
- `demo/`
|
|
159
|
+
|
|
160
|
+
---
|
|
161
|
+
|
|
162
|
+
## 元数据字段说明
|
|
163
|
+
|
|
164
|
+
| 字段 | 说明 | 示例 |
|
|
165
|
+
|------|------|------|
|
|
166
|
+
| `displayName` | 库显示名称 | `react-native-audio` |
|
|
167
|
+
| `framework` | 框架 | `React` |
|
|
168
|
+
| `category` | 分类 | `UI` / `API` / `Media` / `Basic` / `Component` |
|
|
169
|
+
| `title` | 标题 | `react-native-audio` |
|
|
170
|
+
| `documentationURL` | 文档地址 | RNOH 官方文档 URL |
|
|
171
|
+
| `description` | 简短描述 | 库功能简介 |
|
|
172
|
+
| `examples` | 示例数组 | 包含 title 和 render 函数 |
|