Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jeff
funkwhale
Commits
08d67723
Commit
08d67723
authored
Feb 21, 2022
by
Ciaran Ainsworth
Browse files
Fix broken imports
parent
e9c4bfe9
Changes
137
Hide whitespace changes
Inline
Side-by-side
front/src/audio/volume.js
View file @
08d67723
const
DYNAMIC_RANGE
=
40
// dB
function
toLinearVolumeScale
(
v
)
{
export
function
toLinearVolumeScale
(
v
)
{
if
(
v
<=
0.0
)
{
return
0.0
}
...
...
@@ -11,7 +11,7 @@ function toLinearVolumeScale (v) {
return
Math
.
pow
(
10
,
dB
/
20
)
}
function
toLogarithmicVolumeScale
(
v
)
{
export
function
toLogarithmicVolumeScale
(
v
)
{
if
(
v
<=
0.0
)
{
return
0.0
}
...
...
front/src/components/Footer.vue
View file @
08d67723
...
...
@@ -212,7 +212,7 @@
<
script
>
import
{
mapState
}
from
'
vuex
'
import
ThemesMixin
from
'
@/components/mixins/Themes
'
import
ThemesMixin
from
'
@/components/mixins/Themes
.vue
'
import
_
from
'
@/lodash
'
export
default
{
...
...
front/src/components/Queue.vue
View file @
08d67723
...
...
@@ -346,7 +346,7 @@ import { mapState, mapGetters, mapActions } from 'vuex'
import
$
from
'
jquery
'
import
moment
from
'
moment
'
import
lodash
from
'
@/lodash
'
import
time
from
'
@/utils/time
'
import
time
from
'
@/utils/time
.js
'
import
{
createFocusTrap
}
from
'
focus-trap
'
export
default
{
...
...
front/src/components/admin/SettingsGroup.vue
View file @
08d67723
...
...
@@ -162,7 +162,7 @@ import lodash from '@/lodash'
export
default
{
components
:
{
SignupFormBuilder
:
()
=>
import
(
/* webpackChunkName: "signup-form-builder" */
'
@/components/admin/SignupFormBuilder
'
)
SignupFormBuilder
:
()
=>
import
(
/* webpackChunkName: "signup-form-builder" */
'
@/components/admin/SignupFormBuilder
.vue
'
)
},
props
:
{
group
:
{
type
:
Object
,
required
:
true
},
...
...
front/src/components/admin/SignupFormBuilder.vue
View file @
08d67723
...
...
@@ -163,7 +163,7 @@
<
script
>
import
lodash
from
'
@/lodash
'
import
SignupForm
from
'
@/components/auth/SignupForm
'
import
SignupForm
from
'
@/components/auth/SignupForm
.vue
'
function
arrayMove
(
arr
,
oldIndex
,
newIndex
)
{
if
(
newIndex
>=
arr
.
length
)
{
...
...
front/src/components/audio/ChannelCard.vue
View file @
08d67723
...
...
@@ -75,8 +75,8 @@
</
template
>
<
script
>
import
PlayButton
from
'
@/components/audio/PlayButton
'
import
TagsList
from
'
@/components/tags/List
'
import
PlayButton
from
'
@/components/audio/PlayButton
.vue
'
import
TagsList
from
'
@/components/tags/List
.vue
'
import
{
momentFormat
}
from
'
@/filters
'
import
moment
from
'
moment
'
...
...
front/src/components/audio/ChannelEntries.vue
View file @
08d67723
...
...
@@ -56,8 +56,8 @@
<
script
>
import
_
from
'
@/lodash
'
import
axios
from
'
axios
'
import
PodcastTable
from
'
@/components/audio/podcast/Table
'
import
TrackTable
from
'
@/components/audio/track/Table
'
import
PodcastTable
from
'
@/components/audio/podcast/Table
.vue
'
import
TrackTable
from
'
@/components/audio/track/Table
.vue
'
export
default
{
components
:
{
...
...
front/src/components/audio/ChannelEntryCard.vue
View file @
08d67723
...
...
@@ -77,8 +77,8 @@
</template>
<
script
>
import
PlayButton
from
'
@/components/audio/PlayButton
'
import
TrackFavoriteIcon
from
'
@/components/favorites/TrackFavoriteIcon
'
import
PlayButton
from
'
@/components/audio/PlayButton
.vue
'
import
TrackFavoriteIcon
from
'
@/components/favorites/TrackFavoriteIcon
.vue
'
import
{
mapGetters
}
from
'
vuex
'
export
default
{
...
...
front/src/components/audio/ChannelForm.vue
View file @
08d67723
...
...
@@ -249,8 +249,8 @@
<
script
>
import
axios
from
'
axios
'
import
AttachmentInput
from
'
@/components/common/AttachmentInput
'
import
TagsSelector
from
'
@/components/library/TagsSelector
'
import
AttachmentInput
from
'
@/components/common/AttachmentInput
.vue
'
import
TagsSelector
from
'
@/components/library/TagsSelector
.vue
'
function
slugify
(
text
)
{
return
text
.
toString
().
toLowerCase
()
...
...
front/src/components/audio/ChannelSerieCard.vue
View file @
08d67723
...
...
@@ -62,7 +62,7 @@
</
template
>
<
script
>
import
PlayButton
from
'
@/components/audio/PlayButton
'
import
PlayButton
from
'
@/components/audio/PlayButton
.vue
'
export
default
{
components
:
{
...
...
front/src/components/audio/ChannelSeries.vue
View file @
08d67723
...
...
@@ -55,8 +55,8 @@
<
script
>
import
_
from
'
@/lodash
'
import
axios
from
'
axios
'
import
ChannelSerieCard
from
'
@/components/audio/ChannelSerieCard
'
import
AlbumCard
from
'
@/components/audio/album/Card
'
import
ChannelSerieCard
from
'
@/components/audio/ChannelSerieCard
.vue
'
import
AlbumCard
from
'
@/components/audio/album/Card
.vue
'
export
default
{
components
:
{
...
...
front/src/components/audio/ChannelsWidget.vue
View file @
08d67723
...
...
@@ -39,7 +39,7 @@
<
script
>
import
_
from
'
@/lodash
'
import
axios
from
'
axios
'
import
ChannelCard
from
'
@/components/audio/ChannelCard
'
import
ChannelCard
from
'
@/components/audio/ChannelCard
.vue
'
export
default
{
components
:
{
...
...
front/src/components/audio/PlayButton.vue
View file @
08d67723
...
...
@@ -126,8 +126,8 @@
<
script
>
import
jQuery
from
'
jquery
'
import
ReportMixin
from
'
@/components/mixins/Report
'
import
PlayOptionsMixin
from
'
@/components/mixins/PlayOptions
'
import
ReportMixin
from
'
@/components/mixins/Report
.vue
'
import
PlayOptionsMixin
from
'
@/components/mixins/PlayOptions
.vue
'
export
default
{
mixins
:
[
ReportMixin
,
PlayOptionsMixin
],
...
...
front/src/components/audio/Search.vue
View file @
08d67723
...
...
@@ -72,8 +72,8 @@
import
_
from
'
@/lodash
'
import
axios
from
'
axios
'
import
logger
from
'
@/logging
'
import
AlbumCard
from
'
@/components/audio/album/Card
'
import
ArtistCard
from
'
@/components/audio/artist/Card
'
import
AlbumCard
from
'
@/components/audio/album/Card
.vue
'
import
ArtistCard
from
'
@/components/audio/artist/Card
.vue
'
export
default
{
components
:
{
...
...
front/src/components/audio/SearchBar.vue
View file @
08d67723
...
...
@@ -24,7 +24,7 @@
import
jQuery
from
'
jquery
'
import
router
from
'
@/router
'
import
lodash
from
'
@/lodash
'
import
GlobalEvents
from
'
@/components/utils/global-events
'
import
GlobalEvents
from
'
@/components/utils/global-events
.vue
'
export
default
{
components
:
{
...
...
front/src/components/audio/album/Card.vue
View file @
08d67723
...
...
@@ -54,7 +54,7 @@
</
template
>
<
script
>
import
PlayButton
from
'
@/components/audio/PlayButton
'
import
PlayButton
from
'
@/components/audio/PlayButton
.vue
'
export
default
{
components
:
{
...
...
front/src/components/audio/artist/Card.vue
View file @
08d67723
...
...
@@ -61,8 +61,8 @@
</
template
>
<
script
>
import
PlayButton
from
'
@/components/audio/PlayButton
'
import
TagsList
from
'
@/components/tags/List
'
import
PlayButton
from
'
@/components/audio/PlayButton
.vue
'
import
TagsList
from
'
@/components/tags/List
.vue
'
export
default
{
components
:
{
...
...
front/src/components/audio/artist/Widget.vue
View file @
08d67723
...
...
@@ -52,7 +52,7 @@
<
script
>
import
axios
from
'
axios
'
import
ArtistCard
from
'
@/components/audio/artist/Card
'
import
ArtistCard
from
'
@/components/audio/artist/Card
.vue
'
export
default
{
components
:
{
...
...
front/src/components/audio/podcast/MobileRow.vue
View file @
08d67723
...
...
@@ -139,9 +139,9 @@
<
script
>
import
{
mapActions
,
mapGetters
}
from
'
vuex
'
import
TrackFavoriteIcon
from
'
@/components/favorites/TrackFavoriteIcon
'
import
TrackModal
from
'
@/components/audio/track/Modal
'
import
PlayOptionsMixin
from
'
@/components/mixins/PlayOptions
'
import
TrackFavoriteIcon
from
'
@/components/favorites/TrackFavoriteIcon
.vue
'
import
TrackModal
from
'
@/components/audio/track/Modal
.vue
'
import
PlayOptionsMixin
from
'
@/components/mixins/PlayOptions
.vue
'
export
default
{
...
...
front/src/components/audio/podcast/Modal.vue
View file @
08d67723
...
...
@@ -226,9 +226,9 @@
</
template
>
<
script
>
import
Modal
from
'
@/components/semantic/Modal
'
import
ReportMixin
from
'
@/components/mixins/Report
'
import
PlayOptionsMixin
from
'
@/components/mixins/PlayOptions
'
import
Modal
from
'
@/components/semantic/Modal
.vue
'
import
ReportMixin
from
'
@/components/mixins/Report
.vue
'
import
PlayOptionsMixin
from
'
@/components/mixins/PlayOptions
.vue
'
export
default
{
components
:
{
...
...
Prev
1
2
3
4
5
…
7
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment