mirror of
https://github.com/koel/koel
synced 2024-11-25 05:30:20 +00:00
51 lines
1.5 KiB
Vue
51 lines
1.5 KiB
Vue
<template>
|
||
<div>
|
||
<div v-if="isPlus" class="form-row">
|
||
<label>
|
||
<CheckBox v-model="preferences.make_uploads_public" name="make_upload_public" />
|
||
Make uploaded songs public by default
|
||
</label>
|
||
</div>
|
||
<div v-if="isPhone" class="form-row">
|
||
<label>
|
||
<CheckBox v-model="preferences.show_now_playing_notification" name="notify" />
|
||
Show “Now Playing” notification
|
||
</label>
|
||
</div>
|
||
<div v-if="!isPhone" class="form-row">
|
||
<label>
|
||
<CheckBox v-model="preferences.confirm_before_closing" name="confirm_closing" />
|
||
Confirm before closing Koel
|
||
</label>
|
||
</div>
|
||
<div v-if="isPhone" class="form-row">
|
||
<label>
|
||
<CheckBox v-model="preferences.transcode_on_mobile" name="transcode_on_mobile" />
|
||
Convert and play media at 128kbps on mobile
|
||
</label>
|
||
</div>
|
||
<div class="form-row">
|
||
<label>
|
||
<CheckBox v-model="preferences.show_album_art_overlay" name="show_album_art_overlay" />
|
||
Show a translucent, blurred overlay of the current album’s art
|
||
</label>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts" setup>
|
||
import isMobile from 'ismobilejs'
|
||
import { preferenceStore as preferences } from '@/stores'
|
||
import { useKoelPlus } from '@/composables'
|
||
|
||
import CheckBox from '@/components/ui/CheckBox.vue'
|
||
|
||
const isPhone = isMobile.phone
|
||
const { isPlus } = useKoelPlus()
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
label {
|
||
font-size: 1rem;
|
||
}
|
||
</style>
|