Feature: Support card options in widget and dashboard #594 (#609)

This commit is contained in:
Nithin David Thomas 2020-03-12 21:23:52 +05:30 committed by GitHub
parent 260e40831a
commit fb17d34b8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 143 additions and 0 deletions

View file

@ -0,0 +1,60 @@
<template>
<a
v-if="isLink"
:key="action.uri"
class="action-button button"
:href="action.uri"
>
{{ action.text }}
</a>
<button
v-else
:key="action.payload"
class="action-button button"
@click="onClick"
>
{{ action.text }}
</button>
</template>
<script>
export default {
components: {},
props: {
action: {
type: Object,
default: () => {},
},
},
computed: {
isLink() {
return this.action.type === 'link';
},
},
methods: {
onClick() {
// Do postback here
},
},
};
</script>
<style scoped lang="scss">
@import '~widget/assets/scss/variables.scss';
@import '~dashboard/assets/scss/mixins.scss';
.action-button {
width: 100%;
padding: 0;
max-height: 34px;
margin-top: $space-smaller;
border-radius: $space-micro;
font-weight: $font-weight-medium;
+ .action-button {
background: white;
@include thin-border($color-woot);
color: $color-woot;
}
}
</style>