docs/daprdocs/layouts/partials/components/pubsub.html

45 lines
1.5 KiB
HTML

{{- $groups := dict
" Generic" $.Site.Data.components.pubsub.generic
"Microsoft Azure" $.Site.Data.components.pubsub.azure
"Google Cloud Platform (GCP)" $.Site.Data.components.pubsub.gcp
"Amazon Web Services (AWS)" $.Site.Data.components.pubsub.aws
}}
{{ range $group, $components := $groups }}
<h3>{{ $group }}</h3>
<table width="100%">
<tr>
<th>Component</th>
<th>Bulk Publish</th>
<th>Bulk Subscribe</th>
<th>Status</th>
<th>Component version</th>
<th>Since runtime version</th>
</tr>
{{ range sort $components "component" }}
<tr>
<td><a href="/reference/components-reference/supported-pubsub/{{ .link }}/">{{ .component }}</a>
</td>
<td align="center">
{{ if .features.bulkPublish }}
<span role="img" aria-label="Bulk publish supported"></span>
{{else}}
<img src="/images/emptybox.png" alt="Bulk publish not supported" aria-label="Bulk publish not supported">
{{ end }}
</td>
<td align="center">
{{ if .features.bulkSubscribe }}
<span role="img" aria-label="Bulk subscribe supported"></span>
{{else}}
<img src="/images/emptybox.png" alt="Bulk subscribe not supported" aria-label="Bulk subscribe not supported">
{{ end }}
</td>
<td>{{ .state }}</td>
<td>{{ .version }}</td>
<td>{{ .since }}</td>
</tr>
{{ end }}
</table>
{{ end }}
{{ partial "components/componenttoc.html" . }}