v-dialog(max-width='800', v-model='$store.state.search.info.show', lazy, absolute, @keydown.esc='close()')
v-card
v-card-title.headline Result for «{{ searchTerm }}»
v-divider
v-card-text
h4(v-if='error') {{ error }}
div(v-else-if='loading')
h5.loading-text Gathering data...
h5.loading-text Info should be displayed in a few seconds
v-card.secondary.pb-3(v-else)
v-layout(row, wrap)
v-flex.flex-v-centered.fab-container(xs2)
v-speed-dial(
v-model='fab',
top, left,
direction='bottom',
:hover='true',
transition='slide-y-transition'
)
v-btn(
slot='activator',
v-model='fab',
small,
fab, icon, outline
)
v-icon more
v-icon close
v-tooltip(right)
v-btn.green(fab, small, @click='showChoices', slot='activator')
v-icon add_box
span Add «{{ searchTerm }}» to local lists
v-tooltip(right)
v-btn.blue(fab, small, @click='showMal', slot='activator')
span.mal-icon
span Add «{{ searchTerm }}» to MyAnimeList
v-tooltip(right)
v-btn.indigo(fab, small, v-clipboard="url", @success='log', slot='activator')
v-icon content_copy
span Copy MyAnimeList link
v-tooltip(right)
v-btn.indigo(fab, small, @click='open', slot='activator')
v-icon open_in_new
span Open link in your browser
v-flex.flex-v-centered(xs7)
v-card-title.info-title
| 「{{ info.japaneseTitle }}」ー {{ info.type }}
v-flex(xs3)
v-card-title.score-container
p.info-score {{ info.score }}
p.info-score ({{ info.scoreStats.split(' ')[2] }} votes)
v-layout.mb-3(row, wrap)
v-flex.info-pic-container(xs3)
img.info-pic(:src='info.picture')
v-flex.info-synopsis-container(xs9)
p.info-synopsis {{ info.synopsis }}
v-layout.top-info
v-flex.info-text.pl-2(xs9)
span.genre-title Genres:
span.info-genres {{ info.genres.join(' / ') }}
v-flex.info-text.h-centered(xs3) {{ info.episodes }} {{ episodeLabel }}
v-layout.bottom-info
v-flex.info-text.pl-2(xs5)
span.genre-title Studios:
span.info-genres.pl-4 {{ info.studios.join(' / ') }}
v-flex.info-text(xs4) {{ info.rating }}
v-flex.info-text.h-centered(xs3) {{ info.status }} ({{ info.aired.split(' ')[2] }})
v-card-actions
v-spacer
v-btn.blue--text.darken-1.close-button(flat, @click="close()") Thanks!