Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MediaSession not supported by TypeScript 2.3.4 #19473

Closed
pablo-gonzalez opened this issue Oct 25, 2017 · 11 comments
Closed

MediaSession not supported by TypeScript 2.3.4 #19473

pablo-gonzalez opened this issue Oct 25, 2017 · 11 comments
Labels
Domain: lib.d.ts The issue relates to the different libraries shipped with TypeScript Help Wanted You can do this Suggestion An idea for TypeScript
Milestone

Comments

@pablo-gonzalez
Copy link

pablo-gonzalez commented Oct 25, 2017

TypeScript Version: 2.3.4

Code

  navigator.mediaSession.metadata = new MediaMetadata({
    title: "Podcast Episode Title",
    artist: "Podcast Host",
    album: "Podcast Name",
    artwork: [{src: "podcast.jpg"}]
  });
  navigator.mediaSession.setActionHandler('play', function() {});
  navigator.mediaSession.setActionHandler('pause', function() {});
  navigator.mediaSession.setActionHandler('seekbackward', function() {});
  navigator.mediaSession.setActionHandler('seekforward', function() {});
  navigator.mediaSession.setActionHandler('previoustrack', function() {});
  navigator.mediaSession.setActionHandler('nexttrack', function() {});
}

Expected behavior:
MediaSession and MediaMetadata should be recognized by Typescript.

https://developer.mozilla.org/en-US/docs/Web/API/MediaSession
https://developers.google.com/web/updates/2017/02/media-session

Actual behavior:
Visual Studio Code Version 1.17.2 is showing the following Problems after saving the ts file:

message: 'Property 'mediaSession' does not exist on type 'Navigator'.'
message: 'Cannot find name 'MediaMetadata'.'

System information:

pablo@pablo-Inspiron-7520:~/projects/fpt3$ ionic info
cli packages: (/usr/lib/node_modules)

@ionic/cli-utils  : 1.13.1
ionic (Ionic CLI) : 3.13.2

global packages:

cordova (Cordova CLI) : 6.5.0

local packages:

@ionic/app-scripts : 2.1.4
Cordova Platforms  : android 6.1.2 browser 4.1.0
Ionic Framework    : ionic-angular 3.7.1

System:

Android SDK Tools : 25.2.5
Node              : v7.10.0
npm               : 3.10.10
OS                : Linux 4.4

Misc:

backend : pro

As a workround I have installed @types/wicg-mediasession:
https://www.npmjs.com/package/@types/wicg-mediasession

@pablo-gonzalez pablo-gonzalez changed the title MediaSession not supported by TypeScript using Ionic 2 MediaSession not supported by TypeScript 2.3.4 Oct 25, 2017
@mhegazy mhegazy added Domain: lib.d.ts The issue relates to the different libraries shipped with TypeScript Suggestion An idea for TypeScript Help Wanted You can do this labels Oct 25, 2017
@mhegazy
Copy link
Contributor

mhegazy commented Oct 25, 2017

PRs welcomed. You can find more information about contributing lib.d.ts fixes at https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md#contributing-libdts-fixes.

@pablo-gonzalez
Copy link
Author

I would be glad to help in the future. Currently I do not have the enough knowledge to contribute.
However I have given a workaround to help other people facing the same issue.

Best regards,
Pablo

@mhegazy mhegazy added this to the Community milestone Oct 26, 2017
@aareeph
Copy link

aareeph commented Dec 5, 2018

Hi @pablo-gonzalez, I am getting exactly same error while trying to use MediaSession in Typescript. I tried installing @types/wicg-mediasession as well but couldn't resolve the issue.

Here's the response from the developer when I tried to use this library in my Angular project:
w3c/mediasession#206 (comment)

Thanks!

@joaovct
Copy link

joaovct commented Oct 25, 2020

(Exactly) 3 years after this issue, the only "solution" is using // @ts-ignore?

@jsmith
Copy link

jsmith commented Nov 8, 2020

The "solution" is not // @ts-ignore but installing @types/wicg-mediasession as stated by @pablo-gonzalez

npm install --save-dev @types/wicg-mediasession

I'm using it now and it's working fantastic!

@MetaMmodern
Copy link

MetaMmodern commented Jan 1, 2021

The "solution" is not // @ts-ignore but installing @types/wicg-mediasession as stated by @pablo-gonzalez

npm install --save-dev @types/wicg-mediasession

I'm using it now and it's working fantastic!

+1, this is working, the issue may be closed imo. Also add this to some docs so it is google'd better)
@jsmith thank you anf Happy New Year)

@sanderschnydrig
Copy link

sanderschnydrig commented Jun 28, 2022

I installed @types/wicg-mediasession but its not doing anything to solve the error for me.

Edit: using // @ts-ignore which is working

@RedstoneWizard08
Copy link

RedstoneWizard08 commented Oct 10, 2022

I installed @types/wicg-mediasession but its not doing anything to solve the error for me.

Edit: using // @ts-ignore which is working

Try using:

navigator.mediaSession.metadata = new MediaMetadata({
    // ...
});

instead of:

navigator.mediaSession.metadata = {
    // ...
};

because I was also having trouble after installing this library and switching to that fixed it for me.

EDIT: Also make sure to add wicg-mediasession to the compilerOptions.types array in your tsconfig.json.

@sanderschnydrig
Copy link

sanderschnydrig commented Oct 10, 2022

@redstonewizard Thanks for your recommendation. My code was already instantiating the Object with new but I was missing the tsconfig.json entries. However its working now even without those changes in the typescript config, no more errors just like that. As far as I know we did not change the typescript version since then (using ~4.6.4), same one that was producing the error before, if I'm not mistaken.

@RedstoneWizard08
Copy link

Okay.

@jakebailey
Copy link
Member

Just looking at old issues; this was fixed in #44684.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Domain: lib.d.ts The issue relates to the different libraries shipped with TypeScript Help Wanted You can do this Suggestion An idea for TypeScript
Projects
None yet
Development

Successfully merging a pull request may close this issue.

10 participants