53 lines
1.2 KiB
Vue
53 lines
1.2 KiB
Vue
<template>
|
|
<Page>
|
|
<StackLayout class="dialogContainer" :class="isLightMode">
|
|
<!-- :class="isLightTheme ? 'light' : 'dark'" -->
|
|
<Label class="dialogTitle orkm" :text="title" />
|
|
<ListView
|
|
width="100%"
|
|
:height="height"
|
|
for="item in list"
|
|
@itemTap="tapAction"
|
|
separatorColor="transparent"
|
|
>
|
|
<v-template>
|
|
<StackLayout class="actionItem">
|
|
<Label :text="item" />
|
|
</StackLayout>
|
|
</v-template>
|
|
</ListView>
|
|
<GridLayout rows="auto" columns="auto, *, auto">
|
|
<Label
|
|
v-if="action"
|
|
col="0"
|
|
class="cancel orkm pull-left"
|
|
:text="action"
|
|
@tap="$modal.close(action)"
|
|
/>
|
|
<Label
|
|
col="2"
|
|
class="cancel orkm pull-right"
|
|
text="CANCEL"
|
|
@tap="$modal.close(false)"
|
|
/>
|
|
</GridLayout>
|
|
</StackLayout>
|
|
</Page>
|
|
</template>
|
|
|
|
<script>
|
|
import { Application } from "@nativescript/core"
|
|
export default {
|
|
props: ["title", "list", "height", "action"],
|
|
computed: {
|
|
isLightMode() {
|
|
return Application.systemAppearance()
|
|
},
|
|
},
|
|
methods: {
|
|
tapAction({ item }) {
|
|
this.$modal.close(item)
|
|
},
|
|
},
|
|
}
|
|
</script>
|