0.0.8 • Published 8 years ago

ember-es-adapter v0.0.8

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

Ember-ES-Adapter

Build Status npm version Ember Observer Score Code Climate

An adapter written for Elasticsearch and EmberJS.

Demo

S3 Blog, this shows just the basics. The repo can be found here: ember-s3-blog. This is very much a work in progress, but allows me to have a use-case to build the adapter.

On the hotplate for 0.1.0

  • Add functionality to the Adapter
    • findMany
    • queryRecord
    • - updateRecord (partially implemented, not fully tested)
    • createRecord
    • deleteRecord (Already works with default)
    • query
    • findAll
  • Add functionality to the Serializer
    • normalizeCreateRecordResponse (Already works with default)
    • normalizeDeleteRecordResponse
    • normalizeQueryRecordResponse
    • normalizeResponse
    • normalizeUpdateRecordResponse
    • normalizeFindAllResponse
    • normalizeSingleResponse
    • normalizeQueryResponse
    • serialize (not a fan of this, but don't know a better way)
  • Blueprints
    • Adapter
    • Serializer
  • ES-Tools
    • QueryDSL
      • Add MoreLikeThis
      • Add Aggregations
      • Add Query
        • Add Default Param Override
        • match()
        • match_phrase()
        • multi_match()
        • common_terms()
        • query_string()
        • simple_query_string()
        • term()
        • terms()
        • range()
        • exists()
        • prefix()
        • wildcard()
        • regexp()
        • fuzzy()
        • type()
        • ids()
      • Add Filter
        • Add Default Param Override
      • Add Highlighting
        • Add Default Param Override
        • Add fields
      • Compound Query
        • Add Bool (must, filter, should, must_not)
      • Add sorts
      • Add size
      • Add from
      • Allow params from route
      • Add prototype for detecting page (pagination API)
      • Add full documentation (yui comments)
      • Make it work
      • Better Readme Examples
  • Make all the tests
    • The adapter
    • The serializer
    • The QueryDSL

The gameplan 0.1.5

  • Add functionality to the Adapter
    • shouldReloadRecord (If needed)
    • shouldReloadAll (If needed)
  • Add functionality to the Serializer
    • normalizeArrayResponse
    • normalizeFindManyResponse
    • cleanup serialize
  • Instant Search Component
  • Blueprints
    • Adapter
    • Serializer
  • QueryDSL
    • Add ES versioning
  • Make all the tests
    • The extend utility
  • Definitely more...

How to use this

  • Adapter

    `your_app/adapters/your_adapter.js`
    import Es from 'ember-es-adapter/adapters/adapter';
    import config from 'ember-get-config';
    
    export default Es.extend({
      host: config.EsAdapter.host, 
      namespace: config.EsAdapter.namespace, 
    });
  • Serializer

    `your_app/serializers/your_serializer.js`
    import Es from 'ember-es-adapter/serializer/serializer';
    export default Es.extend({
    });
  • In your app

    `your_app/routes/index.js`
    import { QueryDSL } from 'ember-es-adapter/utils/es-tools';
    
    //let the adapter build the query
    export default Ember.Route.extend({
      model(params) {
        //params['size'] = 2,
        //params['page'] = 2,
        return this.store.query('post', params);
      }
    });
    
    //OR build it yourself and send it on.
    export default Ember.Route.extend({
      model(params) {
        //simulated params
        //if building yourself, these won't be utilized
        params['size'] = 10;
        params['query'] = 'yolo';
 /*  
   QueryDSL is chainable.
   .query({override}) will add a query, but if .bool() is used,
   it will replace the query with a bool type.
   the chaining works as long as a compound query is issued before it.
   (bool, highlight, filter, etc...)

 */

  let dsl = new QueryDSL(params);
  dsl.query({match_all:{}})
    .sort({'date':'desc'})
    .sort('title')

  or 

  dsl.query()
    .bool('must')
    .match('title': 'jerry'})
    .sort({'date':'desc'}) // sorts are agnostic to chains
    .sort('title')         // they are applied to the top level


  //building the query, sending to adapter
  params['esQuery'] = dsl.getQuery();
  return this.store.query('post', params);
}

});

#### ElasticSearch QueryDSL Builder
* Useage example
  ```javascript
  import QueryDSL from "ember-es-adapter/utils/es-tools";
  let dsl = new QueryDSL({size: 2, from: 200});
  //  dsl = new QueryDSL(); // or no options

  dsl.query({'match': {"title": "Third"}}); //complex queries with no parsing
  dsl.query().match({'title':'Third'});   //same as above, just with chaining

  dsl.sort({'title':'asc'}); //add sort: can be complex
  dsl.title("title");        //add sort: or simple

  let query = es.getQuery();
  ```

* Using the Query Builder
  ```javascript
  import QueryDSL from 'ember-es-adapter/utils/es-tools';

  let es = new QueryDSL().query({match_all:{}});
  ```
* Building a Query
  ```javascript
  //Params
  .query({query})           // obj optional override the way you want it sent to ES.
  {
    query: {},            // object  
  } 

  import QueryDSL from 'ember-es-adapter/utils/es-tools';

  let dsl = new QueryDSL();

  //equivalent queries, latter allows for more complex queries
  dsl.query()
    .match({'title':'Third'});

  dsl.query({match:{'title':'Third'}});

  
  //example of using multiple bools within the same query.
  let dsl = new QueryDSL();
  dsl.query()
    .bool('must')
    .term({'user': 'steve'})
    .bool('filter')
    .range({'age': {"gte": 14, "lte": 35}})
  ```

* Add a filter
  ```javascript
  //Params
  .filter({obj})           // obj optional override the way you want it sent to ES.
  {
    obj: {},              // object  
  } 

  import QueryDSL from 'ember-es-adapter/utils/es-tools';

  let dsl = new QueryDSL();

  dsl.filter()
    .bool('must')
    .match({'title':'Third'});

  ```

* Adding a Sort
  ```javascript
  //Adds sort option. This can be ran multiple times if more specific sorts
  // are needed. 
  {
    sort: "title" || {},    // string || object  
  } 

  import QueryDSL from 'ember-es-adapter/utils/es-tools';

  let dsl = new esQuery();

  dsl.sort('title');
  dsl.sort({ "name": "asc" });
  dsl.sort({ "post_date": { "order": "asc"} });
  ```
0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago