npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@voll/ember-data-sails

v2.0.1

Published

<br>

Downloads

4

Readme

@voll/ember-data-sails (ember-data-sails fork)

The goal of this fork is to enable usage with Ember 4.

The following text is the same as the original repo https://github.com/huafu/ember-data-sails:

Adapters and tools for Ember to work well with Sails. Provides SailsSocketService, SailsRESTAdapter, SailsSocketAdapter, SailsSerializer and extends the store so that you can subscribe for records while pushing a payload.

Note: If you want to use this adapter with a version of SailsJS < 0.11.0 you have to use version 0.0.12 of this addon.

  • SailsSocketService: injected in adapters, controllers and routes on sailsSocket property, it allow you to do Ember friendly requests using Sails socket. Example:

    // in app/controllers/application.js
    this.sailsSocket.request('get', '/someController/someAction', {name: 'Huafu'}})
      .then(function(response) {
        // do something with the response
      });

    It'll use by default the sails.io.js located at <hostname>:1337/js/dependencies/sails.io.js, but you can change this using configuration in config/environment.js file:

    ENV.APP = {
      // if you want some useful debug information related to sails
      SAILS_LOG_LEVEL: 'debug',
      emberDataSails:  {
        // default is to use same host and port as the ember app:
        host: '//localhost:1337',
        // this is the default and is the path to the sails io script:
        //scriptPath: '/js/dependencies/sails.io.js'
      }
    }

    Also don't forget to add the rules for CSP:

    // allow to fetch the script
    ENV.contentSecurityPolicy['script-src'] += ' http://localhost:1337';
    // allow the websocket to connect
    ENV.contentSecurityPolicy['connect-src'] += ' http://localhost:1337 ws://localhost:1337';
  • SailsSocketAdapter: use this adapter when you want to use sockets for your model(s)

  • SailsRESTAdapter: use this adapter when you want to use sockets for your model(s)

  • SailsSerializer: used by default when you use a Sails adapter, you shouldn't need to access it but it's there in case

  • Store.pushPayload([type], payload, [subscribe=false]): as the original one from Ember Data, except it accepts an additional parameter which, when set to true, will tell the socket adapter to subscribe to the pushed records (see below)

  • Store.subscribe(type, ids): tells the sails socket adapter to subscribe to those models (see below)

Compatibility

  • Ember.js v4.4 or above
  • Ember CLI v4.4 or above
  • Node.js v14 or above

Installation

  • npm install --save-dev ember-data-sails

CSRF config

  • If you want to use CSRF token with the REST adapter, don't forget that you'll need to setup it as an object (and not true only) in the SailsJS config file (thanks @tibotiber for figuring this out).

Using

You must set sails.config.blueprints.pluralize to true in your Sails API to make the adapters works

  • If you are using sane (package sane-cli), you must change the configuration in server/config/routes to allow /__getCookie (and /csrfToken if needed) to be handled by the SailsJS core:

    --- a/server/config/routes.js
    +++ b/server/config/routes.js
    @@ -50,7 +50,7 @@ module.exports.routes = {
       //This automatically serves all routes, apart from /api/** routes to ember
       //(which will be initialized in assets/index.html). This route needs to be
       //at the very bottom if you want to server other routes through Sails, because they are matched in order
    -  '/*': { controller: 'App', action: 'serve', skipAssets: true, skipRegex: /^\/api\/.*$/ }
    +  '/*': { controller: 'App', action: 'serve', skipAssets: true, skipRegex: /^\/(api\/.*|__getcookie|csrfToken)$/ }
    
       //You could also just serve the index view directly if you want
       //'/*': { view: 'index', skipAssets: true, skipRegex: /^\/api\/.*$/ }
  • The SailsSocketService is injected on all adapters, controllers and routes on the sailsSocket property

  • To use the SailsSocketAdapter as the default adapter, or as a model specific adapter, extend it from SailsSocketAdapter:

    // file: app/adapters/application.js
    import SailsSocketAdapter from 'ember-data-sails/adapters/sails-socket';
    
    export default SailsSocketAdapter.extend({
      /**
       * Whether to use CSRF tokens or not
       */
      useCSRF:              true,
      /**
       * The path to use when the CSRF token needs to be retrieved
       * Default is `/csrfToken`, if not heading `/` it'll be relative to `namespace`
       */
      //csrfTokenPath: 'some/custom/path',
      /**
       * Whether to group multiple find by ID with one request with a `where`
       */
      coalesceFindRequests: true,
      /**
       * The namespace of your API
       */
      namespace:            'api/v1'
    });
  • To use the SailsRESTAdapter as the default adapter, or as a model specific adapter, extend it from SailsRESTAdapter:

    // file: app/adapters/application.js
    import SailsRESTAdapter from 'ember-data-sails/adapters/sails-rest';
    
    export default SailsRESTAdapter.extend({
      /**
       * The host of your API
       */
      host:                 'http://localhost:1337',
      /**
       * The namespace of your API
       */
      namespace:            'api/v1',
      /**
       * Whether to use CSRF tokens or not
       */
      useCSRF:              true,
      /**
       * Whether to group multiple find by ID with one request with a `where`
       */
      coalesceFindRequests: true
    });
  • Since 0.0.11 you can ask the API to subscribe to some models, useful when you want for example to preload some data at the application start from some serialized JSON in a <meta> tag. While it's easy to push data into the store with store.pushPayload, then the records are not subscribed until you save them or get them again from Sails using the socket adapter. To push a payload and automatically subscribe to the pushed records, you can give an additional parameter to pushPayload method of the store which if true will automatically subscribe the models and records it can. This will use subscribeMethod, and subscribePath properties of the adapter to do a request on the API.

    • subscribeMethod: get, post, ... defaults to post

    • subscribeEndpoint: the endpoint to do the request on, defaults to /socket/subscribe

    • Of course you'll need to create a basic controller in your Sails API. Here is an example:

      // api/controllers/SocketController.js
      module.exports = {
        subscribe: function (req, res, next) {
          var ids, data = req.allParams(), model, subscribed = {};
          for (var name in data) {
            if (data.hasOwnProperty(name)) {
              model = sails.models[name];
              if (model) {
                ids = data[name];
                model.subscribe(req, ids);
              }
              else {
                sails.logger.warn('trying to subscribe to unknown model: ' + name);
              }
            }
          }
          res.json({});
        }
      };
      
  • Using sails-generate-ember-blueprints: if you want to use this adapter in conjunction with Ember blueprints for Sails from Marcus, you need to define it in the config/environment.js like this:

    ENV.APP.emberDataSails.useSailsEmberBlueprints = true;

TODO

  • Write more unit tests!!!
  • Auto re-subscribe to subscribed records/models after a connection reset (it's already automatically re-listening for the events on the socket, but if Sails application have rebooted, we need to re-subscribe on the server somehow with the client socket)

Authors

While this was first inspired from ember-data-sails-adapter, it has now been fully re-written, with a totally different approach, and, as of the day this was written, with more features.