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

Synchronizes Icons and update Language from Downloading to Fetching #545

Merged
merged 1 commit into from
Nov 19, 2024
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions vue/src/components/ImagesDownloadDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const display = ref(true);
width="400"
>
<v-card>
<v-card-title>Download Model-Run Images</v-card-title>
<v-card-title>Fetch Satellite Image Chips</v-card-title>
<v-form v-model="validForm">
<v-card-text>
<v-row
Expand Down Expand Up @@ -118,7 +118,7 @@ const display = ref(true);
v-model="force"
density="compact"
label="Force"
hint="Force redownloading all images"
hint="Force refetcing all images"
persistent-hint
/>
</v-row>
Expand Down Expand Up @@ -333,7 +333,7 @@ const display = ref(true);
:disabled="!validForm"
@click="download()"
>
Download
Fetch Chips
</v-btn>
</v-row>
</v-card-actions>
Expand Down
4 changes: 2 additions & 2 deletions vue/src/components/ModelRunCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -357,11 +357,11 @@ const animationDialog = ref(false);
<v-icon
v-if="!downloadingModelRun"
>
mdi-image
mdi-image-sync
</v-icon>
</v-btn>
</template>
<span> Download Satellite Images</span>
<span>Fetch Satellite Image Chips</span>
</v-tooltip>
<v-tooltip>
<template #activator="{ props }">
Expand Down
6 changes: 3 additions & 3 deletions vue/src/components/SideBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -254,14 +254,14 @@ const tab = ref();
<v-alert
v-if="!satelliteRegionTooLarge"
type="warning"
title="Download Region Satellite Timestamps"
title="Fetch Region Satellite Timestamps"
text="This is a long running process that could cause instability on the server. Please only run this if you are sure you need to use the region satellite feature."
/>
<v-alert
v-else
type="warning"
title="Region Too Large to Download Timestamps"
text="The Region is too large to download timestamps for."
title="Region Too Large to Fetch Timestamps"
text="The Region is too large to fetch timestamps for."
/>
</v-tooltip>
<v-btn
Expand Down
10 changes: 5 additions & 5 deletions vue/src/components/annotationViewer/SideBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -208,14 +208,14 @@ const satelliteLoadingColor = computed(() => {
<v-alert
v-if="!satelliteRegionTooLarge"
type="warning"
title="Download Region Satellite Timestamps"
title="Fetch Region Satellite Timestamps"
text="This is a long running process that could cause instability on the server. Please only run this if you are sure you need to use the region satellite feature."
/>
<v-alert
v-else
type="warning"
title="Region Too Large to Download Timestamps"
text="The Region is too large to download timestamps for."
title="Region Too Large to Fetch Timestamps"
text="The Region is too large to fetch timestamps for."
/>
</v-tooltip>
<v-btn
Expand Down Expand Up @@ -269,10 +269,10 @@ const satelliteLoadingColor = computed(() => {
width="600"
>
<v-card>
<v-card-title>Download Satellite Timestamps</v-card-title>
<v-card-title>Fetch Satellite Timestamps</v-card-title>
<v-card-text>
<v-alert type="warning">
Downloading satellite timestamps can cause the server to become unstable. Only use this feature if you need to view full region satellite images and realize that usage will impact other users on the server.
Fetchiin satellite timestamps from the STAC server can cause the server to become unstable. Only use this feature if you need to view full region satellite images and realize that usage will impact other users on the server.
</v-alert>
</v-card-text>
<v-card-actions>
Expand Down
16 changes: 8 additions & 8 deletions vue/src/components/siteList/SiteListCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ const animationDialog = ref(false);
</v-btn>
</template>
<span>
Download Image Animation
Generate Image Animation
</span>
</v-tooltip>
<v-spacer />
Expand All @@ -309,7 +309,7 @@ const animationDialog = ref(false);
@click.stop="download(localSite.id)"
>
<v-icon size="small">
mdi-export
mdi-download-box-outline
</v-icon>
</v-btn>
</template>
Expand Down Expand Up @@ -347,8 +347,8 @@ const animationDialog = ref(false);
</v-btn>
</template>
<span>
<div v-if="!localSite.images"> No Site Images Downloaded</div>
Click to Download Satellite Images</span>
<div v-if="!localSite.images"> No Site Image Chips Fetched</div>
Click to Fetch Satellite Image Chips</span>
</v-tooltip>
<div v-else-if="downloading">
<v-tooltip open-delay="300">
Expand Down Expand Up @@ -385,19 +385,19 @@ const animationDialog = ref(false);
</v-row>
<v-row dense>
<v-spacer>
<span>Downloading {{ downloadingData.current }} of {{ downloadingData.total }} in source: {{ downloadingData.source }}</span>
<span>Fetching {{ downloadingData.current }} of {{ downloadingData.total }} in source: {{ downloadingData.source }}</span>
</v-spacer>
</v-row>
<v-row dense>
<p>The total number is the found images, due to settings for timing and removing NoData/Cloud Cover all images may not be downloaded</p>
<p>The total number is the found images, due to settings for timing and removing NoData/Cloud Cover all images may not be fetched</p>
</v-row>
</v-card-text>
</v-card>
<v-card
v-else-if="downloadingError"
width="400"
>
<v-card-title>Downloading Error</v-card-title>
<v-card-title>Fetching Error</v-card-title>
<v-card-text>
<v-row dense>
<p>{{ downloadingError }}</p>
Expand All @@ -422,7 +422,7 @@ const animationDialog = ref(false);
<v-icon>mdi-image-remove</v-icon>
</v-btn>
</template>
<span>Cancel Image Downloading</span>
<span>Cancel Image Fetching</span>
</v-tooltip>
</div>
</v-row>
Expand Down
Loading