Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

R33 updates and R34 Roadmap #59

Merged
merged 3 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions deployed/doc-it/R33Roadmap.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
"description": "Develop Okta authentication workflow for both React and React Native",
"year": 2024,
"quarter": "Q3",
"status": "in-progress",
"status": "finished",
"author": "Brightlayer UI"
},
{
"name": "React User Management Workflow",
"description": "Develop a plan/architecture for a set of workflows around user management that could be dropped-in to product team applications.",
"year": 2024,
"quarter": "Q3",
"status": "in-progress",
"status": "finished",
"author": "Brightlayer UI"
}
]
Expand All @@ -40,7 +40,7 @@
"description": "Migrate Brightlayer Charts Storybook to Brightlayer dev doc",
"year": 2024,
"quarter": "Q3",
"status": "in-progress",
"status": "finished",
"author": "Brightlayer UI"
}
]
Expand All @@ -55,10 +55,10 @@
"items": [
{
"name": "React Native Dev Docs Component Playground",
"description": "Develop a new & improved documentation site for React Native packages",
"description": "Added the playground for react native development documentation",
"year": 2024,
"quarter": "Q3",
"status": "in-progress",
"status": "finished",
"author": "Brightlayer UI"
}
]
Expand Down
36 changes: 36 additions & 0 deletions deployed/doc-it/R34Roadmap.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
[
{
"name": "Reusable Workflows",
"description": "Components for implementing common workflows across applications",
"type": "development",
"framework": ["react"],
"items": [
{
"name": "React User Management Workflow",
"description":
"Develop a workflow for managing user accounts and permissions",
"year": 2024,
"quarter": "Q4",
"status": "backlog",
"author": "Brightlayer UI"
}
]
},
{
"name": "React Libraries",
"description":
"The Brightlayer UI react libraries",
"type": "development",
"framework": ["react"],
"items": [
{
"name": "MUI 6 Support",
"description": "Update libraries to build using MUI version 6",
"year": 2024,
"quarter": "Q4",
"status": "in-progress",
"author": "Brightlayer UI"
}
]
}
]
10 changes: 5 additions & 5 deletions src/data/doc-it/R33Roadmap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const roadmap: RoadmapBucket[] = [
"Develop Okta authentication workflow for both React and React Native",
year: CURRENT_YEAR,
quarter: CURRENT_QUARTER,
status: "in-progress",
status: "finished",
author: "Brightlayer UI",
},
{
Expand All @@ -26,7 +26,7 @@ export const roadmap: RoadmapBucket[] = [
"Develop a plan/architecture for a set of workflows around user management that could be dropped-in to product team applications.",
year: CURRENT_YEAR,
quarter: CURRENT_QUARTER,
status: "in-progress",
status: "finished",
author: "Brightlayer UI",
},
],
Expand All @@ -44,7 +44,7 @@ export const roadmap: RoadmapBucket[] = [
"Migrate Brightlayer Charts Storybook to Brightlayer dev doc",
year: 2024,
quarter: "Q3",
status: "in-progress",
status: "finished",
author: "Brightlayer UI",
},
],
Expand All @@ -58,10 +58,10 @@ export const roadmap: RoadmapBucket[] = [
{
name: "React Native Dev Docs Component Playground",
description:
"Develop a new & improved documentation site for React Native packages",
"Added the playground for react native development documentation",
year: CURRENT_YEAR,
quarter: CURRENT_QUARTER,
status: "in-progress",
status: "finished",
author: "Brightlayer UI",
},
],
Expand Down
41 changes: 41 additions & 0 deletions src/data/doc-it/R34Roadmap.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
import { Quarter, RoadmapBucket } from "./_types";

const CURRENT_YEAR = 2024;
const CURRENT_QUARTER: Quarter = "Q4";

export const roadmap: RoadmapBucket[] = [
{
name: "Reusable Workflows",
description: "Components for implementing common workflows across applications",
type: "development",
framework: ["react"],
items: [
{
name: "React User Management Workflow",
description:
"Develop a workflow for managing user accounts and permissions",
year: CURRENT_YEAR,
quarter: CURRENT_QUARTER,
status: "backlog",
author: "Brightlayer UI",
},
],
},
{
name: "React Libraries",
description:
"The Brightlayer UI react libraries",
type: "development",
framework: ["react"],
items: [
{
name: 'MUI 6 Support',
description: 'Update libraries to build using MUI version 6',
year: CURRENT_YEAR,
quarter: CURRENT_QUARTER,
status: 'in-progress',
author: 'Brightlayer UI',
},
],
},
];
5 changes: 5 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
const fs = require("fs");
import { announcement as Announcement } from "./data/doc-it/Announcement";
import { roadmap as R34 } from "./data/doc-it/R34Roadmap";
import { roadmap as R33 } from "./data/doc-it/R33Roadmap";
import { roadmap as R32 } from "./data/doc-it/R32Roadmap";
import { roadmap as R31 } from "./data/doc-it/R31Roadmap";
Expand All @@ -25,6 +26,10 @@ type DataRecord = {
};

const entries: DataRecord[] = [
{
collectionName: "doc-it/R33Roadmap",
dataSource: R34,
},
{
collectionName: "doc-it/R33Roadmap",
dataSource: R33,
Expand Down
12 changes: 6 additions & 6 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@


"@types/node@^13.13.4":
version "13.13.9"
resolved "https://registry.yarnpkg.com/@types/node/-/node-13.13.9.tgz#79df4ae965fb76d31943b54a6419599307a21394"
integrity sha512-EPZBIGed5gNnfWCiwEIwTE2Jdg4813odnG8iNPMQGrqVxrI+wL68SPtPeCX+ZxGBaA6pKAVc6jaKgP/Q0QzfdQ==
version "13.13.52"
resolved "https://registry.yarnpkg.com/@types/node/-/node-13.13.52.tgz#03c13be70b9031baaed79481c0c0cfb0045e53f7"
integrity sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==

typescript@^3.8.3:
version "3.8.3"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.8.3.tgz#409eb8544ea0335711205869ec458ab109ee1061"
integrity sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==
version "3.9.10"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8"
integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==
Loading