Currently, our app is using hard-coded data for rentals in the index
route handler to set the model.
As our application grows, we will want to be able to create new rentals,
make updates to them, delete them, and save these changes to a backend server.
Ember integrates with a data management library called Ember Data to help solve this problem.
Let's generate our first Ember Data model called rental
:
ember g model rental
This results in the creation of a model file and a test file:
installing model
create app/models/rental.js
installing model-test
create tests/unit/models/rental-test.js
When we open the model file, we see:
import Model from 'ember-data/model';
export default Model.extend({
});
Let's add the same attributes for our rental that we used in our hard-coded array of JavaScript objects - title, owner, city, type, image, and bedrooms:
import Model from 'ember-data/model';
import attr from 'ember-data/attr';
export default Model.extend({
title: attr(),
owner: attr(),
city: attr(),
type: attr(),
image: attr(),
bedrooms: attr()
});
Now we have a model in our Ember Data store.
Updating the Model Hook
To use our new data store, we need to update the model
hook in our route handler.
import Ember from 'ember';
export default Ember.Route.extend({
model() {
return this.store.findAll('rental');
}
});
When we call this.store.findAll('rental')
, Ember Data will make a GET request to /rentals
.
You can read more about Ember Data in the Models section.
Since we're using Mirage in our development environment, Mirage will return the data we've provided. When we deploy our app to a production server, we will need to provide a backend for Ember Data to communicate with.