Skip to content

Commit 0fa1341

Browse files
authored
Merge pull request #3168 from metabrainz/remove-playlist-addtrack-autofocus
Playlist page: Prevent autofocus on add-track component
2 parents 9525dd5 + d417306 commit 0fa1341

File tree

2 files changed

+21
-12
lines changed

2 files changed

+21
-12
lines changed

frontend/js/src/playlists/Playlist.tsx

+8-7
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ import {
3737
getPlaylistId,
3838
getRecordingMBIDFromJSPFTrack,
3939
isPlaylistOwner,
40-
JSPFTrackToListen,
4140
LISTENBRAINZ_URI_PREFIX,
4241
PLAYLIST_TRACK_URI_PREFIX,
4342
PLAYLIST_URI_PREFIX,
@@ -98,14 +97,12 @@ export default function PlaylistPage() {
9897

9998
// Ref
10099
const socketRef = React.useRef<Socket | null>(null);
100+
const searchInputRef = React.useRef<HTMLInputElement>(null);
101101

102102
// States
103103
const [playlist, setPlaylist] = React.useState<JSPFPlaylist>(
104104
playlistProps?.playlist || {}
105105
);
106-
const [coverArtConfig, setCoverArtConfig] = React.useState<
107-
CoverArtGridOptions
108-
>(playlistProps?.cover_art || {});
109106
const { track: tracks } = playlist;
110107

111108
// Functions
@@ -529,15 +526,17 @@ export default function PlaylistPage() {
529526
</div>
530527
{userHasRightToEdit && tracks && tracks.length > 10 && (
531528
<div className="text-center">
532-
<a
529+
<button
533530
className="btn btn-primary"
534531
type="button"
535-
href="#add-track"
536532
style={{ marginBottom: "1em" }}
533+
onClick={() => {
534+
searchInputRef.current?.focus();
535+
}}
537536
>
538537
<FontAwesomeIcon icon={faPlusCircle as IconProp} />
539538
&nbsp;&nbsp;Add a track
540-
</a>
539+
</button>
541540
</div>
542541
)}
543542
<div id="listens row">
@@ -573,6 +572,8 @@ export default function PlaylistPage() {
573572
&nbsp;&nbsp;Add a track
574573
</span>
575574
<SearchTrackOrMBID
575+
ref={searchInputRef}
576+
autofocus={false}
576577
onSelectRecording={addTrack}
577578
expectedPayload="trackmetadata"
578579
/>

frontend/js/src/utils/SearchTrackOrMBID.tsx

+13-5
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,18 @@ type ConditionalReturnValue =
3535
};
3636

3737
type SearchTrackOrMBIDProps = {
38+
autofocus?: boolean;
3839
defaultValue?: string;
3940
expectedPayload: PayloadType;
4041
} & ConditionalReturnValue;
4142

4243
const SearchTrackOrMBID = forwardRef(function SearchTrackOrMBID(
43-
{ onSelectRecording, expectedPayload, defaultValue }: SearchTrackOrMBIDProps,
44+
{
45+
onSelectRecording,
46+
expectedPayload,
47+
defaultValue,
48+
autofocus = true,
49+
}: SearchTrackOrMBIDProps,
4450
inputRefForParent
4551
) {
4652
const { APIService } = useContext(GlobalAppContext);
@@ -69,10 +75,12 @@ const SearchTrackOrMBID = forwardRef(function SearchTrackOrMBID(
6975

7076
// Autofocus once on load
7177
useEffect(() => {
72-
setTimeout(() => {
73-
inputRefLocal?.current?.focus();
74-
}, 500);
75-
}, []);
78+
if (autofocus) {
79+
setTimeout(() => {
80+
inputRefLocal?.current?.focus();
81+
}, 500);
82+
}
83+
}, [autofocus]);
7684

7785
const handleError = useCallback(
7886
(error: string | Error, title?: string): void => {

0 commit comments

Comments
 (0)