mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
77 lines
1.6 KiB
Vue
77 lines
1.6 KiB
Vue
<template>
|
|
<div class="extra-controls" data-testid="other-controls">
|
|
<div class="wrapper">
|
|
<a
|
|
v-koel-tooltip.top
|
|
class="visualizer-btn"
|
|
data-testid="toggle-visualizer-btn"
|
|
href="/#/visualizer"
|
|
title="Show the visualizer"
|
|
>
|
|
<icon :icon="faBolt"/>
|
|
</a>
|
|
|
|
<button
|
|
v-if="useEqualizer"
|
|
v-koel-tooltip.top
|
|
:class="{ active: showEqualizer }"
|
|
class="equalizer"
|
|
title="Show equalizer"
|
|
type="button"
|
|
@click.prevent="showEqualizer"
|
|
>
|
|
<icon :icon="faSliders"/>
|
|
</button>
|
|
|
|
<Volume/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { faBolt, faSliders } from '@fortawesome/free-solid-svg-icons'
|
|
import { ref } from 'vue'
|
|
import { eventBus, isAudioContextSupported as useEqualizer, requireInjection } from '@/utils'
|
|
import { CurrentSongKey } from '@/symbols'
|
|
|
|
import Volume from '@/components/ui/Volume.vue'
|
|
|
|
const song = requireInjection(CurrentSongKey, ref(null))
|
|
|
|
const showEqualizer = () => eventBus.emit('MODAL_SHOW_EQUALIZER')
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.extra-controls {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
position: relative;
|
|
width: 320px;
|
|
color: var(--color-text-secondary);
|
|
padding: 0 2rem;
|
|
|
|
.wrapper {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
button {
|
|
color: currentColor;
|
|
transition: color 0.2s ease-in-out;
|
|
|
|
&:hover {
|
|
color: var(--color-text-primary);
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
width: auto;
|
|
|
|
.visualizer-btn {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
</style>
|