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

Zeebe overview revamp #5148

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
51 changes: 51 additions & 0 deletions docs/components/zeebe/react-components/_zeebe-card-data.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
import IconWorkflow from "../../zeebe/technical-concepts/assets/icon-workflow-engine.png";
import IconArrow from "../../zeebe/technical-concepts/assets/icon-arrow.png";
import IconBlackbox from "../../zeebe/technical-concepts/assets/icon-blackbox.png";
import IconPartition from "../../zeebe/technical-concepts/assets/icon-partition.png";
import IconEnd from "../../zeebe/technical-concepts/assets/icon-end-to-end.png";
import IconProtocol from "../../zeebe/technical-concepts/assets/icon-protocol.png";

// Getting started cards on Zeebe introduction page
export const gettingStartedCards = [
{
link: "../zeebe/technical-concepts/architecture",
title: "Architecture",
image: IconWorkflow,
description:
"Learn about the four main components in Zeebe's architecture: clients, gateways, brokers, and exporters.",
},
{
link: "../zeebe/technical-concepts/clustering",
title: "Clustering",
image: IconArrow,
description:
"Learn how Zeebe can operate as a cluster of brokers, forming a peer-to-peer network.",
},
{
link: "../zeebe/technical-concepts/partitions",
title: "Partitions",
image: IconPartition,
description:
"Learn about partitions, which are persistent streams of process-related events.",
},
{
link: "../zeebe/technical-concepts/internal-processing",
title: "Internal processing",
image: IconBlackbox,
description:
"Understand state machines, events and commands, stateful stream processing, driving the engine, and handling backpressure within Zeebe.",
},
{
link: "../zeebe/technical-concepts/process-lifecycles",
title: "Process lifecycles",
image: IconEnd,
description:
"In Zeebe, the process execution is represented internally by events of type ProcessInstance.",
},
{
link: "../zeebe/technical-concepts/protocols",
title: "Protocols",
image: IconProtocol,
description: "Let's discuss gRPC and supported clients.",
},
];
30 changes: 30 additions & 0 deletions docs/components/zeebe/react-components/_zeebe-card.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from "react";
import "./_zeebe-table.css";

const ZeebeCard = ({ link, title, image, description }) => {
return (
<a href={link} className="zeebe-card" title={title}>
<img src={image} alt={`${title} icon`} className="zeebe-card-image" />
<h3>{title}</h3>
<p>{description}</p>
</a>
);
};

const ZeebeGrid = ({ zeebe }) => {
return (
<div className="zeebe-grid">
{zeebe.map((zeebe, index) => (
<ZeebeCard
key={index}
link={zeebe.link}
title={zeebe.title}
image={zeebe.image}
description={zeebe.description}
/>
))}
</div>
);
};

export default ZeebeGrid;
Loading
Loading