From 94bae1da38fa2341ae0e91a35f70e46755dbf363 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrej=20Rama=C5=A1euski?= <andrej@x2.cz> Date: Thu, 8 Dec 2022 19:00:50 +0100 Subject: [PATCH] Pomale vyhledavani --- lib/SeMeet/I18N/cs.pm | 7 ++++--- templates/includes/meet_groups.html.ep | 8 +++++++- templates/includes/meet_moderators.html.ep | 14 ++++++++++---- templates/includes/meet_participants.html.ep | 8 +++++++- 4 files changed, 28 insertions(+), 9 deletions(-) diff --git a/lib/SeMeet/I18N/cs.pm b/lib/SeMeet/I18N/cs.pm index 50e8a94..5ff7e00 100644 --- a/lib/SeMeet/I18N/cs.pm +++ b/lib/SeMeet/I18N/cs.pm @@ -11,10 +11,9 @@ our %Lexicon = ( INPUT_MEET_DESCRIPTION_PLACEHOLDER => 'Popis mĂstnosti', INPUT_MEET_DESCRIPTION_LABEL => 'Popis mĂstnosti', INPUT_MEET_ADD_GROUPS_LABEL => 'PĹ™idat skupiny', - INPUT_MEET_ADD_GROUPS_PLACEHOLDER => 'ZaÄŤnÄ›te psát název skupiny pro hledánĂ', - INPUT_MEET_ADD_USERS_PLACEHOLDER => 'ZaÄŤnÄ›te psát jmĂ©no osoby pro hledánĂ', + INPUT_MEET_ADD_GROUPS_PLACEHOLDER => 'Zadejte název skupiny pro hledánĂ', + INPUT_MEET_ADD_USERS_PLACEHOLDER => 'Zadejte jmĂ©no osoby pro hledánĂ', INPUT_MEET_ADD_GROUPS_LABEL => 'PĹ™idat skupiny', - INPUT_MEET_ADD_GROUPS_PLACEHOLDER => 'ZaÄŤnÄ›te psát název skupiny pro hledánĂ', ERROR_SERVERSIDE => 'Chyba na stranÄ› serveru', ERROR_MEET_NAME_REQURED => "Název novĂ© mĂstnosti je povinnĂ˝", ERROR_MEET_NAME_DUPLICITY => 'DuplicitnĂ název mistnosti', @@ -22,6 +21,8 @@ our %Lexicon = ( ENTER => 'Vstoupit', COPY_LINK => 'ZkopĂrovat odkaz', + 'Search person' => 'Vyhledat osobu', + 'Search groups' => 'Vyhledat skupiny', 'About meet' => 'O mistnosti', 'Add groups' => 'PĹ™idat skupiny', 'Add moderators' => 'PĹ™idat moderatory', diff --git a/templates/includes/meet_groups.html.ep b/templates/includes/meet_groups.html.ep index b53c518..e5cc2b7 100644 --- a/templates/includes/meet_groups.html.ep +++ b/templates/includes/meet_groups.html.ep @@ -12,7 +12,13 @@ % if ( $roles->{owner} || $roles->{moderator} ) { <div v-effect="searchGroups()"> <label class="form-field__label" for="name"><%=l 'Adding groups' %></label> - <input type="text" class="w-full text-input" value="" v-model="filter['group']" id="search_group" placeholder="<%=l 'INPUT_MEET_ADD_GROUPS_PLACEHOLDER' %>"/> + <div class="flex flex-row"> + <input type="text" class="w-full text-input" value="" v-model.lazy="filter['group']" id="search_group" placeholder="<%=l 'INPUT_MEET_ADD_GROUPS_PLACEHOLDER' %>"/> + <button class="btn btn--green-400 btn--hoveractive w-1/5 text-sm" @click="searchGroups()"> + <div class="btn__body w-full"><%=l 'Search groups' %></div> + </button> + </div> + <div class="overflow-y-auto h-64 mb-4 border p-2 text-sm" v-if="search['group'].length > 0"> <div v-for="group in search['group']" class="checkbox form-field__control mb-1" > <input name="groups" type="checkbox" v-bind:title="group.id" v-bind:value="group.id" v-model="selected['group']" > diff --git a/templates/includes/meet_moderators.html.ep b/templates/includes/meet_moderators.html.ep index 5ae1dc6..fa3233e 100644 --- a/templates/includes/meet_moderators.html.ep +++ b/templates/includes/meet_moderators.html.ep @@ -12,14 +12,20 @@ % if ( $roles->{owner} ) { <div v-effect="searchUsers('moderator')"> <label class="form-field__label" for="name"><%=l 'Adding moderators' %></label> - <input type="text" class="w-full text-input" value="" v-model="filter['moderator']" id="search_moderator" placeholder="<%=l 'INPUT_MEET_ADD_USERS_PLACEHOLDER' %>"/> - <div class="overflow-y-auto h-64 mb-4 border p-2 text-sm" v-if="search['moderator'].length > 0"> + <div class="flex flex-row"> + <input type="text" class="w-full text-input" value="" v-model.lazy="filter['moderator']" id="search_moderator" placeholder="<%=l 'INPUT_MEET_ADD_USERS_PLACEHOLDER' %>"/> + <button class="btn btn--red-600 btn--hoveractive w-1/5 text-sm" @click="searchUsers('moderator')"> + <div class="btn__body w-full"><%=l 'Search person' %></div> + </button> + </div> + + <div class="overflow-y-auto h-64 mb-4 border p-2 text-sm" v-if="search['moderator'].length > 0"> <div v-for="user in search['moderator']" class="checkbox form-field__control mb-1" > <input name="moderators" type="checkbox" :value="user.uuid" v-model="selected['moderator']" > <label style="max-width: 100%">{{user.name}} ({{ user.username }})<span v-if="user.region.length > 0" class="text-grey-300 text-xs"> | {{ user.region }}</span></label> </div> - </div> - <div class="form-field" v-if="selected['moderator'].length > 0"> + </div> + <div class="form-field" v-if="selected['moderator'].length > 0"> <button class="btn btn--red-600 btn--hoveractive text-lg" @click="addUsers('moderator')"> <div class="btn__body"><%=l 'Add moderators' %></div> </button> diff --git a/templates/includes/meet_participants.html.ep b/templates/includes/meet_participants.html.ep index f2427aa..1390121 100644 --- a/templates/includes/meet_participants.html.ep +++ b/templates/includes/meet_participants.html.ep @@ -12,7 +12,13 @@ % if ( $roles->{owner} || $roles->{moderator} ) { <div v-effect="searchUsers('participant')"> <label class="form-field__label" for="name"><%=l 'Adding people' %></label> - <input type="text" class="w-full text-input" value="" v-model="filter['participant']" id="search_participant" placeholder="<%=l 'INPUT_MEET_ADD_USERS_PLACEHOLDER' %>"/> + <div class="flex flex-row"> + <input type="text" class="w-4/5 text-input text-sm" value="" v-model.lazy="filter['participant']" id="search_participant" placeholder="<%=l 'INPUT_MEET_ADD_USERS_PLACEHOLDER' %>"/> + <button class="btn btn--blue-300 btn--hoveractive w-1/5 text-sm" @click="searchUsers('participant')"> + <div class="btn__body w-full"><%=l 'Search person' %></div> + </button> + </div> + <div class="overflow-y-auto h-64 mb-4 border p-2 text-sm" v-if="search['participant'].length > 0"> <div v-for="user in search['participant']" class="checkbox form-field__control mb-1" > <input name="participants" type="checkbox" :value="user.uuid" v-model="selected['participant']" > -- GitLab