Merge pull request #7971 from hashicorp/b-ui/plugin-extend-watchable

UI: Make the Plugin adapter extend Watchable
This commit is contained in:
Michael Lange
2020-05-15 09:15:59 -07:00
committed by GitHub
2 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import Watchable from './watchable';
export default Watchable.extend({
queryParamsToAttrs: {
type: 'type',
},
});

View File

@@ -1,8 +1,10 @@
import Ember from 'ember';
import { get } from '@ember/object';
import { assert } from '@ember/debug';
import RSVP from 'rsvp';
import { task } from 'ember-concurrency';
import wait from 'nomad-ui/utils/wait';
import Watchable from 'nomad-ui/adapters/watchable';
import XHRToken from 'nomad-ui/utils/classes/xhr-token';
import config from 'nomad-ui/config/environment';
@@ -10,6 +12,10 @@ const isEnabled = config.APP.blockingQueries !== false;
export function watchRecord(modelName) {
return task(function*(id, throttle = 2000) {
assert(
'To watch a record, the record adapter MUST extend Watchable',
this.store.adapterFor(modelName) instanceof Watchable
);
const token = new XHRToken();
if (typeof id === 'object') {
id = get(id, 'id');
@@ -35,6 +41,10 @@ export function watchRecord(modelName) {
export function watchRelationship(relationshipName) {
return task(function*(model, throttle = 2000) {
assert(
'To watch a relationship, the adapter of the model provided to the watchRelationship task MUST extend Watchable',
this.store.adapterFor(model.constructor.modelName) instanceof Watchable
);
const token = new XHRToken();
while (isEnabled && !Ember.testing) {
try {
@@ -56,6 +66,10 @@ export function watchRelationship(relationshipName) {
export function watchAll(modelName) {
return task(function*(throttle = 2000) {
assert(
'To watch all, the respective adapter MUST extend Watchable',
this.store.adapterFor(modelName) instanceof Watchable
);
const token = new XHRToken();
while (isEnabled && !Ember.testing) {
try {
@@ -78,6 +92,10 @@ export function watchAll(modelName) {
export function watchQuery(modelName) {
return task(function*(params, throttle = 10000) {
assert(
'To watch a query, the adapter for the type being queried MUST extend Watchable',
this.store.adapterFor(modelName) instanceof Watchable
);
const token = new XHRToken();
while (isEnabled && !Ember.testing) {
try {