Skip to content

Instantly share code, notes, and snippets.

@matthias-k
Forked from paulgoetze/controllers.application.js
Last active October 29, 2019 16:09
Show Gist options
  • Save matthias-k/dfc8d49c650a1ff940073754f5b385ab to your computer and use it in GitHub Desktop.
Save matthias-k/dfc8d49c650a1ff940073754f5b385ab to your computer and use it in GitHub Desktop.
Ember with WQXR
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
hifi: Ember.inject.service(),
poll: Ember.inject.service(),
ajax: Ember.inject.service(),
updateData() {
this.get('ajax').request('https://api.prod.nypr.digital/whats-on/v1/whats-on?stream=wqxr').then((result) => {
this.set('data', result);
});
},
actions: {
update() {
this.updateData();
},
play() {
const url = "https://stream.wqxr.org/wqxr";
const mimeType = 'audio/mpeg';
//this.get('hifi').play([{url, mimeType}]).then(({sound}) => {
// console.log("sound", sound);
//}).catch(error => {
// console.log("error", error);
//})
const audioPlayer = document.getElementById("single-song");
audioPlayer.play();
},
},
});
<h1>Welcome to {{appName}} year!</h1>
<audio id="single-song" preload="none" controls="controls">
<source src="https://stream.wqxr.org/wqxr" type="audio/mpeg" id="single-song"/>
Your browser does not support the audio tag.
</audio>
<br>
<br>
<button {{action "play"}}>Play</button>
<button {{action "update"}}>Data</button>
foo
{{ data }}
<br>
<br>
{
"version": "0.15.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.4.3",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3"
},
"addons": {
"ember-data": "3.4.2",
"ember-hifi": "1.16.0",
"ember-poll": "1.4.0",
"ember-ajax": "5.0.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment