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