0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-05-19 12:42:11 +00:00
nextcloud_server/apps/workflowengine/src/components/Operation.vue
Ferdinand Thiessen b06f5ba4c4
refactor: Migrate nextcloud-vue usage to new import schema
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2025-02-20 02:28:13 +01:00

44 lines
1 KiB
Vue

<!--
- SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<div class="actions__item" :class="{'colored': colored}" :style="{ backgroundColor: colored ? operation.color : 'transparent' }">
<div class="icon" :class="operation.iconClass" :style="{ backgroundImage: operation.iconClass ? '' : `url(${operation.icon})` }" />
<div class="actions__item__description">
<h3>{{ operation.name }}</h3>
<small>{{ operation.description }}</small>
<NcButton v-if="colored">
{{ t('workflowengine', 'Add new flow') }}
</NcButton>
</div>
<div class="actions__item_options">
<slot />
</div>
</div>
</template>
<script>
import NcButton from '@nextcloud/vue/components/NcButton'
export default {
name: 'Operation',
components: {
NcButton,
},
props: {
operation: {
type: Object,
required: true,
},
colored: {
type: Boolean,
default: true,
},
},
}
</script>
<style scoped lang="scss">
@use "./../styles/operation" as *;
</style>