summaryrefslogtreecommitdiff
path: root/client/components/UI
diff options
context:
space:
mode:
Diffstat (limited to 'client/components/UI')
-rw-r--r--client/components/UI/AudioPlayerView.jsx19
-rw-r--r--client/components/UI/Link.jsx8
2 files changed, 8 insertions, 19 deletions
diff --git a/client/components/UI/AudioPlayerView.jsx b/client/components/UI/AudioPlayerView.jsx
index d2c9982..e715c27 100644
--- a/client/components/UI/AudioPlayerView.jsx
+++ b/client/components/UI/AudioPlayerView.jsx
@@ -1,19 +1,21 @@
import { h, Component } from 'preact'
-
+import { pngpath, mp3path } from '../../vendor/paths'
const audio = document.createElement('audio')
export default function AudioPlayerView (props) {
if (props.file) {
document.body.style.backgroundImage = 'url(' + pngpath(props.file) + ')'
audio.src = mp3path(props.file)
+ audio.currentTime = 0
audio.play()
return (
- <div class='audioPlayer'>
+ <div class='audioPlayer' onClick={() => audio.paused ? audio.play() : audio.pause()}>
Playing {props.file.name}
</div>
)
}
else {
+ audio.pause()
return (
<div class='audioPlayer'>
Not Playing
@@ -21,16 +23,3 @@ export default function AudioPlayerView (props) {
)
}
}
-
-function filepath (file) {
- return '/data/' + file.folder_id + '/' + encodeURIComponent(file.name)
-}
-function mp3path (file) {
- if (file.mime !== 'audio/mp3') {
- return filepath(file) + '.mp3'
- }
- return filepath(file)
-}
-function pngpath (file) {
- return filepath(file) + '.png'
-}
diff --git a/client/components/UI/Link.jsx b/client/components/UI/Link.jsx
index d71582b..b4d2d28 100644
--- a/client/components/UI/Link.jsx
+++ b/client/components/UI/Link.jsx
@@ -2,15 +2,15 @@ import { h, Component } from 'preact'
import React from 'react'
// import PropTypes from 'prop-types'
-const Link = ({ active, children, onClick, disabled }) => {
+const Link = ({ href, active, children, onClick, selected, disabled }) => {
if (active) {
return <span>{children}</span>
}
- const className = disabled ? 'disabled' : ''
-
+ const className = disabled ? 'disabled' :
+ selected ? 'selected' : ''
return (
// eslint-disable-next-line
- <a href="#"
+ <a href={href || '#'}
class={className}
onClick={e => {
e.preventDefault()