2018-08-28 13:44:36 +00:00
|
|
|
<div class="dynamic-page-banner {icon ? 'dynamic-page-with-icon' : ''}"
|
|
|
|
role="navigation" aria-label="Page header"
|
|
|
|
>
|
2018-05-02 00:05:36 +00:00
|
|
|
{#if icon}
|
2018-03-16 15:42:10 +00:00
|
|
|
<svg class="dynamic-page-banner-svg">
|
2018-05-02 00:05:36 +00:00
|
|
|
<use xlink:href={icon} />
|
2018-02-08 06:49:50 +00:00
|
|
|
</svg>
|
2018-05-02 00:05:36 +00:00
|
|
|
{/if}
|
2018-08-28 13:44:36 +00:00
|
|
|
<h1 class="dynamic-page-title" aria-label={ariaTitle}>{title}</h1>
|
2018-01-23 05:16:27 +00:00
|
|
|
<button type="button"
|
|
|
|
class="dynamic-page-go-back"
|
2018-08-28 13:44:36 +00:00
|
|
|
aria-label="Go back"
|
2018-01-23 05:16:27 +00:00
|
|
|
on:click="onGoBack(event)">Back</button>
|
|
|
|
</div>
|
|
|
|
<style>
|
|
|
|
.dynamic-page-banner {
|
2018-02-08 06:49:50 +00:00
|
|
|
display: grid;
|
2018-01-23 05:16:27 +00:00
|
|
|
align-items: center;
|
2018-01-28 02:41:41 +00:00
|
|
|
margin: 20px 20px 20px;
|
2018-02-08 06:49:50 +00:00
|
|
|
grid-template-columns: 1fr min-content;
|
|
|
|
grid-column-gap: 10px;
|
|
|
|
}
|
|
|
|
.dynamic-page-banner.dynamic-page-with-icon {
|
|
|
|
grid-template-columns: min-content 1fr min-content;
|
|
|
|
}
|
2018-03-16 15:42:10 +00:00
|
|
|
.dynamic-page-banner-svg {
|
2018-02-08 06:49:50 +00:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
fill: var(--body-text-color);
|
2018-01-23 05:16:27 +00:00
|
|
|
}
|
2018-03-16 15:42:10 +00:00
|
|
|
.dynamic-page-title {
|
2018-01-23 05:16:27 +00:00
|
|
|
margin: 0;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2018-03-16 15:42:10 +00:00
|
|
|
.dynamic-page-go-back {
|
2018-01-23 05:16:27 +00:00
|
|
|
font-size: 1.3em;
|
|
|
|
color: var(--anchor-text);
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
background: none;
|
2018-02-08 06:49:50 +00:00
|
|
|
justify-self: flex-end;
|
2018-01-23 05:16:27 +00:00
|
|
|
}
|
2018-03-16 15:42:10 +00:00
|
|
|
.dynamic-page-go-back:hover {
|
2018-01-23 05:16:27 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2018-03-16 15:42:10 +00:00
|
|
|
.dynamic-page-go-back::before {
|
2018-08-16 14:29:12 +00:00
|
|
|
content: '←';
|
2018-01-23 05:16:27 +00:00
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2018-01-29 00:34:18 +00:00
|
|
|
@media (max-width: 767px) {
|
|
|
|
.dynamic-page-banner {
|
2018-01-31 06:40:40 +00:00
|
|
|
margin: 20px 10px 20px;
|
2018-01-29 00:34:18 +00:00
|
|
|
}
|
2018-03-16 15:42:10 +00:00
|
|
|
.dynamic-page-title {
|
2018-01-31 06:40:40 +00:00
|
|
|
font-size: 1.3em;
|
2018-01-29 00:34:18 +00:00
|
|
|
}
|
2018-03-16 15:42:10 +00:00
|
|
|
.dynamic-page-go-back {
|
2018-01-31 06:40:40 +00:00
|
|
|
font-size: 1.3em;
|
2018-01-29 00:34:18 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-23 05:16:27 +00:00
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
export default {
|
2018-04-30 05:13:41 +00:00
|
|
|
data: () => ({
|
2018-08-28 13:44:36 +00:00
|
|
|
icon: void 0,
|
|
|
|
ariaTitle: ''
|
2018-04-30 05:13:41 +00:00
|
|
|
}),
|
2018-01-23 05:16:27 +00:00
|
|
|
methods: {
|
2018-04-20 04:38:01 +00:00
|
|
|
onGoBack (e) {
|
2018-01-23 05:16:27 +00:00
|
|
|
e.preventDefault()
|
2018-02-09 06:44:05 +00:00
|
|
|
window.history.back()
|
2018-01-23 05:16:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-16 14:29:12 +00:00
|
|
|
</script>
|