Giter Site home page Giter Site logo

Comments (23)

builtbybo avatar builtbybo commented on June 10, 2024 1

I fixed this by editing the baseUrl to: baseUrl: 'https://shazam-core.p.rapidapi.com',
and then editing the builder queries like so:
getTopCharts: builder.query({ query: () => '/v1/charts/world' }),
...
getArtistDetails: builder.query({ query: (artistId) =>'/v2/artists/details?artist_id=${artistId}' }),

Adding the back ticks in the appropriate places

from project_music_player.

filiptrifunovic-mile avatar filiptrifunovic-mile commented on June 10, 2024

I fixed this by editing the baseUrl to: baseUrl: 'https://shazam-core.p.rapidapi.com', and then editing the builder queries like so: getTopCharts: builder.query({ query: () => '/v1/charts/world' }), ... getArtistDetails: builder.query({ query: (artistId) =>'/v2/artists/details?artist_id=${artistId}' }),

Adding the back ticks in the appropriate places

I did that also, but what u changed in ArtistDetails.jsx for RelatedSongs data={Object.values(artistData?.songs)}

from project_music_player.

githubsayan7776969 avatar githubsayan7776969 commented on June 10, 2024

Screenshot 2022-12-10 115309
nodata fetched..blank screen now.

from project_music_player.

githubsayan7776969 avatar githubsayan7776969 commented on June 10, 2024

Screenshot 2022-12-10 120042
CHECK THE EXTENSION RESULT IN VS CODE..ABOVE

from project_music_player.

githubsayan7776969 avatar githubsayan7776969 commented on June 10, 2024

also when i try to use back ticks the formatting error goes away but i get a white blank screen and the app crashes..
Screenshot 2022-12-10 122547

from project_music_player.

githubsayan7776969 avatar githubsayan7776969 commented on June 10, 2024

Screenshot 2022-12-10 122906

from project_music_player.

githubsayan7776969 avatar githubsayan7776969 commented on June 10, 2024

the comma and the closing braces and bracs are there just not visible in the screen shot

from project_music_player.

PavanKalyan717 avatar PavanKalyan717 commented on June 10, 2024

I fixed this by editing the baseUrl to: baseUrl: 'https://shazam-core.p.rapidapi.com', and then editing the builder queries like so: getTopCharts: builder.query({ query: () => '/v1/charts/world' }), ... getArtistDetails: builder.query({ query: (artistId) =>'/v2/artists/details?artist_id=${artistId}' }),
Adding the back ticks in the appropriate places

I did that also, but what u changed in ArtistDetails.jsx for RelatedSongs data={Object.values(artistData?.songs)}

We can do one thing since there are no related songs in the new API call(which is - v2 one)
We can display that artist's Top songs instead of related songs.
For that u can declare a new variable called 'topSongsData'. Like this:

const topSongsData = artistData?.data[0]?.views['top-songs']?.data

Now u can pass this variable as data in RelatedSongs Component. Like this:
<RelatedSongs
data={topSongsData}
artistId={artistId}
isPlaying={isPlaying}
activeSong={activeSong}

One Final change has to be done in RelatedSongs component since there is no 'key' present in topSongsData, instead we can use 'id' value from topSongsData. Change in RelatedSongs data mapping looks like this.

{data?.map((song,i)=>(
<SongBar key={${song.key}-${song.id}-${artistId}}
song ={song }
i={i}
artistId={artistId}
isPlaying={isPlaying}
activeSong={activeSong}
handlePauseClick={handlePauseClick}
handlePlayClick ={handlePlayClick}
/>
))}
Only the bolded line is changed. rest of the code is the same.
Hope this works.

from project_music_player.

shivam-jha2712 avatar shivam-jha2712 commented on June 10, 2024

Please give the clear code or the screenshot of what have you implied
And I have the same issue

from project_music_player.

PavanKalyan717 avatar PavanKalyan717 commented on June 10, 2024

Please give the clear code or the screenshot of what have you implied And I have the same issue

artistdetails
relatedsongs
shazamcore

Hope these screenshots help u to understand my previous comment.
Let me know if u face any issues.

from project_music_player.

MichaelFami avatar MichaelFami commented on June 10, 2024

Please give the clear code or the screenshot of what have you implied And I have the same issue

artistdetails relatedsongs shazamcore

Hope these screenshots help u to understand my previous comment. Let me know if u face any issues.

Can you also post screenshot of your DetailsHeader file? I'm getting an error that the artistId in that element is undefined

from project_music_player.

shivam-jha2712 avatar shivam-jha2712 commented on June 10, 2024

Please give the clear code or the screenshot of what have you implied And I have the same issue

artistdetails relatedsongs shazamcore

Hope these screenshots help u to understand my previous comment. Let me know if u face any issues.

The error is still there and as soon as the shazamCore.js is updated the whole stops working and it shows the same error. And how have you removed the v1 from the baseUrl in line 6? Could you please help me in that

Screenshot (154)

And if the API needs to be updated, could you please record a loom video of yours explaining it? It would be helpful

from project_music_player.

PavanKalyan717 avatar PavanKalyan717 commented on June 10, 2024

Please give the clear code or the screenshot of what have you implied And I have the same issue

artistdetails relatedsongs shazamcore
Hope these screenshots help u to understand my previous comment. Let me know if u face any issues.

The error is still there and as soon as the shazamCore.js is updated the whole stops working and it shows the same error. And how have you removed the v1 from the baseUrl in line 6? Could you please help me in that

Screenshot (154)

And if the API needs to be updated, could you please record a loom video of yours explaining it? It would be helpful

detailsheader

i removed 'v1' from baseurl and updated in all queries. U can see that in shazamcore screenshot. Whatever issues u face please paste the screenshots here.

from project_music_player.

shivam-jha2712 avatar shivam-jha2712 commented on June 10, 2024

https://www.loom.com/share/56f12c2f8087425488ce5583b0f1fc44 -- Please watch this by pasting the link in your new tab and you will get the idea of the problem I am facing
The other screenshot data have even been changed but it is still not functioning properly

Screenshot (158)

Screenshot (159)
Screenshot (160)
Screenshot (161)
Screenshot (162)

from project_music_player.

shivam-jha2712 avatar shivam-jha2712 commented on June 10, 2024

Please give the clear code or the screenshot of what have you implied And I have the same issue

artistdetails relatedsongs shazamcore
Hope these screenshots help u to understand my previous comment. Let me know if u face any issues.

The error is still there and as soon as the shazamCore.js is updated the whole stops working and it shows the same error. And how have you removed the v1 from the baseUrl in line 6? Could you please help me in that
Screenshot (154)
And if the API needs to be updated, could you please record a loom video of yours explaining it? It would be helpful

detailsheader

i removed 'v1' from baseurl and updated in all queries. U can see that in shazamcore screenshot. Whatever issues u face please paste the screenshots here.

If you could please go through the video and look at the screenshots and identify the error and help me find the solution it would really be a great help

from project_music_player.

PavanKalyan717 avatar PavanKalyan717 commented on June 10, 2024

Send me the SS of error which is logged in console

from project_music_player.

shivam-jha2712 avatar shivam-jha2712 commented on June 10, 2024

Send me the SS of error which is logged in console
Screenshot (163)

And if I remove 0 then the artwork is the issue

from project_music_player.

githubsayan7776969 avatar githubsayan7776969 commented on June 10, 2024

the issue still persists...the screenshots have been implement in eact however the status of the app has not changed....

from project_music_player.

githubsayan7776969 avatar githubsayan7776969 commented on June 10, 2024

i meant impleneted in react as per screenshots above
Screenshot 2022-12-18 233600

from project_music_player.

shivam-jha2712 avatar shivam-jha2712 commented on June 10, 2024

i meant impleneted in react as per screenshots above Screenshot 2022-12-18 233600

I guess the error has been in the TopPlay component which is unable to fetch the 0th element using adamid @adrianhajdin @PavanKalyan717 could you please help us with this issue #24

from project_music_player.

hash-ira avatar hash-ira commented on June 10, 2024

Send me the SS of error which is logged in console
Screenshot (163)

And if I remove 0 then the artwork is the issue

In the Details Header component change the src of img tag to artistId ? artistData?.data[0].attributes?.artwork?.url

Hope this helps

from project_music_player.

sdo-piyush avatar sdo-piyush commented on June 10, 2024

Screenshot 2022-12-10 120042 CHECK THE EXTENSION RESULT IN VS CODE..ABOVE

hey bro can you please provide me your api key of the shazam core api. I want to build this project for my resume. please.....

from project_music_player.

githubsayan7776969 avatar githubsayan7776969 commented on June 10, 2024

from project_music_player.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.