mirror of
https://github.com/status-im/consul.git
synced 2025-01-31 16:07:58 +00:00
6589cbbd0d
* ui: Add the most basic workspace root in /ui * We already have a LICENSE file in the repository root * Change directory path in build scripts ui-v2 -> ui * Make yarn install flags configurable from elsewhere * Minimal workspace root makefile * Call the new docker specific target * Update yarn in the docker build image * Reconfigure the netlify target and move to the higher makefile * Move ui-v2 -> ui/packages/consul-ui * Change repo root to refleect new folder structure * Temporarily don't hoist consul-api-double * Fixup CI configuration * Fixup lint errors * Fixup Netlify target
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
import { get, set } from '@ember/object';
|
|
|
|
import kv from 'consul-ui/forms/kv';
|
|
import acl from 'consul-ui/forms/acl';
|
|
import token from 'consul-ui/forms/token';
|
|
import policy from 'consul-ui/forms/policy';
|
|
import role from 'consul-ui/forms/role';
|
|
import intention from 'consul-ui/forms/intention';
|
|
import nspace from 'consul-ui/forms/nspace';
|
|
|
|
export function initialize(application) {
|
|
// Service-less injection using private properties at a per-project level
|
|
const FormBuilder = application.resolveRegistration('service:form');
|
|
const forms = {
|
|
kv: kv,
|
|
acl: acl,
|
|
token: token,
|
|
policy: policy,
|
|
role: role,
|
|
intention: intention,
|
|
nspace: nspace,
|
|
};
|
|
FormBuilder.reopen({
|
|
form: function(name) {
|
|
let form = get(this.forms, name);
|
|
if (!form) {
|
|
form = set(this.forms, name, forms[name](this));
|
|
// only do special things for our new things for the moment
|
|
if (name === 'role' || name === 'policy') {
|
|
const repo = get(this, name);
|
|
form.clear(function(obj) {
|
|
return repo.create(obj);
|
|
});
|
|
form.submit(function(obj) {
|
|
return repo.persist(obj);
|
|
});
|
|
}
|
|
}
|
|
return form;
|
|
},
|
|
});
|
|
}
|
|
|
|
export default {
|
|
initialize,
|
|
};
|