This repository was archived by the owner on Jan 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
[WIP] Feature/vm wizard #7
Merged
Merged
Changes from all commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
19b7dda
Remove unused lodash partial dependencies. Use full lodash instead.
332d250
Remove requirement of os id for the os logo component.
2dcb8ea
Fix line endings.
322984d
Move style fix to main component.
978a953
Add custom disk offering selection component.
6b3ee74
Merge branch 'master' into feature/vm-wizard
8657d62
Extract disk size selection as component.
631d3f7
Hide the info card for mobile devices.
327f388
Simplify the disk size output in the info card.
da3b5b6
Add custom component for iso selection.
366fd32
Lazy load isos on oping the collapse item.
5081c63
Merge branch 'master' into feature/vm-wizard
dd1cfa9
Fetch more categories of isos.
f81b388
Distinguish between shared and self uploaded isos.
4f81c6d
Unify template and iso selection.
5d0c425
Apply iso selection to the instance config info card.
9d1147d
Merge branch 'master' into feature/vm-wizard
c09c6c8
Fix linting issues.
4483e8b
Pin featured isos/templates at the top at each list.
ec6e7aa
Make the info card sticky.
eb23f19
Add template/iso filter.
388a7b1
Introduce custom filter view for templates/iso selection.
064fbd7
Reset template/iso selection on switching iso/template.
10562a3
Merge branch 'master' into feature/vm-wizard
c5fe067
Reset also the rootdisksize on switching from template to iso.
99e1994
Refactor parameter handling to prepare the affinity group selection.
51cb575
Fix missing isos.
7831689
Refactor option/parameter handling, rename variables for a better rea…
e11dad5
Introduce affinity groups selection.
afc4f93
Add column headings for compute and disk offering selection.
4096d2f
Merge branch 'master' into feature/vm-wizard
88f33db
Add affinity groups to the info card.
e82d698
Merge branch 'master' into feature/vm-wizard
51fd668
Respect zone id on fetching templates.
4776309
Introduce network selection.
356ff67
Adjust naming.
15f12dd
Refactor zone select input.
69afd48
Fix network selection.
5f8c92f
Merge branch 'master' into feature/vm-wizard
06a51cb
Add vpc column to the network selection.
c405f5e
Add network offering description and move description to expandable r…
13d8b5d
Add VPC filter to the network selection table.
fae52ae
Merge branch 'master' into feature/vm-wizard
92738cd
Introduce network configuration component.
e6e2d12
Merge branch 'master' into feature/vm-wizard
a367750
Merge branch 'master' into feature/vm-wizard
3c6ef28
Wrap all selections/inputs with collapse components.
d986afd
Adjust the styling of main collapse.
df5444d
Introduce network creation component.
3dc2bf5
Merge branch 'master' into feature/vm-wizard
19b3cf4
Introduce ssh keypair selection.
23a2858
Replace scroll property with pagination in all tables.
12cc70d
Remove pagination for the network creation component table.
50b5e22
Update DiskSizeSelection.vue
yadvr 12ff555
Update NetworksCreation.vue
yadvr d5e2656
Update TemplateIsoRadioGroup.vue
yadvr 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -425,6 +425,16 @@ | |
| <a-icon type="calendar" />{{ resource.created }} | ||
| </div> | ||
| </div> | ||
| <div class="resource-detail-item" v-if="resource.affinitygroup && resource.affinitygroup.length > 0"> | ||
| <a-icon type="swap" /> | ||
| <span | ||
| v-for="(group, index) in resource.affinitygroup" | ||
| :key="group.id" | ||
| > | ||
| <router-link :to="{ path: '/affinitygroup/' + group.id }">{{ group.name }}</router-link> | ||
| <span v-if="index + 1 < resource.affinitygroup.length">, </span> | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| </span> | ||
| </div> | ||
| </div> | ||
|
|
||
| <div class="account-center-tags" v-if="$route.meta.related"> | ||
|
|
||
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
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.