- Added Authentication for Piped Accounts
- Localization
This commit is contained in:
Shiny Nematoda 2022-09-03 06:27:27 +00:00
parent 8548a3646e
commit de6572eee4
No known key found for this signature in database
GPG key ID: 6506D50F5613A42D
26 changed files with 1045 additions and 596 deletions

View file

@ -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;