Aida

Aida

  • Docs
  • Reference
  • Contributors

›Getting Started

Getting Started

  • Introduction
  • Installation
  • Creating Your First Model
  • Enriching Your Model
  • Introduction to Injectors
  • Introduction to Consumers

Advanced Usage

  • Introduction to Endpoints
  • Chaining Injectors
  • Putting It All Together

Extending Aida

  • Creating A Custom Injector

Reference

  • Defined Types
  • Data Model
  • Endpoints Model
  • Existing Injectors
  • Existing Consumers
  • Aida Config
  • Faked Data

Enriching Your Model

We now want to add more capabilities to our User model. Let's add some way to generate fake data that will have the same schema as our model. This can be done with the faked-model injector, but we will keep the discussion about what injectors are for later. For now, let's just enrich our model so it knows what sort of fake data would fit for each property, using the faker property. Go ahead and copy the below code to User.core.js file, as it will be used in the next step.

const Address = {
  city: {
    vtype: 'string',
    faker: ['Nara', 'Berlin', 'San Francisco', 'Sydney', 'Nairobi']
  },
  street: {
    vtype: 'string',
    faker: { 
      faker: 'address.streetAddress',
      options: {
        useFullAddress: true,
      },
    },
  }
}

const User = {
  id: {
    vtype: 'string',
    faker: 'random.uuid',
  },
  email: {
    vtype: 'string',
    faker: 'internet.email'
  },
  address: Address,
  phoneNumbers: [{
    vtype: 'string',
    faker: 'phone.phoneNumber',
  }, {
    fakerIterations: 3,
  }], //The second object in the array is options regarding the array for various injectors 
};

exports.default = User;

We have specified a faker property for each primitive. Just by specifying the faker property, each injector that needs some fake data will now know what kind of data to generate for each primitive. The values that the faker property can take are either one of the pre-defined values in Faker.js, an array of constant values, or an object with either of the previous two, and a faker options object. For more details about how to create fake data, check the faked data reference.

Now that we have specified what kind of fake data we want for each property, let's try to generate a faked data schema using injectors.

← Creating Your First ModelIntroduction to Injectors →
Aida
Docs
Getting StartedReference
Community
Project Chat
More
GitHubStar
Copyright © 2018 Stevche Radevski