open-vault/ui/app/models/identity/group.js
claire bontempo 9cc2f52bc1
UI: Glimmerize search select component (#17276)
* initial commit for glimmerizing search-select

* fix credentials card tests

* WIP/fixing manually passed in options

* note for small change made in other PR

* still a work in progress, but maybe fixed some tests...maybe

* fix path filter config tests

* remove comments

* clean up merge conflicts

* remove redundant subLabel

* remove subLabel, change default label to form field size

* split up format method

* cleanup, try to keep types consistent

* change logic for ss lable

* remove comment

* cleanup naming

* fix incorrect glimmer change

* refactor to allow for parent handling selected options

* update jsdoc and reogranize functions

* add test to path filter config

* address comments, small cleanup

* add test for path filter config ss

* rearrange functions so git diff is easier to compare

* change isNotSectionHeader to isSectionHeader

* add more explicit test coverage, tidying for search select

* small doc tidy

* add comments, one more test! last cleanup!

* fix search select tests
2022-10-03 11:01:34 -07:00

93 lines
2.7 KiB
JavaScript

import { belongsTo, attr } from '@ember-data/model';
import { alias } from '@ember/object/computed';
import { computed } from '@ember/object';
import IdentityModel from './_base';
import lazyCapabilities, { apiPath } from 'vault/macros/lazy-capabilities';
import identityCapabilities from 'vault/macros/identity-capabilities';
export default IdentityModel.extend({
formFields: computed('type', function () {
let fields = ['name', 'type', 'policies', 'metadata'];
if (this.type === 'internal') {
return fields.concat(['memberGroupIds', 'memberEntityIds']);
}
return fields;
}),
name: attr('string'),
type: attr('string', {
defaultValue: 'internal',
possibleValues: ['internal', 'external'],
}),
creationTime: attr('string', {
readOnly: true,
}),
lastUpdateTime: attr('string', {
readOnly: true,
}),
numMemberEntities: attr('number', {
readOnly: true,
}),
numParentGroups: attr('number', {
readOnly: true,
}),
metadata: attr('object', {
editType: 'kv',
}),
policies: attr({
label: 'Policies',
editType: 'searchSelect',
isSectionHeader: true,
fallbackComponent: 'string-list',
models: ['policy/acl', 'policy/rgp'],
}),
memberGroupIds: attr({
label: 'Member Group IDs',
editType: 'searchSelect',
isSectionHeader: true,
fallbackComponent: 'string-list',
models: ['identity/group'],
}),
parentGroupIds: attr({
label: 'Parent Group IDs',
editType: 'searchSelect',
isSectionHeader: true,
fallbackComponent: 'string-list',
models: ['identity/group'],
}),
memberEntityIds: attr({
label: 'Member Entity IDs',
editType: 'searchSelect',
isSectionHeader: true,
fallbackComponent: 'string-list',
models: ['identity/entity'],
}),
hasMembers: computed(
'memberEntityIds',
'memberEntityIds.[]',
'memberGroupIds',
'memberGroupIds.[]',
function () {
let { memberEntityIds, memberGroupIds } = this;
let numEntities = (memberEntityIds && memberEntityIds.length) || 0;
let numGroups = (memberGroupIds && memberGroupIds.length) || 0;
return numEntities + numGroups > 0;
}
),
alias: belongsTo('identity/group-alias', { async: false, readOnly: true }),
updatePath: identityCapabilities(),
canDelete: alias('updatePath.canDelete'),
canEdit: alias('updatePath.canUpdate'),
aliasPath: lazyCapabilities(apiPath`identity/group-alias`),
canAddAlias: computed('aliasPath.canCreate', 'type', 'alias', function () {
let type = this.type;
let alias = this.alias;
// internal groups can't have aliases, and external groups can only have one
if (type === 'internal' || alias) {
return false;
}
return this.aliasPath.canCreate;
}),
});