98 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<li class="page-list-item">
 | 
						|
  <a {href}>
 | 
						|
    <svg class="page-list-item-svg">
 | 
						|
      <use xlink:href="/icons.svg{icon}" />
 | 
						|
    </svg>
 | 
						|
    <span aria-label={ariaLabel}>
 | 
						|
      {label}
 | 
						|
    </span>
 | 
						|
    {#if pinnable}
 | 
						|
      <IconButton pressable="true"
 | 
						|
                  pressed={$pinnedPage === href}
 | 
						|
                  label={$pinnedPage === href ? 'Unpin timeline' : 'Pin timeline'}
 | 
						|
                  href="#fa-thumb-tack"
 | 
						|
                  on:click="onPinClick(event)" />
 | 
						|
    {/if}
 | 
						|
  </a>
 | 
						|
</li>
 | 
						|
<style>
 | 
						|
  .page-list-item {
 | 
						|
    border: 1px solid var(--settings-list-item-border);
 | 
						|
    font-size: 1.3em;
 | 
						|
    display: flex;
 | 
						|
    flex-direction: column;
 | 
						|
  }
 | 
						|
  .page-list-item a {
 | 
						|
    padding: 20px 40px;
 | 
						|
    background: var(--settings-list-item-bg);
 | 
						|
    display: grid;
 | 
						|
    grid-template-columns: min-content 1fr min-content;
 | 
						|
    align-items: center;
 | 
						|
  }
 | 
						|
  .page-list-item a, .page-list-item a:visited {
 | 
						|
    color: var(--body-text-color);
 | 
						|
  }
 | 
						|
  .page-list-item a:hover {
 | 
						|
    text-decoration: none;
 | 
						|
    background: var(--settings-list-item-bg-hover);
 | 
						|
    color: var(--body-text-color);
 | 
						|
  }
 | 
						|
  .page-list-item a:active {
 | 
						|
    background: var(--settings-list-item-bg-active);
 | 
						|
  }
 | 
						|
  .page-list-item-svg {
 | 
						|
    width: 24px;
 | 
						|
    height: 24px;
 | 
						|
    display: inline-block;
 | 
						|
    margin-right: 20px;
 | 
						|
    fill: var(--body-text-color);
 | 
						|
  }
 | 
						|
  .page-list-item span {
 | 
						|
    white-space: nowrap;
 | 
						|
    overflow: hidden;
 | 
						|
    text-overflow: ellipsis;
 | 
						|
  }
 | 
						|
 | 
						|
  @media (max-width: 767px) {
 | 
						|
    .page-list-item a {
 | 
						|
      padding: 20px 10px;
 | 
						|
    }
 | 
						|
    .page-list-item-svg {
 | 
						|
      margin-right: 10px;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
</style>
 | 
						|
<script>
 | 
						|
  import { store } from '../../_store/store'
 | 
						|
  import IconButton from '../../_components/IconButton'
 | 
						|
 | 
						|
  export default {
 | 
						|
    store: () => store,
 | 
						|
    data: () => ({
 | 
						|
      pinnable: false
 | 
						|
    }),
 | 
						|
    computed: {
 | 
						|
      ariaLabel: ({ label, pinnable, $pinnedPage, href }) => {
 | 
						|
        let res = label
 | 
						|
        if (pinnable) {
 | 
						|
          res += ' (' + ($pinnedPage === href ? 'Pinned page' : 'Unpinned page') + ')'
 | 
						|
        }
 | 
						|
        return res
 | 
						|
      }
 | 
						|
    },
 | 
						|
    components: {
 | 
						|
      IconButton
 | 
						|
    },
 | 
						|
    methods: {
 | 
						|
      onPinClick (e) {
 | 
						|
        e.preventDefault()
 | 
						|
        let { currentInstance, pinnedPages } = this.store.get()
 | 
						|
        let { href } = this.get()
 | 
						|
        pinnedPages[currentInstance] = href
 | 
						|
        this.store.set({ pinnedPages: pinnedPages })
 | 
						|
        this.store.save()
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
</script>
 |