Skip to content

Commit 596a7dc

Browse files
committed
fix: remove unused task details image and update related documentation
1 parent 2423964 commit 596a7dc

File tree

3 files changed

+35
-44
lines changed

3 files changed

+35
-44
lines changed
Binary file not shown.

src/get-started/tooling-and-explorers/iexec-explorer.md

Lines changed: 32 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,6 @@ Browse and analyze all tasks across the iExec network:
114114

115115
### Task Execution Monitoring
116116

117-
<ImageViewer
118-
:image-url-dark="taskDetailsStartedImage"
119-
image-alt="Result Decryption"
120-
:link-url="`${explorerUrl}/tasks`"
121-
caption="Explore Tasks"
122-
/>
123-
124117
<ImageViewer
125118
:image-url-dark="taskDetailsCompletedImage"
126119
image-alt="Task Completed"
@@ -174,11 +167,37 @@ Explore the iExec application marketplace:
174167

175168
Navigate the protected data landscape:
176169

177-
- **Data Catalog**: Discover available datasets along with their metadata and
178-
asset types.
179-
- **Usage Patterns**: Analyze dataset popularity and usage trends.
180-
- **Schema Validation**: Filter by schema to find protected data that matches
181-
your use case and ensure data structure compatibility with your applications.
170+
- **Data Catalog**: Discover available protected data with their metadata and asset
171+
types
172+
- **Usage Analytics**: Analyze protected data popularity and adoption trends across the
173+
network
174+
- **Schema Discovery**: Find protected data that matches your requirements using
175+
advanced filtering
176+
177+
The explorer provides a powerful filtering system that lets you search for
178+
protected data based on their schema structure, making it easy to find datasets
179+
compatible with your iApp.
180+
181+
<ImageViewer
182+
:image-url-dark="assetTypesAdvanceFilterViewImage"
183+
image-alt="asset Types Advance Filter View"
184+
:link-url="`${explorerUrl}/datasets`"
185+
caption="Explore Asset Types Filter"
186+
/>
187+
188+
**How to use the asset type filter:**
189+
190+
1. **Select asset type criteria** - Choose from predefined types and enter the
191+
field names
192+
2. **Apply multiple filters** - Combine asset type filters with other criteria
193+
like date range, owner, or tags
194+
3. **Browse matching datasets** - View only the protected data that matches your
195+
schema requirements
196+
197+
This filtering capability is essential when building iApps that need specific
198+
data structures. For example, if your iApp processes user profiles, you can
199+
filter for datasets containing `email: string` and `age: f64` fields to ensure
200+
compatibility.
182201

183202
## Workerpools
184203

@@ -216,9 +235,9 @@ const explorerUrl = computed(() => chainData.value.iexecExplorerUrl);
216235
import explorerGlobalImage from '@/assets/tooling-&-explorers/iexec-explorer/explorer-global.png';
217236
import dealViewImage from '@/assets/tooling-&-explorers/iexec-explorer/deal-view.png';
218237
import taskViewImage from '@/assets/tooling-&-explorers/iexec-explorer/task-view.png';
219-
import taskDetailsStartedImage from '@/assets/tooling-&-explorers/iexec-explorer/task-details-started.png';
220238
import taskDetailsCompletedImage from '@/assets/tooling-&-explorers/iexec-explorer/task-details-completed.png';
221239
import appViewImage from '@/assets/tooling-&-explorers/iexec-explorer/app-view.png';
222240
import datasetViewImage from '@/assets/tooling-&-explorers/iexec-explorer/dataset-view.png';
223241
import workerpoolViewImage from '@/assets/tooling-&-explorers/iexec-explorer/workerpool-view.png';
242+
import assetTypesAdvanceFilterViewImage from '@/assets/tooling-&-explorers/iexec-explorer/asset-types-advance-filter.png';
224243
</script>

src/guides/manage-data/handle-schemas-dataset-types.md

Lines changed: 3 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -89,33 +89,6 @@ MIME types manually.
8989

9090
:::
9191

92-
Use the
93-
<a :href="`${explorerUrl}/datasets`" target="_blank" rel="noopener">iExec
94-
explorer</a> and its advanced filter to find datasets matching your required
95-
asset type. The explorer provides a powerful filtering system that lets you
96-
search for protected data based on their schema structure.
97-
98-
<ImageViewer
99-
:image-url-dark="assetTypesAdvanceFilterViewImage"
100-
image-alt="asset Types Advance Filter View"
101-
:link-url="`${explorerUrl}/datasets`"
102-
caption="Explore Asset Types Filter"
103-
/>
104-
105-
**How to use the asset type filter:**
106-
107-
1. **Select asset type criteria** - Choose from predefined types and enter the
108-
field names
109-
2. **Apply multiple filters** - Combine asset type filters with other criteria
110-
like date range, owner, or tags
111-
3. **Browse matching datasets** - View only the protected data that matches your
112-
schema requirements
113-
114-
This filtering capability is essential when building iApps that need specific
115-
data structures. For example, if your iApp processes user profiles, you can
116-
filter for datasets containing `email: string` and `age: f64` fields to ensure
117-
compatibility.
118-
11992
## Why schemas matter
12093

12194
- **Clarity**: Makes your data easier to understand and reuse
@@ -163,7 +136,9 @@ const listProtectedData = await dataProtectorCore.getProtectedData({
163136

164137
## Real examples
165138

166-
For real-world applications built by developers using various asset types, check out the [iExec case studies](https://www.iex.ec/case-studies) to see how schemas are used in production environments.
139+
For real-world applications built by developers using various asset types, check
140+
out the [iExec case studies](https://www.iex.ec/case-studies) to see how schemas
141+
are used in production environments.
167142

168143
### Simple User Profile
169144

@@ -316,7 +291,4 @@ const selectedChain = computed(() => userStore.getCurrentChainId());
316291

317292
const chainData = computed(() => getChainById(selectedChain.value));
318293
const explorerUrl = computed(() => chainData.value.iexecExplorerUrl);
319-
320-
// Assets
321-
import assetTypesAdvanceFilterViewImage from '@/assets/tooling-&-explorers/iexec-explorer/asset-types-advance-filter.png';
322294
</script>

0 commit comments

Comments
 (0)