Skip to content

Commit

Permalink
Temporarily remove the IaC tool selection in the Web UI
Browse files Browse the repository at this point in the history
This is to hide it for the next prod release
  • Loading branch information
jdubois committed Sep 24, 2021
1 parent f5246ad commit 0c08cd7
Showing 1 changed file with 0 additions and 83 deletions.
83 changes: 0 additions & 83 deletions src/main/resources/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -331,90 +331,7 @@ <h3 class="text-lg leading-6 font-medium text-gray-900">
</div>
<div class="border-t border-b border-gray-200">
<dl>
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
<dt class="text-sm font-medium text-gray-500">
Infrastructure as Code tool
</dt>
<dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:col-span-2">
<div>
<div class="mt-1 relative">
<button type="button" aria-haspopup="listbox" aria-expanded="true" aria-labelledby="listbox-label"
class="relative w-full bg-white border border-gray-300 rounded-md shadow-sm pl-3 pr-10 py-2 text-left cursor-default focus:outline-none focus:ring-1 focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm"
x-on:click="iaCToolSelectorOpened = true">
<span class="flex items-center">
<img :src="iaCTool.flag" alt="" class="flex-shrink-0 h-12 w-12 rounded">
<span x-text="iaCTool.name" class="ml-3 block text-xl truncate">
</span>
</span>
<span class="ml-3 absolute inset-y-0 right-0 flex items-center pr-2 pointer-events-none">
<!-- Heroicon name: selector -->
<svg class="h-5 w-5 text-gray-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"
fill="currentColor" aria-hidden="true">
<path fill-rule="evenodd"
d="M10 3a1 1 0 01.707.293l3 3a1 1 0 01-1.414 1.414L10 5.414 7.707 7.707a1 1 0 01-1.414-1.414l3-3A1 1 0 0110 3zm-3.707 9.293a1 1 0 011.414 0L10 14.586l2.293-2.293a1 1 0 011.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z"
clip-rule="evenodd" />
</svg>
</span>
</button>

<!--
Select popover, show/hide based on select state.
Entering: ""
From: ""
To: ""
Leaving: "transition ease-in duration-100"
From: "opacity-100"
To: "opacity-0"
-->
<div x-show="iaCToolSelectorOpened" x-on:click.away="iaCToolSelectorOpened = false"
class="absolute mt-1 w-full rounded-md bg-white shadow-lg">
<ul tabindex="-1" role="listbox" aria-labelledby="listbox-label"
aria-activedescendant="listbox-item-3"
class="max-h-56 rounded-md py-1 text-base ring-1 ring-black ring-opacity-5 overflow-auto focus:outline-none sm:text-sm">
<!--
Select option, manage highlight styles based on mouseenter/mouseleave and keyboard navigation.
Highlighted: "text-white bg-indigo-600", Not Highlighted: "text-gray-900"
-->

<template x-for="iac in allIaCTools" :key="iac.id">
<li id="listbox-item-0" role="option"
class="text-gray-900 hover:bg-blue-100 cursor-default select-none relative py-2 pl-3 pr-9"
@click="selectIaCTool(iac)">
<div class="flex items-center">
<img :src="iac.flag" alt="" class="flex-shrink-0 h-6 w-6 rounded">
<!-- Selected: "font-semibold", Not Selected: "font-normal" -->
<span x-text="iac.name" class="ml-3 block font-normal truncate">
</span>
</div>

<!--
Checkmark, only display for selected option.

Highlighted: "text-white", Not Highlighted: "text-indigo-600"
-->
<span x-bind:class="{'inline-block': iaCTool.id == iac.id}"
class="hidden absolute inset-y-0 right-0 flex items-center pr-4">
<!-- Heroicon name: check -->
<svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"
fill="currentColor" aria-hidden="true">
<path fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd" />
</svg>
</span>
</li>
</template>


<!-- More items... -->
</ul>
</div>
</div>
</div>
</dd>
</div>
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
<dt class="text-sm font-medium text-gray-500">
Project name <span class="text-red-600">*</span>
Expand Down

0 comments on commit 0c08cd7

Please sign in to comment.