2019-01-29 23:13:28 +01:00
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<q-list link separator no-border class="todo-menu">
|
|
|
|
|
<div v-for="field in menuPopupTodo" :key="field.value">
|
2019-03-11 19:16:39 +01:00
|
|
|
<q-item clickable v-ripple v-if="(field.value !== 130) && (field.value !== 100)" :icon="field.icon"
|
2019-01-29 23:13:28 +01:00
|
|
|
@click.native="clickMenu(field.value)">
|
2019-03-11 19:16:39 +01:00
|
|
|
<q-item-section avatar>
|
|
|
|
|
<q-icon :name="field.icon"/>
|
|
|
|
|
</q-item-section>
|
2019-01-29 23:13:28 +01:00
|
|
|
|
2019-03-11 19:16:39 +01:00
|
|
|
<q-item-section v-if="field.value !== 120" label class="item-menu">{{field.label}}</q-item-section>
|
2019-01-29 23:13:28 +01:00
|
|
|
|
2019-03-11 19:16:39 +01:00
|
|
|
<q-item-section side top v-if="field.value === 101">
|
2019-01-29 23:13:28 +01:00
|
|
|
<q-checkbox v-model="itemtodo.enableExpiring"/>
|
2019-03-11 19:16:39 +01:00
|
|
|
</q-item-section>
|
|
|
|
|
<q-item-section v-if="field.value === 110">
|
2019-01-29 23:13:28 +01:00
|
|
|
<q-checkbox v-model="itemtodo.completed"/>
|
2019-03-11 19:16:39 +01:00
|
|
|
</q-item-section>
|
2019-01-29 23:13:28 +01:00
|
|
|
|
2019-03-11 19:16:39 +01:00
|
|
|
|
|
|
|
|
<!--<q-item tag="label" v-ripple>-->
|
|
|
|
|
<!--<q-item-section side top>-->
|
|
|
|
|
<!--<q-checkbox v-model="check1" />-->
|
|
|
|
|
<!--</q-item-section>-->
|
|
|
|
|
|
|
|
|
|
<!--<q-item-section>-->
|
|
|
|
|
<!--<q-item-label>Notifications</q-item-label>-->
|
|
|
|
|
<!--<q-item-label caption>-->
|
|
|
|
|
<!--Notify me about updates to apps or games that I downloaded-->
|
|
|
|
|
<!--</q-item-label>-->
|
|
|
|
|
<!--</q-item-section>-->
|
|
|
|
|
<!--</q-item>-->
|
|
|
|
|
|
|
|
|
|
<!--<q-item tag="label" v-ripple>-->
|
|
|
|
|
<!--<q-item-section side top>-->
|
|
|
|
|
<!--<q-checkbox v-model="check2" />-->
|
|
|
|
|
<!--</q-item-section>-->
|
|
|
|
|
|
|
|
|
|
<!--<q-item-section>-->
|
|
|
|
|
<!--<q-item-label>Sound</q-item-label>-->
|
|
|
|
|
<!--<q-item-label caption>-->
|
|
|
|
|
<!--Auto-update apps at anytime. Data charges may apply-->
|
|
|
|
|
<!--</q-item-label>-->
|
|
|
|
|
<!--</q-item-section>-->
|
|
|
|
|
<!--</q-item>-->
|
|
|
|
|
|
|
|
|
|
<q-item-section v-if="field.value === 120">
|
2019-02-12 19:09:43 +01:00
|
|
|
<q-slider :class="$parent.menuProgress" v-model="itemtodo.progress" :min="0" :max="100"
|
|
|
|
|
:step="5"/>
|
|
|
|
|
|
2019-03-11 19:16:39 +01:00
|
|
|
</q-item-section>
|
|
|
|
|
<q-item-section v-if="field.value === 120">
|
2019-02-12 19:09:43 +01:00
|
|
|
<div>
|
2019-03-11 19:16:39 +01:00
|
|
|
<q-input v-model="itemtodo.progress"
|
|
|
|
|
class="menuInputProgress"
|
|
|
|
|
type="number"
|
|
|
|
|
suffix="%"
|
|
|
|
|
@change="val => { model = val }"
|
|
|
|
|
@keydown="KeychangeProgress"
|
|
|
|
|
/>
|
2019-01-29 23:13:28 +01:00
|
|
|
</div>
|
2019-03-11 19:16:39 +01:00
|
|
|
</q-item-section>
|
2019-01-29 23:13:28 +01:00
|
|
|
</q-item>
|
2019-03-11 19:16:39 +01:00
|
|
|
<q-item v-if="(field.value === 100)" :icon="field.icon"
|
2019-01-30 02:01:04 +01:00
|
|
|
@click.native="clickMenu(field.value)">
|
2019-03-11 19:16:39 +01:00
|
|
|
<q-item-section avatar>
|
|
|
|
|
<q-icon :name="field.icon" inverted color="primary"/>
|
|
|
|
|
</q-item-section>
|
|
|
|
|
<q-item-section class="item-menu">
|
|
|
|
|
{{field.label}}
|
|
|
|
|
</q-item-section>
|
2019-01-30 02:01:04 +01:00
|
|
|
</q-item>
|
2019-03-11 19:16:39 +01:00
|
|
|
<q-item clickable v-if="(field.value === 130)" :icon="field.icon"
|
2019-01-29 23:13:28 +01:00
|
|
|
@click.native="clickMenu(field.value)">
|
|
|
|
|
|
2019-03-11 19:16:39 +01:00
|
|
|
<q-item-section avatar>
|
|
|
|
|
<q-icon :name="$parent.iconPriority" inverted color="primary"/>
|
|
|
|
|
</q-item-section>
|
2019-01-29 23:13:28 +01:00
|
|
|
|
2019-03-11 19:16:39 +01:00
|
|
|
<q-item-section>
|
2019-01-29 23:13:28 +01:00
|
|
|
<q-btn-dropdown ref="dropdown_priority" flat :label="field.label"
|
|
|
|
|
>
|
2019-03-11 19:16:39 +01:00
|
|
|
<q-list bordered>
|
|
|
|
|
<q-item clickable v-ripple v-for="field in selectPriority" :key="field.value"
|
2019-01-29 23:13:28 +01:00
|
|
|
@click.native="setPriority(field.value)">
|
2019-03-11 19:16:39 +01:00
|
|
|
<q-item-section avatar>
|
|
|
|
|
<q-icon :name="field.icon" inverted color="primary"/>
|
|
|
|
|
</q-item-section>
|
|
|
|
|
<q-item-section>
|
|
|
|
|
{{field.label}}
|
|
|
|
|
</q-item-section>
|
2019-01-29 23:13:28 +01:00
|
|
|
</q-item>
|
|
|
|
|
</q-list>
|
|
|
|
|
</q-btn-dropdown>
|
2019-03-11 19:16:39 +01:00
|
|
|
</q-item-section>
|
2019-01-29 23:13:28 +01:00
|
|
|
|
|
|
|
|
</q-item>
|
|
|
|
|
</div>
|
|
|
|
|
</q-list>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" src="./SubMenus.ts">
|
|
|
|
|
</script>
|
2019-02-02 20:13:06 +01:00
|
|
|
|
2019-02-12 19:09:43 +01:00
|
|
|
<style lang="scss">
|
2019-02-02 20:13:06 +01:00
|
|
|
@import './SubMenus.scss';
|
|
|
|
|
</style>
|