Skip to content

Commit

Permalink
Add toggle options button
Browse files Browse the repository at this point in the history
Signed-off-by: Sunik Kupfer <mail@sunik.de>
  • Loading branch information
sunkup authored and raimund-schluessler committed Jan 2, 2024
1 parent d163e8c commit 721efb3
Showing 1 changed file with 81 additions and 4 deletions.
85 changes: 81 additions & 4 deletions src/components/AppSidebar/RepeatItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,36 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
</div>
<RepeatSummary class="property-repeat__summary__content"
:recurrence-rule="recurrence" />
<Actions>
<ActionButton @click="toggleOptions">
<template #icon>
<component :is="toggleIcon" :size="20" decorative />
</template>
{{ toggleTitle }}
</ActionButton>
</Actions>

<div v-if="showOptions" class="property-repeat__options">
options
</div>
</div>
</template>

<script>
import { translate as t } from '@nextcloud/l10n'
import RepeatSummary from './RepeatItem/RepeatSummary.vue'
import Pencil from 'vue-material-design-icons/Pencil.vue'
import Check from 'vue-material-design-icons/Check.vue'
import { NcActions as Actions, NcActionButton as ActionButton } from '@nextcloud/vue'
export default {
components: {
RepeatSummary,
Actions,
ActionButton,
Pencil,
Check,
},
props: {
recurrence: {
Expand All @@ -58,8 +77,43 @@ export default {
default: null,
},
},
data() {
return {
showOptions: false,
}
},
computed: {
/**
* The name of the icon for the toggle options button
*
* @return {string}
*/
toggleIcon() {
if (this.showOptions) {
return 'Check'
}
return 'Pencil'
},
/**
* The text of the toggle options button
*
* @return {string}
*/
toggleTitle() {
if (this.showOptions) {
return this.t('calendar', 'Save')
}
return this.t('calendar', 'Edit')
},
},
methods: {
t,
/**
* Toggle visibility of the options
*/
toggleOptions() {
this.showOptions = !this.showOptions
},
},
}
</script>
Expand All @@ -80,10 +134,33 @@ export default {
flex-shrink: 0;
}
.property-repeat__summary__content {
display: flex;
align-items: center;
margin-bottom: 5px;
.property-repeat {
width: 100%;
&__summary {
display: flex;
align-items: center;
margin-bottom: 5px;
&__icon {
width: 34px;
height: 34px;
margin-left: -5px;
margin-right: 5px;
}
&__content {
flex: 1 auto;
padding: 0 7px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
&__options {
margin-bottom: 5px;
}
}
}
</style>

0 comments on commit 721efb3

Please sign in to comment.