Skip to content

Commit

Permalink
Merge pull request #3159 from CVEProject/tat-3158-banner
Browse files Browse the repository at this point in the history
p#3158 add production data banner
  • Loading branch information
athu-tran authored Oct 14, 2024
2 parents bea5a65 + d003ac2 commit a96cbec
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 10 deletions.
18 changes: 9 additions & 9 deletions src/views/CVERecord/CVERecord.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@
<div v-else>
<div v-if="usecveRecordStore.isIdOrRecordFound">
<div class="notification is-warning is-light" role="alert">
<div v-if="websiteEnv !== 'prd'" class="is-flex" style="justify-content: center;">
<p id="alertIconCveRecordsRequestErrored" class="is-hidden">alert</p>
<font-awesome-icon style="flex: 0 0 40px;" size="1x" icon="triangle-exclamation" role="img"
aria-labelledby="alertIconCveRecordsRequestErrored" aria-hidden="false" />
<p>You are viewing <strong>{{ usingProd }}</strong> data from&nbsp;</p>
<a :href="resultUrl" target="_blank"> {{ resultUrl }}
<div v-if="websiteEnv !== 'prd'" class="is-flex" style="justify-content: center;">
<p id="alertIconCveRecordsRequestErrored" class="is-hidden">alert</p>
<font-awesome-icon style="flex: 0 0 40px;" size="1x" icon="triangle-exclamation" role="img"
aria-labelledby="alertIconCveRecordsRequestErrored" aria-hidden="false" />
<p>You are viewing <span class="has-text-weight-bold">{{ usingProd }}</span> data from&nbsp;</p>
<a :href="resultUrl" target="_blank"> {{ resultUrl }}
<span class="icon cve-icon-xxs">
<p id="externalLinkIcon" class="is-hidden">external website</p>
<font-awesome-icon icon="up-right-from-square"
aria-labelledby="externalLinkIcon" aria-hidden="false"/>
aria-labelledby="externalLinkIcon" aria-hidden="false"/>
</span>
</a>
</a>
</div>
</div>
</div>
<PublishedRecord v-if="usecveRecordStore.isPublished"/>
<RejectedRecordOrId v-if="usecveRecordStore.isRejected"/>
<ReservedId v-if="usecveRecordStore.isReserved"/>
Expand Down
18 changes: 17 additions & 1 deletion src/views/CVERecord/SearchResults.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,21 @@
</div>
</div>
<div id="cve-search-results-container" v-if="cveListSearchStore.totalSearchResultCount > 0">
<div class="notification is-warning is-light" role="alert">
<div v-if="websiteEnv !== 'prd'" class="is-flex" style="justify-content: center;">
<p id="alertIconCveRecordsRequestErrored" class="is-hidden">alert</p>
<font-awesome-icon style="flex: 0 0 40px;" size="1x" icon="triangle-exclamation" role="img"
aria-labelledby="alertIconCveRecordsRequestErrored" aria-hidden="false" />
<p>You are viewing <span class="has-text-weight-bold">Production</span> data from&nbsp;</p>
<a :href="resultUrl" target="_blank"> {{ resultUrl }}
<span class="icon cve-icon-xxs">
<p id="externalLinkIcon" class="is-hidden">external website</p>
<font-awesome-icon icon="up-right-from-square"
aria-labelledby="externalLinkIcon" aria-hidden="false"/>
</span>
</a>
</div>
</div>
<h2 class="title">Search Results</h2>
<div class="mt-2 mb-2">
<p>
Expand Down Expand Up @@ -226,13 +241,14 @@
<script setup>
import { useCveListSearchStore } from '@/stores/cveListSearch';
import { usePartnerStore } from '@/stores/partners';
import { createApp, watch } from 'vue';
import { createApp, ref, watch } from 'vue';
import { useRouter } from 'vue-router';
import ServiceUnavailable from '@/components/ServiceUnavailable.vue'
const cveListSearchStore = useCveListSearchStore();
const router = useRouter();
const app = createApp({});
const resultUrl = ref(`https://${import.meta.env.VITE_CVE_SERVICES_BASE_URL}`);
app.component('ServiceUnavailable', ServiceUnavailable);
Expand Down

0 comments on commit a96cbec

Please sign in to comment.