mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 13:08:01 +02:00
Changes:
- Added Authentication for Piped Accounts - Localization
This commit is contained in:
parent
8548a3646e
commit
de6572eee4
26 changed files with 1045 additions and 596 deletions
|
@ -1,5 +1,6 @@
|
|||
<script setup>
|
||||
import { useData, usePlayer } from '@/stores/player.js';
|
||||
import { useT } from '@/scripts/i18n.js';
|
||||
|
||||
const player = usePlayer(),
|
||||
data = useData();
|
||||
|
@ -9,7 +10,7 @@ defineEmits(['playthis']);
|
|||
|
||||
<template>
|
||||
<Transition name="fade">
|
||||
<div class="pl-modal placeholder">
|
||||
<div class="pl-modal placeholder" :data-placeholder="useT('playlist.add')">
|
||||
<template v-for="plurl in data.state.urls">
|
||||
<div class="pl-item" @click="$emit('playthis', plurl)">
|
||||
<span v-if="data.state.url == plurl.url" class="bars-wrap">
|
||||
|
@ -51,9 +52,6 @@ defineEmits(['playthis']);
|
|||
.placeholder:empty:before {
|
||||
--ico: '\f64d';
|
||||
}
|
||||
.placeholder:empty:after {
|
||||
--text: 'Add Songs to Playlist...';
|
||||
}
|
||||
.pl-item {
|
||||
padding: 1rem;
|
||||
margin: 0.125rem;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue