feat: adopt the Features & Roadmap menu#422
Merged
Merged
Conversation
Surfaces the in-product Features & Roadmap page (powered by OpenRegister's github-issue-proxy, UI from @conduction/nextcloud-vue) from the Settings section of the nav. - src/views/FeaturesRoadmap.vue — thin wrapper around CnFeaturesAndRoadmapView (repo / features / disabled from loadState() with fallbacks) - customComponents.js — register it as the `FeaturesRoadmap` custom component - manifest.json — add the `FeaturesRoadmap` custom page (route /features-roadmap) + a `FeaturesRoadmapMenu` entry in the settings section - bump @conduction/nextcloud-vue to ^1.0.0-beta.35 (ships the Cn* roadmap family) Refs: ConductionNL/hydra#251
Contributor
Quality Report — ConductionNL/procest @
|
| Check | PHP | Vue | Security | License | Tests |
|---|---|---|---|---|---|
| lint | ✅ | ||||
| phpcs | ❌ | ||||
| phpmd | ✅ | ||||
| psalm | ✅ | ||||
| phpstan | ✅ | ||||
| phpmetrics | ✅ | ||||
| eslint | ❌ | ||||
| stylelint | ❌ | ||||
| composer | ✅ | ✅ 100/100 | |||
| npm | ❌ | ❌ | |||
| PHPUnit | ⏭️ | ||||
| Newman | ⏭️ | ||||
| Playwright | ⏭️ |
Quality workflow — 2026-05-12 09:54 UTC
Download the full PDF report from the workflow artifacts.
This was referenced May 12, 2026
….0.0-beta.35 bump
Contributor
Quality Report — ConductionNL/procest @
|
| Check | PHP | Vue | Security | License | Tests |
|---|---|---|---|---|---|
| lint | ✅ | ||||
| phpcs | ❌ | ||||
| phpmd | ✅ | ||||
| psalm | ✅ | ||||
| phpstan | ✅ | ||||
| phpmetrics | ✅ | ||||
| eslint | ❌ | ||||
| stylelint | ❌ | ||||
| composer | ✅ | ✅ 100/100 | |||
| npm | ✅ | ✅ 420/420 | |||
| PHPUnit | ⏭️ | ||||
| Newman | ⏭️ | ||||
| Playwright | ❌ |
Spec coverage: 5% (21 tests / 456 specs)
Quality workflow — 2026-05-12 10:19 UTC
Download the full PDF report from the workflow artifacts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adopts the Features & Roadmap menu in procest — the in-product two-tab page (Features manifest + GitHub roadmap, with the in-context Suggest action) powered by OpenRegister's
github-issue-proxyand@conduction/nextcloud-vue'sCn*roadmap component family. Part of the org-wide rollout — see ConductionNL/hydra#251.procest is manifest-driven (
CnAppRoot+manifest.json, no hand-rolled router/menu), so the adoption is wired through the manifest rather than a custom route:src/views/FeaturesRoadmap.vue— thin wrapper aroundCnFeaturesAndRoadmapView.repo('ConductionNL/procest'),features([]), anddisabled(false) come fromloadState('procest', 'features_roadmap_*', …)with those fallbacks, so the page works without backend wiring (the roadmap proxy + theopenregister::features_roadmap_enabledflag live on OpenRegister).src/customComponents.js— registers it as theFeaturesRoadmapcustom component.src/manifest.json— adds theFeaturesRoadmaptype: "custom"page (route: "/features-roadmap") and aFeaturesRoadmapMenuentry in thesettingssection (order: 100).package.json— bumps@conduction/nextcloud-vueto^1.0.0-beta.35(the release that shipsCnFeaturesAndRoadmapView/CnFeaturesAndRoadmapLink/CnFeaturesTab/CnRoadmapTab/CnRoadmapItem/CnSuggestFeatureModal).Notes
@nextcloud/axiosto~2.5.2(+overrides), so the2.6.0-broke-its-exports issue (Migrate @conduction/nextcloud-vue 0.1.x → 1.x (blocks Features & Roadmap pilot) openregister#1489) doesn't bite here.GET /index.php/apps/openregister/api/github/issues?…— that proxy is on the OpenRegister side (PR feat(github-issues): backend skeleton for Features & Roadmap menu (WIP, 10/22 tasks) openregister#1463); until it lands the tab degrades gracefully (github_pat_not_configured/ empty state).Test plan
npm install && npm run buildgreen (CI resolves@conduction/nextcloud-vue@^1.0.0-beta.35from npm)/features-roadmap, renders the Features + Roadmap tabs and the Suggest-feature buttonRefs: ConductionNL/hydra#251 · ConductionNL/openregister#1463