-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented: UI for brokering rules page, updated router by adding br…
…okering page and removed home page entry, updated tabs component and removed the home page from app(#4)
- Loading branch information
1 parent
7838792
commit 85aa026
Showing
5 changed files
with
138 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
<template> | ||
<ion-page> | ||
<ion-header :translucent="true"> | ||
<ion-toolbar> | ||
<ion-title>{{ "Brokering Runs" }}</ion-title> | ||
|
||
<ion-buttons slot="end"> | ||
<ion-button color="primary"> | ||
{{ "New Run" }} | ||
<ion-icon :icon="addOutline" /> | ||
</ion-button> | ||
</ion-buttons> | ||
</ion-toolbar> | ||
</ion-header> | ||
|
||
<ion-content> | ||
<main> | ||
<section> | ||
<ion-card> | ||
<ion-card-header> | ||
<ion-card-title> | ||
{{ "Brokering run name" }} | ||
</ion-card-title> | ||
</ion-card-header> | ||
<ion-item> | ||
{{ "Description" }} | ||
</ion-item> | ||
<ion-item> | ||
{{ "<Frequency>" }} | ||
{{ "<Runtime>" }} | ||
</ion-item> | ||
<ion-item> | ||
{{ "Created at <time>" }} | ||
</ion-item> | ||
<ion-item> | ||
{{ "Updated at <time>" }} | ||
</ion-item> | ||
</ion-card> | ||
<ion-card> | ||
<ion-card-header> | ||
<ion-card-title> | ||
{{ "Brokering run name" }} | ||
</ion-card-title> | ||
</ion-card-header> | ||
<ion-item> | ||
{{ "Description" }} | ||
</ion-item> | ||
<ion-item> | ||
{{ "<Frequency>" }} | ||
{{ "<Runtime>" }} | ||
</ion-item> | ||
<ion-item> | ||
{{ "Created at <time>" }} | ||
</ion-item> | ||
<ion-item> | ||
{{ "Updated at <time>" }} | ||
</ion-item> | ||
</ion-card> | ||
<ion-card> | ||
<ion-card-header> | ||
<ion-card-title> | ||
{{ "Brokering run name" }} | ||
</ion-card-title> | ||
</ion-card-header> | ||
<ion-item> | ||
{{ "Description" }} | ||
</ion-item> | ||
<ion-item> | ||
{{ "<Frequency>" }} | ||
{{ "<Runtime>" }} | ||
</ion-item> | ||
<ion-item> | ||
{{ "Created at <time>" }} | ||
</ion-item> | ||
<ion-item> | ||
{{ "Updated at <time>" }} | ||
</ion-item> | ||
</ion-card> | ||
<ion-card> | ||
<ion-card-header> | ||
<ion-card-title> | ||
{{ "Brokering run name" }} | ||
</ion-card-title> | ||
</ion-card-header> | ||
<ion-item> | ||
{{ "Description" }} | ||
</ion-item> | ||
<ion-item> | ||
{{ "<Frequency>" }} | ||
{{ "<Runtime>" }} | ||
</ion-item> | ||
<ion-item> | ||
{{ "Created at <time>" }} | ||
</ion-item> | ||
<ion-item> | ||
{{ "Updated at <time>" }} | ||
</ion-item> | ||
</ion-card> | ||
</section> | ||
</main> | ||
</ion-content> | ||
</ion-page> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { IonButton, IonButtons, IonCard, IonCardHeader, IonCardTitle, IonContent, IonHeader, IonIcon, IonItem, IonPage, IonTitle, IonToolbar } from "@ionic/vue"; | ||
import { addOutline } from "ionicons/icons" | ||
</script> | ||
|
||
<style scoped> | ||
@media (min-width: 991px) { | ||
main { | ||
display: flex; | ||
justify-content: center; | ||
align-items: start; | ||
gap: var(--spacer-2xl); | ||
max-width: 990px; | ||
margin: var(--spacer-base) auto 0; | ||
} | ||
main > section { | ||
min-width: 50ch; | ||
} | ||
} | ||
</style> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.