mirror of
https://github.com/status-im/consul.git
synced 2025-01-24 20:51:10 +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
31 lines
1.1 KiB
JavaScript
31 lines
1.1 KiB
JavaScript
import Model from 'ember-data/model';
|
|
import attr from 'ember-data/attr';
|
|
import { computed, get } from '@ember/object';
|
|
import isFolder from 'consul-ui/utils/isFolder';
|
|
|
|
export const PRIMARY_KEY = 'uid';
|
|
// not really a slug as it contains slashes but all intents and purposes
|
|
// its my 'slug'
|
|
export const SLUG_KEY = 'Key';
|
|
|
|
export default Model.extend({
|
|
[PRIMARY_KEY]: attr('string'),
|
|
[SLUG_KEY]: attr('string'),
|
|
LockIndex: attr('number'),
|
|
Flags: attr('number'),
|
|
// TODO: Consider defaulting all strings to '' because `typeof null !== 'string'`
|
|
// look into what other transformers do with `null` also
|
|
// preferably removeNull would be done in this layer also as if a property is `null`
|
|
// default Values don't kick in, which also explains `Tags` elsewhere
|
|
Value: attr('string'), //, {defaultValue: function() {return '';}}
|
|
CreateIndex: attr('number'),
|
|
ModifyIndex: attr('number'),
|
|
Session: attr('string'),
|
|
Datacenter: attr('string'),
|
|
Namespace: attr('string'),
|
|
|
|
isFolder: computed('Key', function() {
|
|
return isFolder(get(this, 'Key') || '');
|
|
}),
|
|
});
|