chore: remove app bluepringts

This commit is contained in:
MilosPaunovic
2025-12-17 11:47:19 +01:00
parent 77081c2201
commit 8bf5d9b431
3 changed files with 11 additions and 29 deletions

View File

@@ -1,24 +1,15 @@
<template>
<TopNavBar :title="routeInfo.title" />
<Layout
:title="t(`demos.blueprints-${props.type}.title`)"
:image="{
source: sourceImg,
alt: t(`demos.blueprints-${props.type}.title`),
:title="t(`demos.blueprints.title`)"
:image="{source: sourceImg, alt: t(`demos.blueprints.title`)}"
:video="{
source: 'https://www.youtube.com/embed/qbGfK-FJi6s?si=UTeK3V5Cj8FRHH91',
}"
v-bind="
props.type === 'flow'
? {
video: {
source: 'https://www.youtube.com/embed/qbGfK-FJi6s?si=UTeK3V5Cj8FRHH91',
},
}
: {}
"
:embed="props.embed"
>
<template #message>
{{ $t(`demos.blueprints-${props.type}.message`) }}
{{ $t(`demos.blueprints.message`) }}
</template>
</Layout>
</template>
@@ -35,14 +26,9 @@
const {t} = useI18n();
const props = defineProps({
embed: {type: Boolean, default: false},
type: {type: String, required: true},
});
const routeInfo = computed(() => ({
title: t(`demos.blueprints-${props.type}.title`),
}));
const routeInfo = computed(() => ({title: t("demos.blueprints.title")}));
useRouteContext(routeInfo);
</script>
const props = defineProps({embed: {type: Boolean, default: false}});
</script>

View File

@@ -1,5 +1,5 @@
<template>
<DemoBlueprints v-if="props.tab === 'custom' || props.kind === 'app'" :type="props.kind" />
<DemoBlueprints v-if="props.tab === 'custom'" />
<template v-else>
<TopNavBar v-if="!props.embed" :title="routeInfo.title" />
<DottedLayout

View File

@@ -912,14 +912,10 @@
"title": "Manage Infrastructure Across Your Instance",
"message": "Kestra Enterprise Edition provides an operational dashboard to help you observe the health of your platform and track the uptime metrics of all services such as a.o. Workers, Schedulers, and Executors. From the same page, you can also create Announcements to notify your users about planned downtime, and you can enter a maintenance mode which temporarily puts all services and workflow executions into a paused state to perform an upgrade."
},
"blueprints-flow": {
"blueprints": {
"title": "Add Custom Blueprints",
"message": "In Kestra Enterprise Edition, you can create custom Blueprints only available to your organization. You can use them as best-practices templates to share, centralize, and document commonly used workflows in your team."
},
"blueprints-app": {
"title": "Add Apps Blueprints",
"message": "In Kestra Enterprise Edition, you can create Apps Blueprints only available to your organization. You can use them as best-practices templates to share, centralize, and document commonly used workflows in your team."
},
"namespace": {
"edit": {
"title": "Upgrade Your Namespace Management",