LibraryOptions.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <template>
  2. <div v-if="show" class="library-options">
  3. <b-form-group
  4. class="mode-select-group"
  5. :label="$t('options.display.title')"
  6. v-slot="{ ariaDescribedby }"
  7. >
  8. <b-form-radio-group
  9. id="mode-select"
  10. v-model="activeMode" :options="modes"
  11. name="mode-select" :aria-describedby="ariaDescribedby"
  12. buttons button-variant="outline-dark"
  13. />
  14. </b-form-group>
  15. <!-- LIST + MAP ONLY -->
  16. <b-form-group
  17. class="filters-group"
  18. v-if="mode !== 'tree'"
  19. :label="$t('options.filters.title')"
  20. >
  21. <b-form-group
  22. :label="$t('options.filters.choices.tags')"
  23. label-for="tags-select"
  24. >
  25. <multiple-tags-select
  26. id="tags-select" :button-text="$t('options.filters.add')"
  27. v-model="activeTags" :options="tagsOptions"
  28. />
  29. </b-form-group>
  30. <b-form-group
  31. :label="$t('options.filters.choices.strangeness')"
  32. label-for="strangeness-input"
  33. >
  34. <div class="strangeness-input-wrapper">
  35. <b-form-input
  36. id="strangeness-input"
  37. type="range" min="0" max="5"
  38. v-model="strangeness"
  39. />
  40. </div>
  41. </b-form-group>
  42. </b-form-group>
  43. <!-- LIST + MAP ONLY -->
  44. <b-form-group
  45. v-if="mode !== 'tree'"
  46. :label="$t('options.search.title')"
  47. >
  48. <b-input-group append="search-icon">
  49. <b-form-input
  50. v-model="activeSearch" id="search-input" trim
  51. />
  52. </b-input-group>
  53. </b-form-group>
  54. <!-- TREE ONLY -->
  55. <b-form-group
  56. v-else
  57. label="Texte de départ :"
  58. label-for="text-depart-select"
  59. >
  60. <b-form-select
  61. id="text-depart-select"
  62. v-model="activeNodeId"
  63. :options="nodesDepartsOptions"
  64. class="border"
  65. />
  66. </b-form-group>
  67. </div>
  68. </template>
  69. <script>
  70. import { mapGetters } from 'vuex'
  71. import MultipleTagsSelect from '@/components/formItems/MultipleTagsSelect'
  72. export default {
  73. name: 'LibraryOptions',
  74. components: {
  75. MultipleTagsSelect
  76. },
  77. data () {
  78. return {
  79. modes: [
  80. { text: this.$t('options.display.choices.tree-map'), value: 'tree' },
  81. { text: this.$t('options.display.choices.card-map'), value: 'map' },
  82. { text: this.$t('options.display.choices.card-list'), value: 'list' }
  83. ],
  84. selectedTags: [],
  85. strangeness: 0
  86. }
  87. },
  88. computed: {
  89. ...mapGetters([
  90. 'nodesDepartsOptions',
  91. 'tagsOptions',
  92. 'nodebook',
  93. 'mode',
  94. 'nodeDepartId',
  95. 'search',
  96. 'tags'
  97. ]),
  98. show () {
  99. return this.nodebook.length === 0
  100. },
  101. activeNodeId: {
  102. get () { return this.nodeDepartId },
  103. set (value) {
  104. this.$store.dispatch('SET_NODE_DEPART_ID', value)
  105. }
  106. },
  107. activeMode: {
  108. get () { return this.mode },
  109. set (value) {
  110. this.$store.dispatch('UPDATE_QUERY_MODE', value)
  111. }
  112. },
  113. activeSearch: {
  114. get () { return this.search },
  115. set (value) {
  116. this.$store.commit('SET_SEARCH', value)
  117. }
  118. },
  119. activeTags: {
  120. get () { return this.tags },
  121. set (value) {
  122. this.$store.commit('UPDATE_TAGS', value)
  123. }
  124. }
  125. }
  126. }
  127. </script>
  128. <style lang="scss" scoped>
  129. .library-options {
  130. padding: 0 $header-spacer-sm $header-spacer-sm;
  131. background-color: $body-bg;
  132. width: 100%;
  133. @include media-breakpoint-down(tb) {
  134. font-size: 0.9rem;
  135. ::v-deep {
  136. .btn, .form-control, .input-group-text {
  137. font-size: inherit;
  138. }
  139. }
  140. }
  141. @include media-breakpoint-up(md) {
  142. padding: 0 $header-spacer $header-spacer;
  143. display: flex;
  144. justify-content: space-between;
  145. }
  146. ::v-deep {
  147. @include media-breakpoint-up(md) {
  148. flex-wrap: wrap;
  149. fieldset {
  150. margin-bottom: 0;*
  151. &:last-child {
  152. flex-shrink: 2;
  153. }
  154. }
  155. }
  156. > :last-child {
  157. margin-bottom: 0;
  158. }
  159. .mode-select-group {
  160. label {
  161. border-color: transparent;
  162. &:not(:disabled):not(.disabled):active,
  163. &:not(:disabled):not(.disabled).active {
  164. background-color: transparent;
  165. color: $black;
  166. }
  167. }
  168. }
  169. .filters-group {
  170. margin: 0;
  171. label {
  172. margin-right: .5rem;
  173. }
  174. .form-group {
  175. display: flex;
  176. }
  177. > div {
  178. :last-child {
  179. position: relative;
  180. label {
  181. white-space: nowrap;
  182. }
  183. .strangeness-input-wrapper {
  184. min-width: 150px;
  185. &::before,
  186. &::after {
  187. content: '';
  188. display: inline-block;
  189. width: 3px;
  190. height: 20px;
  191. background-color: $black;
  192. position: absolute;
  193. }
  194. &::after {
  195. margin-left: -2px;
  196. }
  197. }
  198. }
  199. }
  200. @include media-breakpoint-up(md) {
  201. min-width: 450px;
  202. .form-group {
  203. margin-bottom: 0;
  204. }
  205. > div {
  206. display: flex;
  207. justify-content: space-between;
  208. > :first-child {
  209. margin-right: 1rem;
  210. }
  211. }
  212. }
  213. }
  214. .form-control[type='text'] {
  215. border-color: $black;
  216. border-right: 0;
  217. height: calc(1.75em + #{2 * $border-width});
  218. }
  219. .input-group-text {
  220. border-color: $black;
  221. background-color: transparent;
  222. }
  223. }
  224. }
  225. </style>