using EmployeeManagmentContracts.BusinessLogicContracts; using EmployeeManagmentContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Security.AccessControl; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Shapes; namespace EmployeeManagmentView.Employee.Vacation { /// /// Логика взаимодействия для EditVacationWindow.xaml /// public partial class EditVacationWindow : Window { private readonly IVacationLogic _vacationLogic; // Логика для работы с отпусками private readonly IEmployeeLogic _employeeLogic; // Логика для работы с сотрудниками private readonly IPhisicalPersonLogic _phisicalPersonLogic; private List _vacations; private List _employees; // Список сотрудников public EditVacationWindow(IVacationLogic vacationLogic, IEmployeeLogic employeeLogic, IPhisicalPersonLogic phisicalPersonLogic) { _vacationLogic = vacationLogic; _employeeLogic = employeeLogic; _phisicalPersonLogic = phisicalPersonLogic; InitializeComponent(); LoadVacations(); } private void LoadVacations() { _vacations = _vacationLogic.GetFullList(); VacationComboBox.ItemsSource = _vacations; VacationComboBox.DisplayMemberPath = "DisplayName"; VacationComboBox.SelectedValuePath = "Id"; } private void VacationComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e) { if (VacationComboBox.SelectedValue is int selectedVacationId) { LoadVacation(selectedVacationId); } } private void LoadVacation(int vacationId) { var vacation = _vacationLogic.GetElement(vacationId); if (vacation != null) { StartDatePicker.SelectedDate = vacation.StartData; EndDatePicker.SelectedDate = vacation.EndData; PassedCheckBox.IsChecked = vacation.Passed; } else { MessageBox.Show("Отпуск не найден", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error); } } private void SearchTextBox_TextChanged(object sender, TextChangedEventArgs e) { var searchText = SearchTextBox.Text.ToLower(); var filteredVacations = _vacations .Where(vac => vac.EmployeeName.ToLower().Contains(searchText)) .ToList(); VacationComboBox.ItemsSource = filteredVacations; } private void NameTextBox_PreviewTextInput(object sender, System.Windows.Input.TextCompositionEventArgs e) { // Разрешаем только буквы e.Handled = !char.IsLetter(e.Text, 0); } private void NameTextBox_TextChanged(object sender, TextChangedEventArgs e) { var textBox = sender as TextBox; if (textBox == null) return; // Получаем текущий текст string currentText = textBox.Text; // Если текст не пустой, преобразуем первую букву в заглавную, а остальные в строчные if (!string.IsNullOrEmpty(currentText)) { // Разбиваем строку по пробелам, чтобы обрабатывать каждое слово отдельно var words = currentText.Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); for (int i = 0; i < words.Length; i++) { // Преобразуем первую букву в заглавную, а остальные в строчные words[i] = char.ToUpper(words[i][0]) + words[i].Substring(1).ToLower(); } // Объединяем слова обратно в строку и обновляем текст textBox.Text = string.Join(" ", words); // Устанавливаем курсор в конец текста textBox.SelectionStart = textBox.Text.Length; } } private void TelephoneTextBox_PreviewTextInput(object sender, System.Windows.Input.TextCompositionEventArgs e) { e.Handled = !char.IsDigit(e.Text, 0); } private void TelephoneTextBox_TextChanged(object sender, TextChangedEventArgs e) { var textBox = sender as TextBox; if (textBox == null) return; // Удаляем все символы, кроме цифр string rawInput = new string(textBox.Text.Where(char.IsDigit).ToArray()); // Добавляем "7" по умолчанию if (!rawInput.StartsWith("7")) rawInput = "7" + rawInput; if (rawInput.Length > 11) rawInput = rawInput.Substring(0, 11); // Форматируем как +7 (XXX) XXX-XX-XX if (rawInput.Length <= 1) textBox.Text = "+7 "; else if (rawInput.Length <= 4) textBox.Text = $"+7 ({rawInput.Substring(1)}"; else if (rawInput.Length <= 7) textBox.Text = $"+7 ({rawInput.Substring(1, 3)}) {rawInput.Substring(4)}"; else if (rawInput.Length <= 9) textBox.Text = $"+7 ({rawInput.Substring(1, 3)}) {rawInput.Substring(4, 3)}-{rawInput.Substring(7)}"; else textBox.Text = $"+7 ({rawInput.Substring(1, 3)}) {rawInput.Substring(4, 3)}-{rawInput.Substring(7, 2)}-{rawInput.Substring(9)}"; // Устанавливаем курсор в конец textBox.SelectionStart = textBox.Text.Length; } private void SaveButton_Click(object sender, RoutedEventArgs e) { try { if (VacationComboBox.SelectedValue is int selectedVacationId) { var updatedVacation = new VacationViewModel { Id = selectedVacationId, StartData = StartDatePicker.SelectedDate.Value.ToUniversalTime(), EndData = EndDatePicker.SelectedDate.Value.ToUniversalTime(), Passed = PassedCheckBox.IsChecked ?? false, }; _vacationLogic.Update(updatedVacation); MessageBox.Show("Отпуск успешно обновлен!"); this.Close(); } else { MessageBox.Show("Выберите отпуск перед сохранением!", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Warning); } } catch (Exception ex) { MessageBox.Show($"Ошибка при сохранении данных: {ex.Message}", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error); } } } }