-
Notifications
You must be signed in to change notification settings - Fork 207
Add related assets to adapter during adapter generation process #3804
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
Merged
Merged
Changes from all commits
Commits
Show all changes
70 commits
Select commit
Hold shift + click to select a range
6e9c691
added working stepper
JHoelli 8cb101a
getting data from popup
JHoelli 10ab85c
page
JHoelli 823ddfb
get working
JHoelli d570e02
select ID workd
JHoelli 6dba050
added boxes
JHoelli 7bcc921
links are in view
JHoelli 3ff06ec
better, still UI Fixes needed
JHoelli 9fb3cc1
added Link Type
JHoelli 6a60170
working on first level
JHoelli 8e235c0
first level working
JHoelli 9e0ff7e
second level api works
JHoelli f779956
refactored Logic
JHoelli 5ecd45d
eliminated log in asset service
JHoelli 041f7fa
added Button Functionality
JHoelli 4061e24
small fix in addToAsset
JHoelli 3ec5132
everything seems to be working
JHoelli e9cb6a2
basic ui
JHoelli 1c575e8
eliminated from Start Page
JHoelli 6331023
tree draft
JHoelli a82692f
draft
JHoelli 8c4565f
select works
JHoelli 248009f
returned button
JHoelli 8eacf83
Emit works
JHoelli 943cedd
first working fraft
JHoelli 71a9325
first draft running
JHoelli 77c4026
save
JHoelli 2bae75c
Message
JHoelli 40caec7
DataLake Endpoint
JHoelli 06eaee3
first part of DL works
JHoelli e9bf628
dataLake is running
JHoelli 0425d39
some cleanup
JHoelli 3153cfb
refactored some methods for easier readability
JHoelli 37b44d7
cleaned up some more
JHoelli c9b296e
finished first cleanup
JHoelli e22d4c5
fixed css
JHoelli 430e3b6
deleted comments
JHoelli 1bc8d8a
fixed checkbox
JHoelli 582741c
Final
JHoelli e6bda8b
rewrote first path to path
JHoelli 35b0b34
inbetween saver
JHoelli 8dc026f
rewrote to path
JHoelli b7e67bc
deleted comments
JHoelli 9f1c04e
moved Asset
JHoelli 940a333
resolved mapping issue
JHoelli b471c2d
elimnated console logs
JHoelli 1f480ee
save inbetween
JHoelli efafc00
working
JHoelli 1e657be
now working
JHoelli a7a352e
cleanup now working
JHoelli 311440f
renamed asset model
JHoelli 3f62ab2
deleted unneccessary loop
JHoelli c89e18d
easy case works
JHoelli c2353fe
fixed the overwriting issue
JHoelli 2f6894c
everything working
JHoelli 3ec5bb0
eliminated logs
JHoelli 629a90b
imported model
JHoelli 093ac46
Merge branch 'apache:dev' into AddAssetsToAdapter
JHoelli 909ad51
layout has gotten better
JHoelli 5625593
layout
JHoelli 06b1561
Merge branch 'dev' into AddAssetsToAdapter
tenthe ae5a0d2
removed_polling
JHoelli e902922
pollign in model
JHoelli d9ca8f9
removed from Promise
JHoelli b90a7e9
translation
JHoelli 4f2871d
prep translation of config
JHoelli c1d1e33
css
JHoelli b012c00
more translation
JHoelli ac56c3a
i18n translation files
JHoelli c6a9961
fixed linter
JHoelli File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
...pter-configuration/adapter-asset-configuration/adapter-asset-configuration.component.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<!-- | ||
~ Licensed to the Apache Software Foundation (ASF) under one or more | ||
~ contributor license agreements. See the NOTICE file distributed with | ||
~ this work for additional information regarding copyright ownership. | ||
~ The ASF licenses this file to You under the Apache License, Version 2.0 | ||
~ (the "License"); you may not use this file except in compliance with | ||
~ the License. You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, | ||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
~ See the License for the specific language governing permissions and | ||
~ limitations under the License. | ||
~ | ||
--> | ||
<div *ngIf="assetsData?.length"> | ||
<mat-tree | ||
[dataSource]="dataSource" | ||
[treeControl]="treeControl" | ||
class="asset-tree" | ||
> | ||
<!-- Parent Node Definition --> | ||
<mat-nested-tree-node *matTreeNodeDef="let node; when: hasChild"> | ||
<div | ||
class="mat-tree-node" | ||
(click)="onAssetSelect(node)" | ||
[class.selected-node]="isSelected(node)" | ||
> | ||
<button | ||
mat-icon-button | ||
matTreeNodeToggle | ||
[attr.aria-label]="'Toggle ' + node.assetName" | ||
> | ||
<mat-icon>{{ | ||
treeControl.isExpanded(node) | ||
? 'expand_more' | ||
: 'chevron_right' | ||
}}</mat-icon> | ||
</button> | ||
<span>{{ node.assetName }}</span> | ||
</div> | ||
<div *ngIf="treeControl.isExpanded(node)" role="group"> | ||
<ng-container matTreeNodeOutlet></ng-container> | ||
</div> | ||
</mat-nested-tree-node> | ||
|
||
<!-- Leaf Node Definition (no children) --> | ||
<mat-tree-node *matTreeNodeDef="let node" matTreeNodeToggle> | ||
<div | ||
class="mat-tree-node" | ||
(click)="onAssetSelect(node)" | ||
[class.selected-node]="isSelected(node)" | ||
> | ||
<button | ||
mat-icon-button | ||
matTreeNodeToggle | ||
[attr.aria-label]="'Toggle ' + node.assetName" | ||
> | ||
<mat-icon></mat-icon> | ||
</button> | ||
<span>{{ node.assetName }}</span> | ||
</div> | ||
</mat-tree-node> | ||
</mat-tree> | ||
</div> | ||
|
||
<!-- If no assets available --> | ||
<div *ngIf="!assetsData?.length"> | ||
<p>No assets available</p> | ||
</div> |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.