ваше сообщение коммита
This commit is contained in:
@@ -4,8 +4,72 @@
|
||||
<span>Контакты</span>
|
||||
<span v-if="newContacts.length" class="badge">+{{ newContacts.length }}</span>
|
||||
</div>
|
||||
<ContactTable :contacts="contacts" :new-contacts="newContacts" :new-messages="newMessages" @markNewAsRead="markContactsAsRead"
|
||||
<ContactTable v-if="isAdmin" :contacts="contacts" :new-contacts="newContacts" :new-messages="newMessages" @markNewAsRead="markContactsAsRead"
|
||||
:markMessagesAsReadForUser="markMessagesAsReadForUser" :markContactAsRead="markContactAsRead" @close="goBack" />
|
||||
|
||||
<!-- Таблица-заглушка для обычных пользователей -->
|
||||
<div v-else class="contact-table-placeholder">
|
||||
<div class="contact-table-header">
|
||||
<h2>Контакты</h2>
|
||||
<button class="close-btn" @click="goBack">×</button>
|
||||
</div>
|
||||
|
||||
<!-- Форма фильтров (неактивная) -->
|
||||
<div class="filters-form-placeholder">
|
||||
<div class="form-row">
|
||||
<div class="form-item">
|
||||
<label>Поиск</label>
|
||||
<input type="text" disabled placeholder="Поиск по имени, email, telegram, кошельку" />
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<label>Тип контакта</label>
|
||||
<select disabled>
|
||||
<option>Все</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<label>Дата от</label>
|
||||
<input type="date" disabled />
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<label>Дата до</label>
|
||||
<input type="date" disabled />
|
||||
</div>
|
||||
<button class="btn-disabled" disabled>Сбросить фильтры</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Таблица с замаскированными данными -->
|
||||
<table class="contact-table-masked">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Имя</th>
|
||||
<th>Email</th>
|
||||
<th>Telegram</th>
|
||||
<th>Кошелек</th>
|
||||
<th>Дата создания</th>
|
||||
<th>Действие</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="i in 3" :key="i">
|
||||
<td>••••••••••</td>
|
||||
<td>••••••••••••••••••••</td>
|
||||
<td>••••••••••••</td>
|
||||
<td>••••••••••••••••••••••••••••••••••</td>
|
||||
<td>••••••••••••••</td>
|
||||
<td>
|
||||
<button class="details-btn-disabled" disabled>Подробнее</button>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="access-notice">
|
||||
<i class="fas fa-info-circle"></i>
|
||||
Полные данные контактов доступны только администраторам
|
||||
</div>
|
||||
</div>
|
||||
</BaseLayout>
|
||||
</template>
|
||||
|
||||
@@ -15,12 +79,14 @@ import { useRouter } from 'vue-router';
|
||||
import BaseLayout from '../components/BaseLayout.vue';
|
||||
import ContactTable from '../components/ContactTable.vue';
|
||||
import { useContactsAndMessagesWebSocket } from '../composables/useContactsWebSocket';
|
||||
import { useAuthContext } from '@/composables/useAuth';
|
||||
|
||||
const {
|
||||
contacts, newContacts, newMessages,
|
||||
markContactsAsRead, markMessagesAsReadForUser, markContactAsRead
|
||||
} = useContactsAndMessagesWebSocket();
|
||||
const router = useRouter();
|
||||
const { isAdmin } = useAuthContext();
|
||||
|
||||
function goBack() {
|
||||
if (window.history.length > 1) {
|
||||
@@ -48,4 +114,138 @@ function goBack() {
|
||||
font-size: 0.95em;
|
||||
margin-left: 7px;
|
||||
}
|
||||
|
||||
/* Стили для таблицы-заглушки */
|
||||
.contact-table-placeholder {
|
||||
background: #fff;
|
||||
border-radius: 16px;
|
||||
box-shadow: 0 4px 32px rgba(0,0,0,0.12);
|
||||
padding: 32px 24px 24px 24px;
|
||||
width: 100%;
|
||||
margin-top: 40px;
|
||||
position: relative;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.contact-table-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.contact-table-header h2 {
|
||||
margin: 0;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.close-btn {
|
||||
position: absolute;
|
||||
top: 18px;
|
||||
right: 18px;
|
||||
background: none;
|
||||
border: none;
|
||||
font-size: 2rem;
|
||||
cursor: pointer;
|
||||
color: #bbb;
|
||||
transition: color 0.2s;
|
||||
}
|
||||
|
||||
.close-btn:hover {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.filters-form-placeholder {
|
||||
margin-bottom: 24px;
|
||||
padding: 16px;
|
||||
background: #f8f9fa;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.form-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 16px;
|
||||
align-items: end;
|
||||
}
|
||||
|
||||
.form-item {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-width: 150px;
|
||||
}
|
||||
|
||||
.form-item label {
|
||||
font-size: 0.9rem;
|
||||
color: #666;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.form-item input,
|
||||
.form-item select {
|
||||
padding: 8px 12px;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 4px;
|
||||
font-size: 0.9rem;
|
||||
background: #f8f9fa;
|
||||
color: #6c757d;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.btn-disabled {
|
||||
padding: 8px 16px;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 4px;
|
||||
background: #f8f9fa;
|
||||
color: #6c757d;
|
||||
cursor: not-allowed;
|
||||
height: fit-content;
|
||||
}
|
||||
|
||||
.contact-table-masked {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.contact-table-masked th,
|
||||
.contact-table-masked td {
|
||||
padding: 12px 8px;
|
||||
text-align: left;
|
||||
border-bottom: 1px solid #e9ecef;
|
||||
}
|
||||
|
||||
.contact-table-masked th {
|
||||
background: #f8f9fa;
|
||||
font-weight: 600;
|
||||
color: #495057;
|
||||
}
|
||||
|
||||
.contact-table-masked td {
|
||||
color: #adb5bd;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
.details-btn-disabled {
|
||||
padding: 6px 12px;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 4px;
|
||||
background: #f8f9fa;
|
||||
color: #6c757d;
|
||||
font-size: 0.8rem;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.access-notice {
|
||||
margin-top: 20px;
|
||||
padding: 12px 16px;
|
||||
background: #e3f2fd;
|
||||
border: 1px solid #bbdefb;
|
||||
border-radius: 8px;
|
||||
color: #1976d2;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user