mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
fix(ui): fix make dev
(#3795)
1. For some bizarre reason, importing inflection by itself is undefined. But you can import specific functions 2. Per https://github.com/vite-pwa/vite-plugin-pwa/issues/419, `type: 'module',` is only for non-chromium browsers
This commit is contained in:
parent
5c67297dce
commit
a28462a7ab
8 changed files with 15 additions and 18 deletions
|
@ -1,6 +1,6 @@
|
||||||
import Table from '@material-ui/core/Table'
|
import Table from '@material-ui/core/Table'
|
||||||
import TableBody from '@material-ui/core/TableBody'
|
import TableBody from '@material-ui/core/TableBody'
|
||||||
import inflection from 'inflection'
|
import { humanize, underscore } from 'inflection'
|
||||||
import TableCell from '@material-ui/core/TableCell'
|
import TableCell from '@material-ui/core/TableCell'
|
||||||
import TableContainer from '@material-ui/core/TableContainer'
|
import TableContainer from '@material-ui/core/TableContainer'
|
||||||
import TableRow from '@material-ui/core/TableRow'
|
import TableRow from '@material-ui/core/TableRow'
|
||||||
|
@ -112,7 +112,7 @@ const AlbumInfo = (props) => {
|
||||||
className={classes.tableCell}
|
className={classes.tableCell}
|
||||||
>
|
>
|
||||||
{translate(`resources.album.fields.${key}`, {
|
{translate(`resources.album.fields.${key}`, {
|
||||||
_: inflection.humanize(inflection.underscore(key)),
|
_: humanize(underscore(key)),
|
||||||
})}
|
})}
|
||||||
:
|
:
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
|
|
@ -31,7 +31,7 @@ import albumLists, { defaultAlbumList } from './albumLists'
|
||||||
import config from '../config'
|
import config from '../config'
|
||||||
import AlbumInfo from './AlbumInfo'
|
import AlbumInfo from './AlbumInfo'
|
||||||
import ExpandInfoDialog from '../dialogs/ExpandInfoDialog'
|
import ExpandInfoDialog from '../dialogs/ExpandInfoDialog'
|
||||||
import inflection from 'inflection'
|
import { humanize } from 'inflection'
|
||||||
import { makeStyles } from '@material-ui/core/styles'
|
import { makeStyles } from '@material-ui/core/styles'
|
||||||
|
|
||||||
const useStyles = makeStyles({
|
const useStyles = makeStyles({
|
||||||
|
@ -140,9 +140,7 @@ const AlbumFilter = (props) => {
|
||||||
<AutocompleteInput
|
<AutocompleteInput
|
||||||
emptyText="-- None --"
|
emptyText="-- None --"
|
||||||
optionText={(record) =>
|
optionText={(record) =>
|
||||||
record?.tagValue
|
record?.tagValue ? humanize(record?.tagValue) : '-- None --'
|
||||||
? inflection.humanize(record?.tagValue)
|
|
||||||
: '-- None --'
|
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
</ReferenceInput>
|
</ReferenceInput>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { Chip, makeStyles } from '@material-ui/core'
|
import { Chip, makeStyles } from '@material-ui/core'
|
||||||
import { useTranslate } from 'react-admin'
|
import { useTranslate } from 'react-admin'
|
||||||
import inflection from 'inflection'
|
import { humanize, underscore } from 'inflection'
|
||||||
|
|
||||||
const useQuickFilterStyles = makeStyles((theme) => ({
|
const useQuickFilterStyles = makeStyles((theme) => ({
|
||||||
chip: {
|
chip: {
|
||||||
|
@ -16,11 +16,11 @@ export const QuickFilter = ({ source, resource, label, defaultValue }) => {
|
||||||
if (typeof lbl === 'string' || lbl instanceof String) {
|
if (typeof lbl === 'string' || lbl instanceof String) {
|
||||||
if (label) {
|
if (label) {
|
||||||
lbl = translate(lbl, {
|
lbl = translate(lbl, {
|
||||||
_: inflection.humanize(inflection.underscore(lbl)),
|
_: humanize(underscore(lbl)),
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
lbl = translate(`resources.${resource}.fields.${source}`, {
|
lbl = translate(`resources.${resource}.fields.${source}`, {
|
||||||
_: inflection.humanize(inflection.underscore(source)),
|
_: humanize(underscore(source)),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ import {
|
||||||
useTranslate,
|
useTranslate,
|
||||||
useRecordContext,
|
useRecordContext,
|
||||||
} from 'react-admin'
|
} from 'react-admin'
|
||||||
import inflection from 'inflection'
|
import { humanize, underscore } from 'inflection'
|
||||||
import {
|
import {
|
||||||
ArtistLinkField,
|
ArtistLinkField,
|
||||||
BitrateField,
|
BitrateField,
|
||||||
|
@ -140,7 +140,7 @@ export const SongInfo = (props) => {
|
||||||
<TableRow key={`${record.id}-${key}`}>
|
<TableRow key={`${record.id}-${key}`}>
|
||||||
<TableCell scope="row" className={classes.tableCell}>
|
<TableCell scope="row" className={classes.tableCell}>
|
||||||
{translate(`resources.song.fields.${key}`, {
|
{translate(`resources.song.fields.${key}`, {
|
||||||
_: inflection.humanize(inflection.underscore(key)),
|
_: humanize(underscore(key)),
|
||||||
})}
|
})}
|
||||||
:
|
:
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
|
|
@ -10,7 +10,7 @@ import TableRow from '@material-ui/core/TableRow'
|
||||||
import TableCell from '@material-ui/core/TableCell'
|
import TableCell from '@material-ui/core/TableCell'
|
||||||
import Paper from '@material-ui/core/Paper'
|
import Paper from '@material-ui/core/Paper'
|
||||||
import FavoriteBorderIcon from '@material-ui/icons/FavoriteBorder'
|
import FavoriteBorderIcon from '@material-ui/icons/FavoriteBorder'
|
||||||
import inflection from 'inflection'
|
import { humanize, underscore } from 'inflection'
|
||||||
import { useGetOne, usePermissions, useTranslate } from 'react-admin'
|
import { useGetOne, usePermissions, useTranslate } from 'react-admin'
|
||||||
import config from '../config'
|
import config from '../config'
|
||||||
import { DialogTitle } from './DialogTitle'
|
import { DialogTitle } from './DialogTitle'
|
||||||
|
@ -136,7 +136,7 @@ const AboutDialog = ({ open, onClose }) => {
|
||||||
<TableRow key={key}>
|
<TableRow key={key}>
|
||||||
<TableCell align="right" component="th" scope="row">
|
<TableCell align="right" component="th" scope="row">
|
||||||
{translate(`about.links.${key}`, {
|
{translate(`about.links.${key}`, {
|
||||||
_: inflection.humanize(inflection.underscore(key)),
|
_: humanize(underscore(key)),
|
||||||
})}
|
})}
|
||||||
:
|
:
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
|
|
@ -9,7 +9,7 @@ import TableBody from '@material-ui/core/TableBody'
|
||||||
import TableRow from '@material-ui/core/TableRow'
|
import TableRow from '@material-ui/core/TableRow'
|
||||||
import TableCell from '@material-ui/core/TableCell'
|
import TableCell from '@material-ui/core/TableCell'
|
||||||
import { useTranslate } from 'react-admin'
|
import { useTranslate } from 'react-admin'
|
||||||
import inflection from 'inflection'
|
import { humanize } from 'inflection'
|
||||||
import { keyMap } from '../hotkeys'
|
import { keyMap } from '../hotkeys'
|
||||||
import { DialogTitle } from './DialogTitle'
|
import { DialogTitle } from './DialogTitle'
|
||||||
import { DialogContent } from './DialogContent'
|
import { DialogContent } from './DialogContent'
|
||||||
|
@ -29,7 +29,7 @@ const HelpTable = (props) => {
|
||||||
{Object.keys(keyMap).map((key) => {
|
{Object.keys(keyMap).map((key) => {
|
||||||
const { sequences, name } = keyMap[key]
|
const { sequences, name } = keyMap[key]
|
||||||
const description = translate(`help.hotkeys.${name}`, {
|
const description = translate(`help.hotkeys.${name}`, {
|
||||||
_: inflection.humanize(name),
|
_: humanize(name),
|
||||||
})
|
})
|
||||||
return (
|
return (
|
||||||
<TableRow key={key}>
|
<TableRow key={key}>
|
||||||
|
|
|
@ -6,7 +6,7 @@ import { useTranslate, MenuItemLink, getResources } from 'react-admin'
|
||||||
import ViewListIcon from '@material-ui/icons/ViewList'
|
import ViewListIcon from '@material-ui/icons/ViewList'
|
||||||
import AlbumIcon from '@material-ui/icons/Album'
|
import AlbumIcon from '@material-ui/icons/Album'
|
||||||
import SubMenu from './SubMenu'
|
import SubMenu from './SubMenu'
|
||||||
import inflection from 'inflection'
|
import { humanize, pluralize } from 'inflection'
|
||||||
import albumLists from '../album/albumLists'
|
import albumLists from '../album/albumLists'
|
||||||
import PlaylistsSubMenu from './PlaylistsSubMenu'
|
import PlaylistsSubMenu from './PlaylistsSubMenu'
|
||||||
import config from '../config'
|
import config from '../config'
|
||||||
|
@ -42,7 +42,7 @@ const translatedResourceName = (resource, translate) =>
|
||||||
smart_count: 2,
|
smart_count: 2,
|
||||||
_: resource.options.label,
|
_: resource.options.label,
|
||||||
})
|
})
|
||||||
: inflection.humanize(inflection.pluralize(resource.name)),
|
: humanize(pluralize(resource.name)),
|
||||||
})
|
})
|
||||||
|
|
||||||
const Menu = ({ dense = false }) => {
|
const Menu = ({ dense = false }) => {
|
||||||
|
|
|
@ -16,7 +16,6 @@ export default defineConfig({
|
||||||
filename: 'sw.js',
|
filename: 'sw.js',
|
||||||
devOptions: {
|
devOptions: {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
type: 'module',
|
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue