Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
anshgoyalevil authored Mar 1, 2024
2 parents c08ea0e + d2899a3 commit 8fe296f
Show file tree
Hide file tree
Showing 24 changed files with 222 additions and 100 deletions.
5 changes: 0 additions & 5 deletions components/layout/BlogLayout.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ import moment from 'moment';
import Head from '../Head';
import BlogContext from '../../context/BlogContext';
import TOC from '../TOC';
import NavBar from '../navigation/NavBar';
import Container from './Container';
import AuthorAvatars from '../AuthorAvatars';
import StickyNavbar from '../navigation/StickyNavbar';
import AnnouncementHero from '../campaigns/AnnoucementHero';

export default function BlogLayout({ post, children }) {
Expand All @@ -22,9 +20,6 @@ export default function BlogLayout({ post, children }) {

return (
<BlogContext.Provider value={{ post }}>
<StickyNavbar data-testid="BlogLayout-Navbar">
<NavBar className="max-w-screen-xl block px-4 sm:px-6 lg:px-8 mx-auto" />
</StickyNavbar>
<AnnouncementHero className="my-4 mx-8" />
<Container cssBreakingPoint="lg" flex flexReverse>
<TOC
Expand Down
5 changes: 0 additions & 5 deletions components/layout/DocsLayout.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ import TOC from '../TOC';
import DocsNav from '../navigation/DocsNav';
import DocsMobileMenu from '../navigation/DocsMobileMenu';
import DocsButton from '../buttons/DocsButton';
import NavBar from '../navigation/NavBar';
import ArrowRight from '../icons/ArrowRight';
import Feedback from '../Feedback';
import StickyNavbar from '../navigation/StickyNavbar';
import Heading from '../typography/Heading';
import AnnouncementHero from '../campaigns/AnnoucementHero';
import { SearchButton, DOCS_INDEX_NAME } from '../AlgoliaSearch';
Expand Down Expand Up @@ -72,9 +70,6 @@ export default function DocsLayout({ post, navItems = {}, children }) {

return (
<DocsContext.Provider value={{ post, navItems }}>
<StickyNavbar>
<NavBar className="max-w-screen-xl block px-4 sm:px-6 lg:px-8 mx-auto" />
</StickyNavbar>
<div className="bg-white px-4 sm:px-6 lg:px-8 w-full xl:max-w-7xl xl:mx-auto">
{showMenu && (
<DocsMobileMenu
Expand Down
5 changes: 0 additions & 5 deletions components/layout/GenericLayout.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import Head from '../Head';
import NavBar from '../navigation/NavBar';
import Container from './Container';
import AnnouncementHero from '../campaigns/AnnoucementHero';
import StickyNavbar from '../navigation/StickyNavbar';

export default function GenericLayout({
title,
Expand All @@ -20,9 +18,6 @@ export default function GenericLayout({
return (
<div data-testid="GenericLayout">
<Head title={title} description={description} image={image} />
<StickyNavbar>
<NavBar className="max-w-screen-xl block px-4 sm:px-6 lg:px-8 mx-auto" />
</StickyNavbar>
<Container wide={wide}>
<div data-testid="GenericLayout-banner">
<AnnouncementHero
Expand Down
5 changes: 0 additions & 5 deletions components/layout/GenericPostLayout.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@ import { useRouter } from 'next/router'
import ErrorPage from 'next/error'
import Head from '../Head'
import GenericPostContext from '../../context/GenericPostContext'
import NavBar from '../navigation/NavBar'
import Container from './Container'
import AnnouncementHero from '../campaigns/AnnoucementHero'
import StickyNavbar from '../navigation/StickyNavbar'

export default function GenericPostLayout({ post, children }) {
if (!post) return <ErrorPage statusCode={404} />
Expand All @@ -18,9 +16,6 @@ export default function GenericPostLayout({ post, children }) {

return (
<GenericPostContext.Provider value={{ post }}>
<StickyNavbar>
<NavBar className="max-w-screen-xl block px-4 sm:px-6 lg:px-8 mx-auto" />
</StickyNavbar>
<AnnouncementHero className="text-center m-4" small={true} />
<Container>
<main
Expand Down
4 changes: 0 additions & 4 deletions components/layout/GenericWideLayout.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Head from '../Head'
import NavBar from '../navigation/NavBar'
import AnnouncementHero from '../campaigns/AnnoucementHero'
import Row from './Row'

Expand All @@ -18,9 +17,6 @@ export default function GenericWideLayout({
return (
<>
<Head title={title} description={description} image={image} />
<div className="sticky top-0 w-full bg-white border-b border-gray-300 z-50">
<NavBar className="max-w-screen-xl block px-4 sm:px-6 lg:px-8 mx-auto" />
</div>
<Row>
<AnnouncementHero className="text-center m-4" small={true} />
{children}
Expand Down
6 changes: 0 additions & 6 deletions components/layout/JobsLayout.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@ import { useRouter } from 'next/router'
import ErrorPage from 'next/error'
import Head from '../Head'
import JobsContext from '../../context/JobsContext'
import NavBar from '../navigation/NavBar'
import Container from './Container'
import JobSummary from '../JobSummary'
import ApplyJobButton from '../buttons/ApplyJob'
import StickyNavbar from '../navigation/StickyNavbar'

export default function JobsLayout({ post, children }) {
if (!post) return <ErrorPage statusCode={404} />;
Expand All @@ -19,10 +17,6 @@ export default function JobsLayout({ post, children }) {

return (
<JobsContext.Provider value={{ post }}>
<StickyNavbar>
<NavBar className="max-w-screen-xl block px-4 sm:px-6 lg:px-8 mx-auto" />
</StickyNavbar>

<Container cssBreakingPoint="lg" flex flexReverse>
<div className="">
<JobSummary
Expand Down
2 changes: 1 addition & 1 deletion components/navigation/MobileNavMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function MobileNavMenu({ onClickClose = () => {} }) {
setOpen(menu);
}
return (
<div className="fixed top-0 z-60 inset-x-0 py-2 transition transform origin-top-right max-h-full lg:hidden overflow-y-scroll">
<div className="fixed top-0 z-60 inset-x-0 py-2 transition transform origin-top-right max-h-full lg:hidden overflow-y-auto">
<div className="rounded-lg shadow-lg">
<div className="rounded-lg shadow-xs bg-white divide-y-2 divide-gray-50">
<div className="pt-5 pb-6 px-5 space-y-6">
Expand Down
72 changes: 54 additions & 18 deletions config/adopters.yml
Original file line number Diff line number Diff line change
@@ -1,47 +1,83 @@
- companyName: Reiffeisen Bank
useCase: Continuous Integration and Continuous Delivery (CI/CD) pipeline based on GitOps to deploy a topology built on Async API definitions using a Kubernetes operator to an Apache Pulsar cluster.
useCase: Implementing a Continuous Integration and Continuous Delivery (CI/CD) pipeline utilizing GitOps principles to deploy a topology constructed on AsyncAPI definitions using a Kubernetes operator to an Apache Pulsar cluster.
resources:
- title: Video - From an AsyncAPI Definition to a Deployed Pulsar Topology Via GitOps
- title: "Video: From an AsyncAPI Definition to a Deployed Pulsar Topology Via GitOps"
link: https://www.youtube.com/watch?v=_MwzLZMwFN8

- companyName: LEGO Group
useCase: Broker management, where developers do not access the management console themselves, but rely on uploading AsyncAPI documents to a self service API that provisions access and topics specified in documents.
useCase: Managing brokers, where developers abstain from direct access to the management console and instead upload AsyncAPI documents to a self-service API, which provisions access and topics specified in the documents.
resources:
- title: Video - Documentation as Configuration for Management of Apache Pulsar
- title: "Video: Documentation as Configuration for Management of Apache Pulsar"
link: https://www.youtube.com/watch?v=m8I0fYjx6Cc

- companyName: LEGO Group
useCase: Define, document and distribute event-driven APIs. Ensuring consistency and governance
useCase: Defining, documenting, and distributing event-driven APIs while ensuring consistency and governance.
resources:
- title: Video - Cross-Domain Events with AsyncAPI and AWS
- title: "Video: Cross-Domain Events with AsyncAPI and AWS"
link: https://www.youtube.com/watch?v=qjarcJQVLOg

- companyName: Bank of New Zealand
useCase: Decentralized company-wide governance strategy for API. A self service for publishing APIs and docs.
useCase: Establishing a decentralized company-wide governance strategy for APIs, providing a self-service platform for publishing APIs and documentation.
resources:
- title: "Video - Self-service Events & Decentralised Governance with AsyncAPI: A Real World Example"
- title: "Video: Self-service Events & Decentralised Governance with AsyncAPI: A Real World Example"
link: https://www.confluent.io/events/kafka-summit-apac-2021/self-service-events-and-decentralised-governance-with-asyncapi-a-real-world/

- companyName: Zora Robotics
useCase: Documenting lot products public MQTT API and building a developers portal.
useCase: Documenting public MQTT APIs for IoT products and constructing a developer portal.
resources:
- title: Video - Buliding and managing an extensive API for Robotics and loT
- title: "Video: Building and managing an extensive API for Robotics and IoT"
link: https://www.youtube.com/watch?v=yjHgT0n2BtA
- title: Docs - Buliding and managing an extensive API for Robotics and loT
- title: "Docs: Building and managing an extensive API for Robotics and IoT"
link: https://docs.zorabots.be/dev-mqtt-docs/latest/index.html

- companyName: Walmart
useCase: Managing a central API Hub for internal teams. Using AsyncAPI for events discoverability an visibility in a single place. AsyncAPI also enabled company-wide governance on asynchronous APIs.
useCase: Managing a centralized API Hub for internal teams, enhancing event discoverability and visibility using AsyncAPI. AsyncAPI facilitates company-wide governance on asynchronous APIs.
resources:
- title: Video - Time For AsyncAPI Specification
- title: "Video: Time For AsyncAPI Specification"
link: https://www.youtube.com/watch?v=SxTpGRaNIPo

- companyName: eBay
useCase: Enabling partners to build with eBay through asynchronous communication. Public AsyncAPI documents enable code generation and faster integration. It also enables governance and standardisation.
useCase: Facilitating partner integration with eBay through asynchronous communication, leveraging public AsyncAPI documents for code generation and rapid integration, while ensuring governance and standardization.
resources:
- title: "Video - AsyncAPI 2.0: Enabling the Event-Driven World"
- title: "Video: AsyncAPI 2.0: Enabling the Event-Driven World"
link: https://www.youtube.com/watch?v=SxTpGRaNIPo
- title: "Article - AsyncAPI 2.0: Enabling the Event-Driven World"
- title: "Article: AsyncAPI 2.0: Enabling the Event-Driven World"
link: https://innovation.ebayinc.com/tech/engineering/asyncapi-2-0-enabling-the-event-driven-world/
- title: Docs - Overview of Notification API with public AsyncAPI documents
link: https://developer.ebay.com/api-docs/commerce/notification/overview.html
- title: "Docs: Overview of Notification API with public AsyncAPI documents"
link: https://developer.ebay.com/api-docs/commerce/notification/overview.html

- companyName: Postman
useCase: Enhancing discoverability of information about system events by building a tool called Synapse for provisioning entire event-based infrastructure, with AsyncAPI documents as the source of truth.
resources:
- title: "Video: Turbocharging your Developer Ecosystem with Events Powered by SNS/SQS, Serverless, and AsyncAPI"
link: https://www.youtube.com/watch?v=0_7QZyKLPoE

- companyName: Adobe
useCase: Providing event documentation to expedite development by generating classes based on message payload information from AsyncAPI documents.
resources:
- title: "Slides: AsyncAPI and Modelina"
link: https://drive.google.com/file/d/1AVCG9_fFtuOtrvZVZWENmU2aDT7C51Jr/view?usp=sharing

- companyName: Open University of Catalonia and Prodevelop
useCase: Enabling monitoring of ports through a design-first approach, utilizing UML class diagrams to design the entire infrastructure. UML diagrams are source of truth for generated AsyncAPI documents that later are used for models and clients generation. These documents are extended with additional SLA properties to specify runtime quality of service requirements, facilitating real-time monitoring.
resources:
- title: "Video: Leveraging AsyncAPI To Detect Anomalies in Smart Ports Platforms"
link: https://www.youtube.com/watch?v=m4KS6FSeTT4

- companyName: Oracle
useCase: Documenting data streaming APIs with AsyncAPI documents for client library generation in various programming languages, reducing development time for applications consuming data.
resources:
- title: "Video: Productizing AsyncAPI for Data Replication"
link: https://www.youtube.com/watch?v=CGLlxYy66LY

- companyName: TransferGo
useCase: Enhancing discoverability of information about event-driven systems by documenting services with AsyncAPI, rendering documentation, and creating catalogs of events. Legacy services utilize a special library to generate AsyncAPI documents, while new services require AsyncAPI documents for generating PHP classes.
resources:
- title: "Slides: How TransferGo Uses AsyncAPI To Improve Developer Experience"
link: https://drive.google.com/file/d/1t7tYMr8FMRInaZV0lWod1QfDuhhSjwBJ/view?usp=sharing

- companyName: Kuehne+Nagel
useCase: Implementing a GitOps-based pipeline to enable self-service management of Kafka infrastructure, including access control management. Automation of AsyncAPI document governance ensures consistency in the infrastructure at the pull request level.
resources:
- title: "Slides: AsyncAPI For Platform Self-Service: A GitOps Tale"
link: https://drive.google.com/file/d/1y67PI8NaITPPwZAiDF2Zs7ISfcIpqMV8/view?usp=sharing
2 changes: 0 additions & 2 deletions cypress/test/components/CaseStudyCard.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ import React from 'react';
import { mount } from 'cypress/react';
import CaseStudyCard from '../../../components/CaseStudyCard';
import CaseStudiesList from '../../../config/case-studies.json';
import AdoptersList from '../../../config/adopters.json';
import Casestudies from '../../../pages/casestudies';

describe('CaseStudyCard Component', () => {

Expand Down
5 changes: 0 additions & 5 deletions pages/404.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import React from 'react';
import NavBar from '../components/navigation/NavBar';
import StickyNavbar from '../components/navigation/StickyNavbar';
import Heading from '../components/typography/Heading';
import AnnouncementHero from '../components/campaigns/AnnoucementHero';
import Button from '../components/buttons/Button';
Expand All @@ -9,9 +7,6 @@ function ErrorPage() {
const image = '/img/illustrations/illustration.webp';
return (
<div className="text-center">
<StickyNavbar>
<NavBar className="max-w-screen-xl block px-4 sm:px-6 lg:px-8 mx-auto" />
</StickyNavbar>

<div className='items-center justify-center mt-20 flex-col md:flex-row'>
<div>
Expand Down
6 changes: 0 additions & 6 deletions pages/[lang]/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React from 'react';
import Container from '../../components/layout/Container';
import NavBar from '../../components/navigation/NavBar';
import Hero from '../../components/Hero';
import NewsletterSubscribe from '../../components/NewsletterSubscribe';
import Sponsors from '../../components/sponsors/Sponsors';
Expand All @@ -20,7 +19,6 @@ import TextLink from '../../components/typography/TextLink';
import GoldSponsors from '../../components/sponsors/GoldSponsors';
import SilverSponsors from '../../components/sponsors/SilverSponsors';
import SupportUs from '../../components/SupportUs/SupportUs';
import StickyNavbar from '../../components/navigation/StickyNavbar';
import GoogleCalendarButton from '../../components/buttons/GoogleCalendarButton';
import ICSFileButton from '../../components/buttons/ICSFileButton';
import SubscribeButton from '../../components/buttons/SubscribeButton';
Expand All @@ -38,10 +36,6 @@ function HomePage() {
return (
<>
<Head />
<StickyNavbar>
<NavBar className="max-w-screen-xl block px-4 sm:px-6 lg:px-8 mx-auto" />
</StickyNavbar>

<main id="main-content" className="scroll-mt-5">
<Container wide>
<Hero className="mb-24" />
Expand Down
5 changes: 5 additions & 0 deletions pages/_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ import {
} from "../lib/i18n";
import loadLocales from "../lib/locales";
import '../styles/globals.css'
import StickyNavbar from '../components/navigation/StickyNavbar';
import NavBar from '../components/navigation/NavBar';

function App({ Component, pageProps, router }) {

Expand All @@ -36,6 +38,9 @@ function App({ Component, pageProps, router }) {
<AlgoliaSearch>
<div className="flex flex-col min-h-screen">
<Banner />
<StickyNavbar>
<NavBar className="block max-w-screen-xl px-4 mx-auto sm:px-6 lg:px-8" />
</StickyNavbar>
<Layout>
<Component {...pageProps} />
<ScrollButton />
Expand Down
Loading

0 comments on commit 8fe296f

Please sign in to comment.