vault/ui/app/adapters/generated-item-list.js
Chelsea Shaw dbca3a00fb
UI: Glimmerize path-help and generated-item-adapter (#25767)
* glimmerize path help

* update path-help

* Glimmerize generated-item-adapter and usage to fix tests

* Address PR comments
2024-03-08 11:06:31 -06:00

49 lines
1.1 KiB
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import ApplicationAdapter from './application';
import { task } from 'ember-concurrency';
import { service } from '@ember/service';
import { tracked } from '@glimmer/tracking';
export default class GeneratedItemAdapter extends ApplicationAdapter {
@service store;
namespace = 'v1';
@tracked dynamicApiPath = '';
@task
*getDynamicApiPath(id) {
const result = yield this.store.peekRecord('auth-method', id);
this.dynamicApiPath = result.apiPath;
return;
}
@task
*fetchByQuery(store, query, isList) {
const { id } = query;
const data = {};
if (isList) {
data.list = true;
yield this.getDynamicApiPath.perform(id);
}
return this.ajax(this.urlForItem(id, isList, this.dynamicApiPath), 'GET', { data }).then((resp) => {
const data = {
id,
method: id,
};
return { ...resp, ...data };
});
}
query(store, type, query) {
return this.fetchByQuery.perform(store, query, true);
}
queryRecord(store, type, query) {
return this.fetchByQuery.perform(store, query);
}
}