Skip to content

Commit

Permalink
rename/remove matrix fields (#630)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeluce authored Jan 13, 2025
1 parent 55db37a commit 5f6c508
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 61 deletions.
2 changes: 0 additions & 2 deletions shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ export interface Vendor {
logo: any;
slugKey: string;
useCases: {
odsReplication: HasFeature;
databaseReplication: string;
dataMigration: HasFeature;
dataIntegration: HasFeature;
Expand All @@ -137,7 +136,6 @@ export interface Vendor {
streaming: string;
thirdParty: HasFeature;
customSdk: HasFeature;
adminApi: HasFeature;
};
features: {
batchingStreaming: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ import TableRows from '../TableRows';
const rows = [
{ label: 'Number of connectors', key: 'count' },
{ label: 'Streaming connectors', key: 'streaming' },
{ label: 'Support for 3rd party connectors', key: 'thirdParty' },
{ label: '3rd party connectors', key: 'thirdParty' },
{ label: 'Custom SDK', key: 'customSdk' },
{ label: 'API (for admin)', key: 'adminApi' },
];

const Connectors = ({ xVendor, yVendor, estuaryVendor }: ComparisonVendors) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import TableRows from '../TableRows';
const rows = [
{ label: 'Batch and streaming', key: 'batchingStreaming' },
{ label: 'Delivery guarantee', key: 'deliveryGuarantee' },
{ label: 'Load write method', key: 'loadWhiteMethod' },
{ label: 'DataOps support', key: 'dataOps' },
{ label: 'ELT transforms', key: 'eltTransforms' },
{ label: 'ETL transforms', key: 'etlTransforms' },
{ label: 'Load write method', key: 'loadWhiteMethod' },
{ label: 'DataOps support', key: 'dataOps' },
{ label: 'Schema inference and drift', key: 'schemaInference' },
{ label: 'Store and replay', key: 'storeReplay' },
{ label: 'Time travel', key: 'timeTravel' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ComparisonVendors } from '../shared';
import TableRows from '../TableRows';

const rows = [
{ label: 'Data Source Authentication', key: 'dataSourceAuth' },
{ label: 'Data source authentication', key: 'dataSourceAuth' },
{ label: 'Encryption', key: 'encryption' },
];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const TheAbilities = ({
}: ComparisonVendors) => {
return (
<TableRows
title="The abilities"
title="Abilities"
rows={rows}
xVendor={xVendor}
yVendor={yVendor}
Expand Down
9 changes: 4 additions & 5 deletions src/components/EtlToolsXvsYPage/Comparison/UseCases/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ import TableRows from '../TableRows';

const rows = [
{
label: 'Database replication (CDC) - sources',
label: 'Database replication (CDC)',
key: 'databaseReplication',
},
{ label: 'Replication to ODS', key: 'odsReplication' },
{ label: 'Op. data integration', key: 'dataIntegration' },
{ label: 'Operational integration', key: 'dataIntegration' },
{ label: 'Data migration', key: 'dataMigration' },
{ label: 'Stream processing', key: 'streamProcessing' },
{ label: 'Operational Analytics', key: 'operationalAnalytics' },
{ label: 'AI Pipelines', key: 'aiPipelines' },
{ label: 'Operational analytics', key: 'operationalAnalytics' },
{ label: 'AI pipelines', key: 'aiPipelines' },
];

const UseCases = ({ xVendor, yVendor, estuaryVendor }: ComparisonVendors) => {
Expand Down
48 changes: 0 additions & 48 deletions src/templates/etl-tools/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,6 @@ export const pageQuery = graphql`
}
slugKey
useCases: UseCases {
odsReplication: ODS_Replication {
icon: Icon
subText: Sub_Text {
data {
subText: Sub_Text
}
}
}
databaseReplication: Database_Replication
dataMigration: Data_Migration {
icon: Icon
Expand Down Expand Up @@ -141,14 +133,6 @@ export const pageQuery = graphql`
}
}
}
adminApi: Admin_API {
icon: Icon
subText: Sub_Text {
data {
subText: Sub_Text
}
}
}
}
features: Features {
batchingStreaming: Batching_Streaming
Expand Down Expand Up @@ -308,14 +292,6 @@ export const pageQuery = graphql`
}
slugKey
useCases: UseCases {
odsReplication: ODS_Replication {
icon: Icon
subText: Sub_Text {
data {
subText: Sub_Text
}
}
}
databaseReplication: Database_Replication
dataMigration: Data_Migration {
icon: Icon
Expand Down Expand Up @@ -377,14 +353,6 @@ export const pageQuery = graphql`
}
}
}
adminApi: Admin_API {
icon: Icon
subText: Sub_Text {
data {
subText: Sub_Text
}
}
}
}
features: Features {
batchingStreaming: Batching_Streaming
Expand Down Expand Up @@ -544,14 +512,6 @@ export const pageQuery = graphql`
}
slugKey
useCases: UseCases {
odsReplication: ODS_Replication {
icon: Icon
subText: Sub_Text {
data {
subText: Sub_Text
}
}
}
databaseReplication: Database_Replication
dataMigration: Data_Migration {
icon: Icon
Expand Down Expand Up @@ -613,14 +573,6 @@ export const pageQuery = graphql`
}
}
}
adminApi: Admin_API {
icon: Icon
subText: Sub_Text {
data {
subText: Sub_Text
}
}
}
}
features: Features {
batchingStreaming: Batching_Streaming
Expand Down

0 comments on commit 5f6c508

Please sign in to comment.