Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(frontend): internal catchup - module consolidations for faster build times #1947

Merged
merged 1 commit into from
Oct 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 2 additions & 1 deletion datahub-web/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ module.exports = {
'**/testem.js',
'**/index.js',
'**/config/**/*.js',
'**/lib/*/**.js'
'**/lib/*/**.js',
'**/eyeglass-exports.js'
],
parserOptions: {
sourceType: 'script',
Expand Down
3 changes: 2 additions & 1 deletion datahub-web/@datahub/data-models/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"ember-cli-typescript": "^3.1.3",
"ember-fetch": "^7.0.0",
"ember-lodash": "^4.18.0",
"faker": "^4.1.0"
"faker": "^4.1.0",
"ember-cli-eyeglass": "^6.4.3"
},
"devDependencies": {
"@babel/core": "^7.8.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { INachoTableConfigs } from '@nacho-ui/table/types/nacho-table';
import { KeyNamesWithValueType } from '@datahub/utils/types/base';
import { IDynamicComponent } from '@datahub/shared/types/dynamic-component';
import { IStandardDynamicProperty } from '@datahub/data-models/types/entity/rendering/properties-panel';
import { INachoDropdownOption } from '@nacho-ui/dropdown/types/nacho-dropdown';
import { INachoDropdownOption } from '@nacho-ui/core/types/nacho-dropdown';

// TODO https://jira01.corp.linkedin.com:8443/browse/META-10764: Investigate how to solve the 'wrapper' components scalability issue in generic entity page and search
/**
Expand Down
2 changes: 0 additions & 2 deletions datahub-web/@datahub/datasets-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ The following styling requirements should be met in order to apply stylings for

```scss
// Host application app.scss
@import 'nacho-core-theme';
@import 'nacho-core';
@import 'nacho-table';
@import 'nacho-pill';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="row dataset-schema__header">
<div class="col-xs-12">
<div class="btn-group">
<Placeholder::NachoToggle
<NachoButton::NachoToggle
aria-label="Toggle Table / JSON Schema View"
@value={{this.isShowingTable}}
@leftOptionValue={{true}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
filterLineageByType
} from '@datahub/datasets-core/utils/lineage';
import { AppRoute } from '@datahub/data-models/types/entity/shared';
import { INachoDropdownOption } from '@nacho-ui/dropdown/types/nacho-dropdown';
import { INachoDropdownOption } from '@nacho-ui/core/types/nacho-dropdown';

/**
* Shortcut typing to reference dropdown options for relationship types
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function(server: Server | IMirageServer): void {
generateDatasetSchemaFields(fieldNames, (server as unknown) as Server);

server.createList('datasetPurgePolicy', 1);
server.createList('datasets', 1);
server.createList('dataset', 1);
server.createList('datasetComplianceInfo', 1);
server.createList('datasetExportPolicy', 1);
server.createList('platform', 20);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@
@import 'interactivity/all';
@import 'lineage/all';
@import 'placeholder-nacho-tooltip';
@import 'placeholder-nacho-toggle';
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,17 @@
{{#if showAllRelationships}}

See Less
{{fa-icon
"caret-up"
<FaIcon
@icon="caret-up"
aria-label="See less relationships"
}}
/>
{{else}}

See More
{{fa-icon
"caret-down"
<FaIcon
@icon="caret-down"
aria-label="See more relationships"
}}
/>

{{/if}}
</button>
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion datahub-web/@datahub/datasets-core/addon/utils/lineage.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { IDatasetLineage, DatasetLineageList } from '@datahub/metadata-types/types/entity/dataset/lineage';
import { arrayFilter, take } from '@datahub/utils/array/index';
import { INachoDropdownOption } from '@nacho-ui/dropdown/types/nacho-dropdown';
import { INachoDropdownOption } from '@nacho-ui/core/types/nacho-dropdown';

/**
* Shortcut typing to reference dropdown options for relationship types
Expand Down

This file was deleted.

This file was deleted.

11 changes: 11 additions & 0 deletions datahub-web/@datahub/datasets-core/eyeglass-exports.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/* eslint-env node */

'use strict';

const path = require('path');

module.exports = function eyeglassExports(/* eyeglass, sass */) {
return {
sassDir: path.join(__dirname, 'addon', 'styles')
};
};
18 changes: 12 additions & 6 deletions datahub-web/@datahub/datasets-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"version": "0.0.1",
"description": "The handler for datasets as an entity under DataHub",
"keywords": [
"ember-addon"
"ember-addon",
"eyeglass-module"
],
"repository": "",
"license": "MIT",
Expand All @@ -25,12 +26,10 @@
"@datahub/data-models": "0.0.0",
"@datahub/metadata-types": "0.0.0",
"@datahub/utils": "0.0.0",
"@fortawesome/ember-fontawesome": "^0.1.13",
"@fortawesome/ember-fontawesome": "^0.2.2",
"@fortawesome/free-regular-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@nacho-ui/animations": "^0.0.38",
"@nacho-ui/core": "^0.0.38",
"@nacho-ui/dropdown": "^0.0.38",
"@nacho-ui/pill": "^0.0.38",
"@nacho-ui/table": "^0.0.38",
"@types/ember-resolver": "^5.0.7",
Expand All @@ -40,7 +39,10 @@
"ember-cli-htmlbars": "^4.2.2",
"ember-cli-typescript": "^3.1.3",
"ember-composable-helpers": "^3.0.3",
"ember-concurrency": "^1.1.2"
"ember-concurrency": "^1.1.2",
"ember-cli-eyeglass": "^6.4.3",
"eyeglass": "^2.4.2",
"eyeglass-restyle": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
Expand All @@ -60,7 +62,6 @@
"ember-cli-dependency-checker": "^3.2.0",
"ember-cli-inject-live-reload": "^2.0.2",
"ember-cli-mirage": "^0.4.15",
"ember-cli-sass": "^10.0.0",
"ember-cli-sri": "^2.1.1",
"ember-cli-typescript-blueprints": "^3.0.0",
"ember-cli-uglify": "^3.0.0",
Expand Down Expand Up @@ -88,5 +89,10 @@
},
"ember-addon": {
"configPath": "tests/dummy/config"
},
"eyeglass": {
"needs": "^2.4.2",
"name": "datahub-datasets",
"exports": "eyeglass-exports.js"
}
}
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
@import 'nacho-core';
@import 'datahub-utils';
@import 'nacho-table';
@import 'nacho-animations';
@import 'nacho-pill';
@import 'nacho-dropdown';

@import 'datasets-core';
@import 'datahub-datasets';

html {
font-family: 'Source Sans Pro';
Expand Down
Loading