aboutsummaryrefslogtreecommitdiff
path: root/src/components/search_bar/search_bar.vue
blob: 4d5a1aec0df7d771edcc41c111e5a39694bfa4e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<template>
  <div>
    <div class="search-bar-container">
      <i
        v-if="loading"
        class="icon-spin4 finder-icon animate-spin-slow"
      />
      <a
        v-if="hidden"
        href="#"
        :title="$t('nav.search')"
      ><i
        class="button-icon icon-search"
        @click.prevent.stop="toggleHidden"
      /></a>
      <template v-else>
        <input
          id="search-bar-input"
          ref="searchInput"
          v-model="searchTerm"
          class="search-bar-input"
          :placeholder="$t('nav.search')"
          type="text"
          @keyup.enter="find(searchTerm)"
        >
        <button
          class="btn search-button"
          @click="find(searchTerm)"
        >
          <i class="icon-search" />
        </button>
        <i
          class="button-icon icon-cancel"
          @click.prevent.stop="toggleHidden"
        />
      </template>
    </div>
  </div>
</template>

<script src="./search_bar.js"></script>

<style lang="scss">
@import '../../_variables.scss';

.search-bar-container {
  max-width: 100%;
  display: inline-flex;
  align-items: baseline;
  vertical-align: baseline;
  justify-content: flex-end;

  .search-bar-input,
  .search-button {
    height: 29px;
  }

  .search-bar-input {
    // TODO: do this properly without a rough guesstimate of 2 icons + paddings
    max-width: calc(100% - 30px - 30px - 20px);
  }

  .search-button {
    margin-left: .5em;
    margin-right: .5em;
  }

  .icon-cancel {
    cursor: pointer;
  }
}

</style>