mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 02:43:33 +00:00
27 lines
692 B
TypeScript
27 lines
692 B
TypeScript
import { useMemo } from 'react';
|
|
import { Text } from '/@/renderer/components';
|
|
import { LyricLine } from '/@/renderer/features/lyrics/lyric-line';
|
|
|
|
interface UnsynchronizedLyricsProps {
|
|
lyrics: string;
|
|
source: string | null;
|
|
}
|
|
|
|
export const UnsynchronizedLyrics = ({ lyrics, source }: UnsynchronizedLyricsProps) => {
|
|
const lines = useMemo(() => {
|
|
return lyrics.split('\n');
|
|
}, [lyrics]);
|
|
|
|
return (
|
|
<div className="unsynchronized-lyrics">
|
|
{source && <Text $noSelect>Lyrics provided by: {source}</Text>}
|
|
{lines.map((text, idx) => (
|
|
<LyricLine
|
|
key={idx}
|
|
id={`lyric-${idx}`}
|
|
text={text}
|
|
/>
|
|
))}
|
|
</div>
|
|
);
|
|
};
|