Questions tagged [emberfire]

EmberFire is the officially supported Ember JS adapter for Firebase with Ember-Data.

EmberFire is intended to make it easy to build Firebase-powered Ember applications.

152 questions
1
vote
2 answers

Ember CLI - Firebase is not defined after installing with npm

After taking the following steps in the command line to install Ember CLI, Firebase, and EmberFire with node, I am getting an error saying that Firebase is not defined in app/adapter/application.js npm install -g ember-cli npm install -g bower npm…
mmwebster
  • 152
  • 10
1
vote
1 answer

Can't find EmberFire model data on Ember route. Error: Error while loading route: undefined

When trying to lookup a model using the EmberFire firebase adapter I get undefined and an error as a result: Error while loading route: undefined. I have also tried creating models but can't seem to persist them so maybe I have something incorrectly…
Jonathan Evans
  • 974
  • 2
  • 8
  • 18
1
vote
1 answer

Generating Forms with Ember.js and EmberFire

I have a table thats generated by an {{#each}} loop and it displays user's first and last names. I want to add a delete button to delete the record on that row. I am also using EmberFire to connect with Firebase. What is the best way to associate…
JDillon522
  • 19,046
  • 15
  • 47
  • 81
1
vote
1 answer

Load two emberFire models in one ember.js route

I'm trying to load two models in one route and am not having any luck figuring it out. One route to hold all information to dynamically create a form and the other model is the one in which it will push form submission data to. Here is some of what…
OgdenIT
  • 55
  • 7
0
votes
0 answers

Cannot read property 'type' of undefined ember and firebase

I am trying to retrieve data from my firestore using ember.js and emberfire. i have a simple movie database. All that is in it right now is 1 document but for some reason when i try and retrieve the data, i keep getting "Cannot read property 'type'…
James
  • 13
  • 5
0
votes
2 answers

Is there a way to remove ember-data from emberfire?

My app does not use ember-data, it uses only apollo for graphql to retrieve/manage data. But after installing emberfire, we must have to install ember-data too. We just use emberfire/firebase for authentication :) If I try to remove it I've got an…
Bruno Casali
  • 1,339
  • 2
  • 17
  • 32
0
votes
1 answer

Connecting firebase from ember gets firebase.app is not a function getApp

I am working in an Ember.js app and currently trying to connect to firebase (is not my default adapter, the default is a Rest adapter). I followed the instructions given in https://github.com/firebase/emberfire but when I try to read data from the…
Sredny M Casanova
  • 4,735
  • 21
  • 70
  • 115
0
votes
1 answer

How do I query a sub collection in EmberFire?

I am currently trying to fetch data from FireStore using EmberFire. Right now, my collection is /users and in there I store a user ID. Under the user ID I create another subcollecion, containing an array called /presets. I want to use EmberFire to…
bob_mosh
  • 267
  • 2
  • 17
0
votes
1 answer

EmberJS + Firebase: Returned custom user information should update UI

SUMMARY: I have built a simple application with EmberJS, EmberFire, and Firebase. I am happy with the connections so far and have been able to generate custom user profile in Firebase. Once created, I am returned the custom object and can see that…
0
votes
1 answer

Ember Firebase Authentication

I've successfully connected my app to Firebase and am authorizing users while also adding additional user information to a user-profile model. There's a few things I'd like to do with this data. First of all, upon signup (username, password), I'm…
Chris Johnson
  • 187
  • 1
  • 13
0
votes
0 answers

Firebase User Profile

I'm just getting started on creating a user signup and user profile login flow. For some background, each user will be able to sign up and apart of the signup process, fill out their profile (for example purposes, let's say they have to fill out:…
Chris Johnson
  • 187
  • 1
  • 13
0
votes
2 answers

EmberFire Google Authentication - Review Setup Please

Summary: I would like to connect an EmberJS application to Firebase via Google login Versions: Ember : 3.1.2, Ember Data : 3.1.1, Firebase : 3.9.0 config/environment.js 'use strict'; module.exports = function(environment) { let ENV = { …
0
votes
1 answer

EmberFire Relationship Persistance

Using EmberFire, I'm trying to work with related sets of data. In this case, a Campaign has many Players and Players have many Campaigns. When I want to add a player to campaign, I understand that I can push the player object to campaign.players,…
0
votes
1 answer

How to Edit a todo task on same component in Ember

I want to edit a todo task on same list style tag without affecting the other todo present. Below is the an image of the todo The second image below is when the edit button is clicked. What I want to achieve is when the edit button is clicked on…
Iakhator
  • 159
  • 2
  • 12
0
votes
1 answer

Ember js hasmany relationship saving data

I have two models in Ember where one is a collection and the other is book. Collection model has a "hasMany" relationship with "book" and "book" "belongsTo" "collection". So what i want to do is have a form with both models in and store them at the…
jsg
  • 1,224
  • 7
  • 22
  • 44