1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-02 22:57:36 +01:00

35 lines
865 B
HTML
Raw Normal View History

2018-02-03 10:57:45 -08:00
<Nav :page />
2018-01-06 15:51:25 -08:00
<div class="container" tabindex="0" ref:container>
<main>
<slot></slot>
</main>
2018-03-07 09:25:07 -08:00
{{#if !$isUserLoggedIn && page === 'home'}}
<InformationalFooter />
2018-03-07 09:25:07 -08:00
{{/if}}
</div>
2018-01-06 15:51:25 -08:00
<script>
2018-04-19 21:38:01 -07:00
import Nav from './Nav.html'
2018-01-28 13:09:39 -08:00
import { store } from '../_store/store'
import InformationalFooter from './InformationalFooter.html'
2018-01-06 15:51:25 -08:00
2018-04-19 21:38:01 -07:00
// Only focus the `.container` div on first load so it does not intefere
// with other desired behaviours (e.g. you click a toot, you navigate from
// a timeline view to a thread view, you press the back button, and now
// you're still focused on the toot).
let firstTime = true
2018-04-19 21:38:01 -07:00
export default {
components: {
Nav,
InformationalFooter
},
oncreate () {
if (firstTime) {
firstTime = false
this.refs.container.focus()
}
},
store: () => store
2018-04-19 21:38:01 -07:00
}
2018-01-06 15:51:25 -08:00
</script>