2017-02-13 11:26:50 -08:00
|
|
|
import Ember from 'ember';
|
2017-04-28 13:44:31 -07:00
|
|
|
import { makeUrnBreadcrumbs } from 'wherehows-web/utils/entities';
|
2017-08-15 23:16:38 -07:00
|
|
|
import { datasetComplianceFor } from 'wherehows-web/utils/api';
|
2017-08-18 03:42:40 -07:00
|
|
|
import { datasetComplianceSuggestionsFor } from 'wherehows-web/utils/api/datasets';
|
2017-03-24 22:15:48 -07:00
|
|
|
|
2017-06-19 17:11:53 -07:00
|
|
|
const { Route, get, set, setProperties, isPresent, inject: { service }, $: { getJSON } } = Ember;
|
2017-03-24 22:15:48 -07:00
|
|
|
// TODO: DSS-6581 Create URL retrieval module
|
|
|
|
const datasetsUrlRoot = '/api/v1/datasets';
|
|
|
|
const datasetUrl = id => `${datasetsUrlRoot}/${id}`;
|
|
|
|
const ownerTypeUrlRoot = '/api/v1/owner/types';
|
|
|
|
const userSettingsUrlRoot = '/api/v1/user/me';
|
|
|
|
const partyEntitiesUrl = '/api/v1/party/entities';
|
|
|
|
const getDatasetColumnUrl = id => `${datasetUrl(id)}/columns`;
|
|
|
|
const getDatasetPropertiesUrl = id => `${datasetUrl(id)}/properties`;
|
|
|
|
const getDatasetSampleUrl = id => `${datasetUrl(id)}/sample`;
|
|
|
|
const getDatasetImpactAnalysisUrl = id => `${datasetUrl(id)}/impacts`;
|
|
|
|
const getDatasetDependsUrl = id => `${datasetUrl(id)}/depends`;
|
|
|
|
const getDatasetPartitionsUrl = id => `${datasetUrl(id)}/access`;
|
|
|
|
const getDatasetReferencesUrl = id => `${datasetUrl(id)}/references`;
|
|
|
|
const getDatasetOwnersUrl = id => `${datasetUrl(id)}/owners`;
|
|
|
|
const getDatasetInstanceUrl = id => `${datasetUrl(id)}/instances`;
|
2017-06-19 17:11:53 -07:00
|
|
|
const getDatasetVersionUrl = (id, dbId) => `${datasetUrl(id)}/versions/db/${dbId}`;
|
2017-03-24 22:15:48 -07:00
|
|
|
|
|
|
|
let getDatasetColumn;
|
|
|
|
|
|
|
|
export default Route.extend({
|
2017-06-19 17:11:53 -07:00
|
|
|
/**
|
|
|
|
* Runtime application configuration options
|
|
|
|
* @type {Ember.Service}
|
|
|
|
*/
|
|
|
|
configurator: service(),
|
|
|
|
|
2017-03-24 22:15:48 -07:00
|
|
|
//TODO: DSS-6632 Correct server-side if status:error and record not found but response is 200OK
|
2017-02-13 11:26:50 -08:00
|
|
|
setupController(controller, model) {
|
2017-03-24 22:15:48 -07:00
|
|
|
let source = '';
|
2017-08-07 22:21:05 -07:00
|
|
|
let id = 0;
|
|
|
|
let urn = '';
|
2017-02-13 11:26:50 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Series of chain-able functions invoked to set set properties on the controller required for dataset tab sections
|
|
|
|
*/
|
|
|
|
const fetchThenSetOnController = {
|
2017-06-19 17:11:53 -07:00
|
|
|
datasetSchemaFieldNamesAndTypes(controller, { id }) {
|
|
|
|
Promise.resolve(getJSON(datasetUrl(id))).then(({ dataset: { schema } = { schema: undefined } } = {}) => {
|
2017-03-24 22:15:48 -07:00
|
|
|
/**
|
2017-02-13 11:26:50 -08:00
|
|
|
* Parses a JSON dataset schema representation and extracts the field names and types into a list of maps
|
|
|
|
* @param {JSON} schema
|
|
|
|
* @returns {Array.<*>}
|
|
|
|
*/
|
2017-03-24 22:15:48 -07:00
|
|
|
function getFieldNamesAndTypesFrom(schema = JSON.stringify({})) {
|
|
|
|
/**
|
2017-02-13 11:26:50 -08:00
|
|
|
* schema argument may contain property with name `fields` or `fields` may be nested in `schema` object
|
|
|
|
* with same name.
|
|
|
|
* Unfortunately shape is inconsistent depending of dataset queried.
|
|
|
|
* Use `fields` property if present and is an array, otherwise use `fields` property on `schema`.
|
|
|
|
* Will default to empty array.
|
|
|
|
* @param {Array} [nestedFields]
|
|
|
|
* @param {Array} [fields]
|
|
|
|
* @returns {Array.<*>}
|
|
|
|
*/
|
2017-06-19 17:11:53 -07:00
|
|
|
function getFieldTypeMappingArray({ schema: { fields: nestedFields = [] } = { schema: {} }, fields }) {
|
2017-03-24 22:15:48 -07:00
|
|
|
fields = Array.isArray(fields) ? fields : nestedFields;
|
|
|
|
|
|
|
|
// As above, field may contain a label with string property or a name property
|
|
|
|
return fields.map(({ label: { string } = {}, name, type }) => ({
|
|
|
|
name: string || name,
|
2017-06-19 17:11:53 -07:00
|
|
|
type: Array.isArray(type) ? (type[0] === 'null' ? type.slice(1) : type) : [type]
|
2017-03-24 22:15:48 -07:00
|
|
|
}));
|
|
|
|
}
|
2017-02-13 11:26:50 -08:00
|
|
|
|
2017-03-24 22:15:48 -07:00
|
|
|
schema = JSON.parse(schema);
|
|
|
|
return [...getFieldTypeMappingArray(schema)];
|
|
|
|
}
|
2017-02-13 11:26:50 -08:00
|
|
|
|
2017-06-19 17:11:53 -07:00
|
|
|
set(controller, 'datasetSchemaFieldsAndTypes', getFieldNamesAndTypesFrom(schema));
|
2017-03-24 22:15:48 -07:00
|
|
|
});
|
2017-02-13 11:26:50 -08:00
|
|
|
|
|
|
|
return this;
|
2017-06-19 17:11:53 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the isInternal flag as a property on the controller
|
|
|
|
* @param controller {Ember.Controller} the controller to set the internal flag on
|
|
|
|
* @param configurator {Ember.Service}
|
|
|
|
* @return {Promise.<void>}
|
|
|
|
*/
|
|
|
|
async isInternal(controller, { configurator }) {
|
|
|
|
const isInternal = await configurator.getConfig('isInternal');
|
|
|
|
set(controller, 'isInternal', isInternal);
|
2017-02-13 11:26:50 -08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-24 22:15:48 -07:00
|
|
|
set(controller, 'hasProperty', false);
|
2017-02-13 11:26:50 -08:00
|
|
|
|
|
|
|
if (model && model.id) {
|
2017-03-24 22:15:48 -07:00
|
|
|
({ id, source, urn } = model);
|
|
|
|
let { originalSchema = null } = model;
|
2017-02-13 11:26:50 -08:00
|
|
|
|
|
|
|
this.controllerFor('datasets').set('detailview', true);
|
|
|
|
if (originalSchema) {
|
2017-03-24 22:15:48 -07:00
|
|
|
set(model, 'schema', originalSchema);
|
2017-02-13 11:26:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
controller.set('model', model);
|
|
|
|
} else if (model.dataset) {
|
2017-03-24 22:15:48 -07:00
|
|
|
({ id, source, urn } = model.dataset);
|
2017-02-13 11:26:50 -08:00
|
|
|
|
|
|
|
controller.set('model', model.dataset);
|
|
|
|
this.controllerFor('datasets').set('detailview', true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't set default zero Ids on controller
|
|
|
|
if (id) {
|
|
|
|
controller.set('datasetId', id);
|
|
|
|
// Creates list of partially applied functions from `fetchThenSetController` and invokes each in turn
|
|
|
|
Object.keys(fetchThenSetOnController)
|
2017-03-24 22:15:48 -07:00
|
|
|
.map(funcRef =>
|
2017-06-19 17:11:53 -07:00
|
|
|
fetchThenSetOnController[funcRef]['bind'](fetchThenSetOnController, controller, {
|
2017-03-24 22:15:48 -07:00
|
|
|
id,
|
2017-06-19 17:11:53 -07:00
|
|
|
configurator: get(this, 'configurator')
|
|
|
|
})
|
|
|
|
)
|
2017-03-24 22:15:48 -07:00
|
|
|
.forEach(func => func());
|
2017-08-07 22:21:05 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetch the datasetColumn
|
|
|
|
* @param {number} id the id of the dataset
|
|
|
|
*/
|
|
|
|
getDatasetColumn = id =>
|
|
|
|
Promise.resolve(getJSON(getDatasetColumnUrl(id)))
|
2017-08-08 21:44:18 -07:00
|
|
|
.then(({ status, columns = [] }) => {
|
2017-08-07 22:21:05 -07:00
|
|
|
if (status === 'ok') {
|
|
|
|
if (columns && columns.length) {
|
|
|
|
const columnsWithHTMLComments = columns.map(column => {
|
|
|
|
const { comment } = column;
|
|
|
|
|
|
|
|
if (comment) {
|
|
|
|
// TODO: DSS-6122 Refactor global function reference
|
|
|
|
column.commentHtml = window.marked(comment).htmlSafe();
|
|
|
|
}
|
|
|
|
|
|
|
|
return column;
|
|
|
|
});
|
|
|
|
|
|
|
|
controller.set('hasSchemas', true);
|
|
|
|
controller.set('schemas', columnsWithHTMLComments);
|
|
|
|
|
|
|
|
// TODO: DSS-6122 Refactor direct method invocation on controller
|
|
|
|
controller.buildJsonView();
|
|
|
|
// TODO: DSS-6122 Refactor setTimeout,
|
|
|
|
// global function reference
|
|
|
|
setTimeout(window.initializeColumnTreeGrid, 500);
|
|
|
|
}
|
|
|
|
|
|
|
|
return columns;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.reject(new Error('Dataset columns request failed.'));
|
|
|
|
})
|
|
|
|
.then(columns => columns.map(({ dataType, fullFieldPath }) => ({ dataType, fieldName: fullFieldPath })))
|
2017-08-08 21:44:18 -07:00
|
|
|
.catch(() => {
|
|
|
|
setProperties(controller, { hasSchemas: false, schemas: null });
|
|
|
|
return [];
|
|
|
|
});
|
2017-08-07 22:21:05 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* async IIFE sets the the complianceInfo and schemaFieldNamesMappedToDataTypes
|
|
|
|
* at once so observers will be buffered
|
|
|
|
* @param {number} id the dataset id
|
|
|
|
* @return {Promise.<void>}
|
|
|
|
*/
|
|
|
|
(async id => {
|
2017-08-20 20:05:18 -07:00
|
|
|
const [columns, compliance, complianceSuggestion] = await Promise.all([
|
2017-08-18 03:42:40 -07:00
|
|
|
getDatasetColumn(id),
|
|
|
|
datasetComplianceFor(id),
|
|
|
|
datasetComplianceSuggestionsFor(id)
|
|
|
|
]);
|
2017-08-15 23:16:38 -07:00
|
|
|
const { complianceInfo, isNewComplianceInfo } = compliance;
|
2017-08-07 22:21:05 -07:00
|
|
|
setProperties(controller, {
|
|
|
|
complianceInfo,
|
|
|
|
isNewComplianceInfo,
|
2017-08-20 20:05:18 -07:00
|
|
|
complianceSuggestion,
|
2017-08-07 22:21:05 -07:00
|
|
|
schemaFieldNamesMappedToDataTypes: columns
|
|
|
|
});
|
|
|
|
})(id);
|
2017-02-13 11:26:50 -08:00
|
|
|
}
|
|
|
|
|
2017-03-24 22:15:48 -07:00
|
|
|
Promise.resolve(getJSON(getDatasetInstanceUrl(id)))
|
|
|
|
.then(({ status, instances = [] }) => {
|
|
|
|
if (status === 'ok' && instances.length) {
|
|
|
|
const [firstInstance = {}] = instances;
|
|
|
|
const { dbId } = firstInstance;
|
|
|
|
|
|
|
|
setProperties(controller, {
|
|
|
|
instances,
|
|
|
|
hasinstances: true,
|
|
|
|
currentInstance: firstInstance,
|
|
|
|
latestInstance: firstInstance
|
|
|
|
});
|
|
|
|
|
2017-06-19 17:11:53 -07:00
|
|
|
return Promise.resolve(getJSON(getDatasetVersionUrl(id, dbId))).then(({ status, versions = [] }) => {
|
2017-03-24 22:15:48 -07:00
|
|
|
if (status === 'ok' && versions.length) {
|
|
|
|
const [firstVersion] = versions;
|
|
|
|
|
|
|
|
setProperties(controller, {
|
|
|
|
versions,
|
|
|
|
hasversions: true,
|
|
|
|
currentVersion: firstVersion,
|
|
|
|
latestVersion: firstVersion
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-06-19 17:11:53 -07:00
|
|
|
return Promise.reject(new Error('Dataset versions request failed.'));
|
2017-03-24 22:15:48 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.reject(new Error('Dataset instances request failed.'));
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
setProperties(controller, {
|
|
|
|
hasinstances: false,
|
|
|
|
hasversions: false,
|
|
|
|
currentInstance: '0',
|
|
|
|
latestInstance: '0',
|
|
|
|
currentVersion: '0',
|
|
|
|
latestVersion: '0'
|
2017-02-13 11:26:50 -08:00
|
|
|
});
|
2017-03-24 22:15:48 -07:00
|
|
|
});
|
2017-02-13 11:26:50 -08:00
|
|
|
|
|
|
|
if (datasetCommentsComponent) {
|
|
|
|
datasetCommentsComponent.getComments();
|
|
|
|
}
|
|
|
|
|
2017-04-28 13:44:31 -07:00
|
|
|
// If urn exists, create a breadcrumb list
|
|
|
|
// TODO: DSS-7068 Refactoring in progress , move this to a computed prop on a container component
|
|
|
|
// FIXME: DSS-7068 browse.entity?urn route does not exist for last item in breadcrumb i.e. the dataset
|
|
|
|
// currently being viewed. Should this even be a link in the first place?
|
2017-02-13 11:26:50 -08:00
|
|
|
if (urn) {
|
2017-04-28 13:44:31 -07:00
|
|
|
set(controller, 'breadcrumbs', makeUrnBreadcrumbs(urn));
|
2017-02-13 11:26:50 -08:00
|
|
|
}
|
|
|
|
|
2017-03-25 15:30:47 -07:00
|
|
|
// Get the list of ownerTypes from endpoint,
|
|
|
|
// then prevent display of the `consumer`
|
|
|
|
// insert on controller
|
2017-06-19 17:11:53 -07:00
|
|
|
Promise.resolve(getJSON(ownerTypeUrlRoot)).then(({ status, ownerTypes = [] }) => {
|
|
|
|
ownerTypes = ownerTypes
|
|
|
|
.filter(ownerType => String(ownerType).toLowerCase() !== 'consumer')
|
|
|
|
.sort((a, b) => a.localeCompare(b));
|
2017-03-26 06:36:23 -07:00
|
|
|
|
2017-06-19 17:11:53 -07:00
|
|
|
status === 'ok' && set(controller, 'ownerTypes', ownerTypes);
|
|
|
|
});
|
2017-02-13 11:26:50 -08:00
|
|
|
|
2017-03-24 22:15:48 -07:00
|
|
|
Promise.resolve(getJSON(userSettingsUrlRoot)).then(({ status, user }) => {
|
|
|
|
if (status === 'ok') {
|
|
|
|
// TODO: DSS-6633 Remove `data.user.userSetting.detailDefaultView` from
|
|
|
|
// '/api/v1/user/me' endpoint
|
|
|
|
controller.set('currentUser', user);
|
2017-02-13 11:26:50 -08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-03-24 22:15:48 -07:00
|
|
|
if (source.toLowerCase() !== 'pinot') {
|
|
|
|
Promise.resolve(getJSON(getDatasetPropertiesUrl(id)))
|
|
|
|
.then(({ status, properties }) => {
|
|
|
|
if (status === 'ok' && properties) {
|
2017-06-19 17:11:53 -07:00
|
|
|
const propertyArray = window.convertPropertiesToArray(properties) || [];
|
2017-03-24 22:15:48 -07:00
|
|
|
if (propertyArray.length) {
|
|
|
|
controller.set('hasProperty', true);
|
|
|
|
|
|
|
|
return controller.set('properties', propertyArray);
|
2017-02-13 11:26:50 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-19 17:11:53 -07:00
|
|
|
return Promise.reject(new Error('Dataset properties request failed.'));
|
2017-03-24 22:15:48 -07:00
|
|
|
})
|
|
|
|
.catch(() => controller.set('hasProperty', false));
|
|
|
|
|
|
|
|
Promise.resolve(getJSON(getDatasetSampleUrl(id)))
|
|
|
|
.then(({ status, sampleData = {} }) => {
|
|
|
|
if (status === 'ok') {
|
|
|
|
const { sample = [] } = sampleData;
|
|
|
|
const { length } = sample;
|
|
|
|
if (length) {
|
|
|
|
const samplesObject = sample.reduce(
|
2017-06-19 17:11:53 -07:00
|
|
|
(sampleObject, record, index) => ((sampleObject[`record${index}`] = record), sampleObject),
|
2017-03-24 22:15:48 -07:00
|
|
|
{}
|
|
|
|
);
|
|
|
|
// TODO: DSS-6122 Refactor global function reference
|
|
|
|
const node = window.JsonHuman.format(samplesObject);
|
|
|
|
|
|
|
|
controller.set('hasSamples', true);
|
|
|
|
|
|
|
|
// TODO: DSS-6122 Refactor setTimeout
|
2017-06-19 17:11:53 -07:00
|
|
|
setTimeout(function() {
|
|
|
|
const jsonHuman = document.getElementById('datasetSampleData-json-human');
|
|
|
|
if (jsonHuman) {
|
|
|
|
if (jsonHuman.children && jsonHuman.children.length) {
|
|
|
|
jsonHuman.removeChild(jsonHuman.childNodes[jsonHuman.children.length - 1]);
|
2017-03-24 22:15:48 -07:00
|
|
|
}
|
2017-06-19 17:11:53 -07:00
|
|
|
|
|
|
|
jsonHuman.appendChild(node);
|
|
|
|
}
|
|
|
|
}, 500);
|
2017-03-24 22:15:48 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
2017-02-13 11:26:50 -08:00
|
|
|
}
|
2017-03-24 22:15:48 -07:00
|
|
|
|
|
|
|
return Promise.reject(new Error('Dataset sample request failed.'));
|
|
|
|
})
|
|
|
|
.catch(() => set(controller, 'hasSamples', false));
|
2017-02-13 11:26:50 -08:00
|
|
|
}
|
|
|
|
|
2017-03-24 22:15:48 -07:00
|
|
|
if (source.toLowerCase() === 'pinot') {
|
2017-06-19 17:11:53 -07:00
|
|
|
Promise.resolve(getJSON(getDatasetPropertiesUrl(id))).then(({ status, properties = {} }) => {
|
2017-03-24 22:15:48 -07:00
|
|
|
if (status === 'ok') {
|
|
|
|
const { elements = [] } = properties;
|
|
|
|
const [{ columnNames = [], results } = {}] = elements;
|
|
|
|
|
|
|
|
if (columnNames.length) {
|
|
|
|
return setProperties(controller, {
|
|
|
|
hasSamples: true,
|
|
|
|
samples: results,
|
|
|
|
columns: columnNames
|
|
|
|
});
|
2017-02-13 11:26:50 -08:00
|
|
|
}
|
|
|
|
}
|
2017-03-24 22:15:48 -07:00
|
|
|
|
|
|
|
return Promise.reject(new Error('Dataset properties request failed.'));
|
2017-02-13 11:26:50 -08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-03-24 22:15:48 -07:00
|
|
|
Promise.resolve(getJSON(getDatasetImpactAnalysisUrl(id)))
|
|
|
|
.then(({ status, impacts = [] }) => {
|
|
|
|
if (status === 'ok') {
|
|
|
|
if (impacts.length) {
|
|
|
|
return setProperties(controller, {
|
|
|
|
hasImpacts: true,
|
|
|
|
impacts: impacts
|
|
|
|
});
|
|
|
|
}
|
2017-02-13 11:26:50 -08:00
|
|
|
}
|
|
|
|
|
2017-06-19 17:11:53 -07:00
|
|
|
return Promise.reject(new Error('Dataset impact analysis request failed.'));
|
2017-03-24 22:15:48 -07:00
|
|
|
})
|
|
|
|
.catch(() => set(controller, 'hasImpacts', false));
|
|
|
|
|
|
|
|
Promise.resolve(getJSON(getDatasetDependsUrl(id)))
|
|
|
|
.then(({ status, depends = [] }) => {
|
|
|
|
if (status === 'ok') {
|
|
|
|
if (depends.length) {
|
|
|
|
// TODO: DSS-6122 Refactor setTimeout,
|
|
|
|
// global function reference
|
|
|
|
setTimeout(window.initializeDependsTreeGrid, 500);
|
|
|
|
return setProperties(controller, {
|
|
|
|
depends,
|
|
|
|
hasDepends: true
|
|
|
|
});
|
|
|
|
}
|
2017-02-13 11:26:50 -08:00
|
|
|
}
|
|
|
|
|
2017-03-24 22:15:48 -07:00
|
|
|
return Promise.reject(new Error('Dataset depends request failed.'));
|
|
|
|
})
|
|
|
|
.catch(() => set(controller, 'hasDepends', false));
|
|
|
|
|
|
|
|
Promise.resolve(getJSON(getDatasetPartitionsUrl(id)))
|
|
|
|
.then(({ status, access = [] }) => {
|
|
|
|
if (status === 'ok' && access.length) {
|
|
|
|
return setProperties(controller, {
|
|
|
|
hasAccess: true,
|
|
|
|
accessibilities: access
|
|
|
|
});
|
2017-02-13 11:26:50 -08:00
|
|
|
}
|
|
|
|
|
2017-03-24 22:15:48 -07:00
|
|
|
return Promise.reject(new Error('Dataset partitions request failed.'));
|
|
|
|
})
|
|
|
|
.catch(() => set(controller, 'hasAccess', false));
|
|
|
|
|
|
|
|
Promise.resolve(getJSON(getDatasetReferencesUrl(id)))
|
|
|
|
.then(({ status, references = [] }) => {
|
|
|
|
if (status === 'ok' && references.length) {
|
|
|
|
setTimeout(window.initializeReferencesTreeGrid, 500);
|
|
|
|
|
|
|
|
return setProperties(controller, {
|
|
|
|
references,
|
|
|
|
hasReferences: true
|
|
|
|
});
|
2017-02-13 11:26:50 -08:00
|
|
|
}
|
|
|
|
|
2017-03-24 22:15:48 -07:00
|
|
|
return Promise.reject(new Error('Dataset references request failed.'));
|
|
|
|
})
|
|
|
|
.catch(() => set(controller, 'hasReferences', false));
|
|
|
|
|
2017-03-25 15:30:47 -07:00
|
|
|
// Retrieve the current owners of the dataset and store on the controller
|
2017-03-24 22:15:48 -07:00
|
|
|
Promise.resolve(getJSON(getDatasetOwnersUrl(id)))
|
|
|
|
.then(({ status, owners = [] }) => {
|
2017-04-27 17:00:32 -07:00
|
|
|
if (status === 'ok') {
|
2017-05-19 11:42:45 -07:00
|
|
|
const minRequiredConfirmed = 2;
|
2017-06-19 17:11:53 -07:00
|
|
|
const requiredMinNotConfirmed =
|
|
|
|
owners.filter(({ confirmedBy, type, idType }) => confirmedBy && type === 'Owner' && idType === 'USER')
|
|
|
|
.length < minRequiredConfirmed;
|
2017-05-19 11:42:45 -07:00
|
|
|
|
|
|
|
setProperties(controller, {
|
|
|
|
requiredMinNotConfirmed,
|
2017-06-19 17:11:53 -07:00
|
|
|
owners: owners.map(owner =>
|
|
|
|
Object.assign({}, owner, {
|
2017-08-21 15:22:28 -07:00
|
|
|
modifiedTime: owner.modifiedTime && new Date(owner.modifiedTime)
|
2017-06-19 17:11:53 -07:00
|
|
|
})
|
|
|
|
)
|
2017-05-19 11:42:45 -07:00
|
|
|
});
|
2017-04-27 17:00:32 -07:00
|
|
|
}
|
2017-03-24 22:15:48 -07:00
|
|
|
})
|
|
|
|
.then(() => getJSON(partyEntitiesUrl))
|
|
|
|
.then(({ status, userEntities = [] }) => {
|
|
|
|
if (status === 'ok' && userEntities.length) {
|
|
|
|
/**
|
|
|
|
* @type {Object} userEntitiesMaps hash of userEntities: label -> displayName
|
|
|
|
*/
|
|
|
|
const userEntitiesMaps = userEntities.reduce(
|
|
|
|
(map, { label, displayName }) => ((map[label] = displayName), map),
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
|
|
|
|
setProperties(controller, {
|
|
|
|
userEntitiesMaps,
|
|
|
|
userEntitiesSource: Object.keys(userEntitiesMaps)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2017-02-13 11:26:50 -08:00
|
|
|
},
|
|
|
|
|
2017-03-24 22:15:48 -07:00
|
|
|
model: ({ dataset_id }) => {
|
|
|
|
const datasetUrl = `${datasetsUrlRoot}/${dataset_id}`;
|
|
|
|
|
2017-06-19 17:11:53 -07:00
|
|
|
return Promise.resolve(getJSON(datasetUrl)).then(({ status, dataset, message = '' }) => {
|
|
|
|
return status === 'ok' && isPresent(dataset)
|
|
|
|
? dataset
|
|
|
|
: Promise.reject(
|
2017-04-11 13:24:32 -07:00
|
|
|
new Error(
|
|
|
|
`Request for ${datasetUrl} failed with status: ${status}.
|
|
|
|
${message}`
|
|
|
|
)
|
|
|
|
);
|
2017-06-19 17:11:53 -07:00
|
|
|
});
|
2017-03-24 22:15:48 -07:00
|
|
|
},
|
2017-02-13 11:26:50 -08:00
|
|
|
|
|
|
|
actions: {
|
2017-03-24 22:15:48 -07:00
|
|
|
getSchema: function() {
|
|
|
|
const controller = get(this, 'controller');
|
|
|
|
const id = get(controller, 'model.id');
|
|
|
|
|
|
|
|
set(controller, 'isTable', true);
|
|
|
|
set(controller, 'isJSON', false);
|
|
|
|
typeof getDatasetColumn === 'function' && getDatasetColumn(id);
|
2017-02-13 11:26:50 -08:00
|
|
|
},
|
2017-03-24 22:15:48 -07:00
|
|
|
|
|
|
|
getDataset() {
|
2017-06-19 17:11:53 -07:00
|
|
|
Promise.resolve(getJSON(datasetUrl(this.get('controller.model.id')))).then(
|
|
|
|
({ status, dataset }) => status === 'ok' && set(this, 'controller.model', dataset)
|
2017-03-24 22:15:48 -07:00
|
|
|
);
|
2017-02-13 11:26:50 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|