2021-03-21 17:02:04 +00:00
|
|
|
<template>
|
2021-04-01 10:55:35 +00:00
|
|
|
<Page @loaded="onPageLoad" actionBarHidden="true">
|
|
|
|
<GridLayout rows="*, auto" columns="auto, *">
|
|
|
|
<ListView
|
|
|
|
colSpan="2"
|
|
|
|
rowSpan="2"
|
|
|
|
class="options-list"
|
|
|
|
@loaded="listViewLoad"
|
|
|
|
for="item in items"
|
|
|
|
>
|
|
|
|
<v-template if="$index == 0">
|
|
|
|
<Label class="pageTitle" :text="'rest' | L" />
|
|
|
|
</v-template>
|
|
|
|
<v-template if="$index == 5">
|
|
|
|
<Label class="group-info sub tw" :text="'restInfo' | L" />
|
|
|
|
</v-template>
|
|
|
|
<v-template if="$index == 6">
|
|
|
|
<StackLayout class="listSpace"> </StackLayout>
|
|
|
|
</v-template>
|
2021-03-21 17:02:04 +00:00
|
|
|
<v-template>
|
|
|
|
<GridLayout
|
|
|
|
columns="auto, *"
|
2021-04-01 10:55:35 +00:00
|
|
|
class="option"
|
|
|
|
@touch="touch($event, item.type)"
|
2021-03-21 17:02:04 +00:00
|
|
|
>
|
2021-04-01 10:55:35 +00:00
|
|
|
<Label class="ico" :text="icon.reset" />
|
|
|
|
<Label col="1" :text="item.title | L" class="info" />
|
2021-03-21 17:02:04 +00:00
|
|
|
</GridLayout>
|
|
|
|
</v-template>
|
|
|
|
</ListView>
|
2021-04-01 10:55:35 +00:00
|
|
|
<GridLayout row="1" class="appbar" rows="*" columns="auto, *">
|
|
|
|
<Button class="ico" :text="icon.back" @tap="$navigateBack()" />
|
|
|
|
</GridLayout>
|
2021-03-21 17:02:04 +00:00
|
|
|
</GridLayout>
|
|
|
|
</Page>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { Observable } from "@nativescript/core";
|
|
|
|
import { localize } from "@nativescript/localize";
|
|
|
|
import * as Toast from "nativescript-toast";
|
|
|
|
import { mapState, mapActions } from "vuex";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
computed: {
|
|
|
|
...mapState(["icon"]),
|
|
|
|
items() {
|
|
|
|
return [
|
2021-04-01 10:55:35 +00:00
|
|
|
{},
|
2021-03-21 17:02:04 +00:00
|
|
|
{
|
|
|
|
type: "cuisines",
|
|
|
|
title: "restCuiL",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "categories",
|
|
|
|
title: "restCatL",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "yieldUnits",
|
|
|
|
title: "restYUL",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "units",
|
|
|
|
title: "restUL",
|
|
|
|
},
|
2021-04-01 10:55:35 +00:00
|
|
|
{},
|
|
|
|
{},
|
2021-03-21 17:02:04 +00:00
|
|
|
];
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
...mapActions(["resetListItemsAction"]),
|
|
|
|
onPageLoad(args) {
|
|
|
|
const page = args.object;
|
|
|
|
page.bindingContext = new Observable();
|
|
|
|
},
|
|
|
|
// RESET
|
|
|
|
resetListItems(listName) {
|
|
|
|
this.resetListItemsAction(listName);
|
|
|
|
Toast.makeText(localize("restDone")).show();
|
|
|
|
},
|
2021-04-01 10:55:35 +00:00
|
|
|
touch({ object, action }, type) {
|
|
|
|
object.className = action.match(/down|move/) ? "option fade" : "option";
|
|
|
|
if (action == "up") this.resetListItems(type);
|
|
|
|
},
|
2021-03-21 17:02:04 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|