forked from cybrespace/pinafore
		
	refactor
This commit is contained in:
		
							parent
							
								
									73b53c2afd
								
							
						
					
					
						commit
						bd0a0bf0be
					
				
					 3 changed files with 14 additions and 16 deletions
				
			
		| 
						 | 
				
			
			@ -1,4 +1,4 @@
 | 
			
		|||
<article class="status-article {{getClasses(originalStatus, timelineType, isStatusInOwnThread)}}"
 | 
			
		||||
<article class="{{className}}"
 | 
			
		||||
         tabindex="0"
 | 
			
		||||
         delegate-key="{{delegateKey}}"
 | 
			
		||||
         focus-key="{{delegateKey}}"
 | 
			
		||||
| 
						 | 
				
			
			@ -19,7 +19,7 @@
 | 
			
		|||
  <StatusSidebar :isStatusInOwnThread :originalAccount />
 | 
			
		||||
  {{#if originalStatus.spoiler_text}}
 | 
			
		||||
    <StatusSpoiler :isStatusInOwnThread :isStatusInNotification
 | 
			
		||||
                   :originalStatus :uuid
 | 
			
		||||
                   :originalStatus :uuid :spoilerShown
 | 
			
		||||
                   on:recalculateHeight />
 | 
			
		||||
  {{/if}}
 | 
			
		||||
  {{#if !originalStatus.spoiler_text || spoilerShown}}
 | 
			
		||||
| 
						 | 
				
			
			@ -34,7 +34,7 @@
 | 
			
		|||
  <StatusDetails :originalStatus :originalStatusId />
 | 
			
		||||
  {{/if}}
 | 
			
		||||
  <StatusToolbar :originalStatus :originalStatusId :originalAccountId
 | 
			
		||||
                 :isStatusInOwnThread :uuid />
 | 
			
		||||
                 :isStatusInOwnThread :uuid :visibility />
 | 
			
		||||
</article>
 | 
			
		||||
 | 
			
		||||
<style>
 | 
			
		||||
| 
						 | 
				
			
			@ -129,15 +129,6 @@
 | 
			
		|||
      StatusSpoiler
 | 
			
		||||
    },
 | 
			
		||||
    store: () => store,
 | 
			
		||||
    helpers: {
 | 
			
		||||
      getClasses(originalStatus, timelineType, isStatusInOwnThread) {
 | 
			
		||||
        return classname(
 | 
			
		||||
          originalStatus.visibility === 'direct' && 'status-direct',
 | 
			
		||||
          timelineType !== 'search' && 'status-in-timeline',
 | 
			
		||||
          isStatusInOwnThread && 'status-in-own-thread'
 | 
			
		||||
        )
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    methods: {
 | 
			
		||||
      onClickOrKeydown(e) {
 | 
			
		||||
        let { type, keyCode } = e
 | 
			
		||||
| 
						 | 
				
			
			@ -167,6 +158,7 @@
 | 
			
		|||
      accountId: (account) => account.id,
 | 
			
		||||
      originalAccount: (originalStatus) => originalStatus.account,
 | 
			
		||||
      originalAccountId: (originalAccount) => originalAccount.id,
 | 
			
		||||
      visibility: (originalStatus) => originalStatus.visibility,
 | 
			
		||||
      uuid: ($currentInstance, timelineType, timelineValue, notificationId, statusId) => {
 | 
			
		||||
        return `${$currentInstance}/${timelineType}/${timelineValue}/${notificationId || ''}/${statusId}`
 | 
			
		||||
      },
 | 
			
		||||
| 
						 | 
				
			
			@ -179,14 +171,22 @@
 | 
			
		|||
          notification.type !== 'mention' && notification.status.id === originalStatusId
 | 
			
		||||
      },
 | 
			
		||||
      spoilerShown: ($spoilersShown, uuid) => !!$spoilersShown[uuid],
 | 
			
		||||
      ariaLabel: (originalAccount, originalStatus) => {
 | 
			
		||||
        return (originalStatus.visibility === 'direct' ? 'Direct message' : 'Status') +
 | 
			
		||||
      ariaLabel: (originalAccount, originalStatus, visibility) => {
 | 
			
		||||
        return (visibility === 'direct' ? 'Direct message' : 'Status') +
 | 
			
		||||
          ` by ${originalAccount.display_name || originalAccount.username}`
 | 
			
		||||
      },
 | 
			
		||||
      showHeader: (notification, status, timelineType) => {
 | 
			
		||||
        return (notification && (notification.type === 'reblog' || notification.type === 'favourite'))
 | 
			
		||||
          || status.reblog
 | 
			
		||||
          || timelineType === 'pinned'
 | 
			
		||||
      },
 | 
			
		||||
      className: (visibility, timelineType, isStatusInOwnThread) => {
 | 
			
		||||
        return classname(
 | 
			
		||||
          'status-article',
 | 
			
		||||
          visibility === 'direct' && 'status-direct',
 | 
			
		||||
          timelineType !== 'search' && 'status-in-timeline',
 | 
			
		||||
          isStatusInOwnThread && 'status-in-own-thread'
 | 
			
		||||
        )
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -51,7 +51,6 @@
 | 
			
		|||
    },
 | 
			
		||||
    store: () => store,
 | 
			
		||||
    computed: {
 | 
			
		||||
      spoilerShown: ($spoilersShown, uuid) => !!$spoilersShown[uuid],
 | 
			
		||||
      delegateKey: (uuid) => `spoiler-${uuid}`
 | 
			
		||||
    },
 | 
			
		||||
    methods: {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -88,7 +88,6 @@
 | 
			
		|||
      }
 | 
			
		||||
    },
 | 
			
		||||
    computed: {
 | 
			
		||||
      visibility: (originalStatus) => originalStatus.visibility,
 | 
			
		||||
      reblogLabel: (visibility) => {
 | 
			
		||||
        switch (visibility) {
 | 
			
		||||
          case 'private':
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue