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

Add link to electron app to landing page #593

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
5 changes: 5 additions & 0 deletions frontend/components/unified/AuctionTool.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<LinkButton v-if="profileUrl" type="secondary" :link="profileUrl">view profile</LinkButton>
<LinkButton v-if="analyticsUrl" type="secondary" :link="analyticsUrl">view analytics</LinkButton>
<LinkButton v-if="participateUrl" :link="participateUrl">participate</LinkButton>
<LinkButton v-if="viewUrl" type="secondary" :link="viewUrl">view</LinkButton>
</div>
</div>
<div v-if="isExplanationsShown" class="text-gray-700 dark:text-gray-200 mt-2">
Expand Down Expand Up @@ -50,6 +51,10 @@ export default Vue.extend({
type: String,
default: null,
},
viewUrl: {
type: String,
default: null,
},
},
});
</script>
9 changes: 9 additions & 0 deletions frontend/components/unified/UnifiedAuctionsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
:participate-url="tool.links.participate"
:analytics-url="tool.links.analytics"
:profile-url="tool.links.profile"
:view-url="tool.links.view"
>
{{ tool.description }}
</AuctionTool>
Expand Down Expand Up @@ -113,6 +114,14 @@ export default Vue.extend({
},
filters: ['collateral'],
},
{
title: 'Unified Auctions UI application',
description: 'Electron-packaged application to run the Unified Auctions UI locally',
links: {
view: ' https://github.com/sidestream-tech/unified-auctions-ui/releases/latest',
},
filters: ['collateral', 'surplus', 'debt'],
},
{
title: 'Liquidations platform',
description: 'Web tool that support participation in collateral auctions by bidding with own Dai',
Expand Down