Improve roadmap (#405)

* Make it possible to embed the roadmap in iframe
* Add board and status filters
* Add query params to show/hide roadmap filters
This commit is contained in:
Riccardo Graziosi
2024-09-11 19:27:13 +02:00
committed by GitHub
parent 2e07f7b00d
commit 5780d8494e
18 changed files with 820 additions and 69 deletions

View File

@@ -11,9 +11,10 @@ interface Props {
postStatus: IPostStatus;
posts: Array<IPostJSON>;
boards: Array<IBoard>;
openPostsInNewTab: boolean;
}
const PostListByPostStatus = ({ postStatus, posts, boards }: Props) => (
const PostListByPostStatus = ({ postStatus, posts, boards, openPostsInNewTab }: Props) => (
<div className="roadmapColumn">
<div className="columnHeader"
style={{backgroundColor: postStatus.color}}>
@@ -23,6 +24,7 @@ const PostListByPostStatus = ({ postStatus, posts, boards }: Props) => (
<PostList
posts={posts}
boards={boards}
openPostsInNewTab={openPostsInNewTab}
/>
</div>
</div>