Remove prefix from secretaries HTML elements

This commit is contained in:
Alex Tselegidis 2022-01-18 10:05:17 +01:00
parent cacc84fd74
commit 837bcab4fc
2 changed files with 59 additions and 59 deletions

View File

@ -54,136 +54,136 @@
<div class="form-message alert" style="display:none;"></div> <div class="form-message alert" style="display:none;"></div>
<input type="hidden" id="secretary-id" class="record-id"> <input type="hidden" id="id" class="record-id">
<div class="row"> <div class="row">
<div class="secretary-details col-12 col-md-6"> <div class="details col-12 col-md-6">
<div class="mb-3"> <div class="mb-3">
<label class="form-label" for="secretary-first-name"> <label class="form-label" for="first-name">
<?= lang('first_name') ?> <?= lang('first_name') ?>
<span class="text-danger">*</span> <span class="text-danger">*</span>
</label> </label>
<input id="secretary-first-name" class="form-control required" maxlength="256"> <input id="first-name" class="form-control required" maxlength="256">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label class="form-label" for="secretary-last-name"> <label class="form-label" for="last-name">
<?= lang('last_name') ?> <?= lang('last_name') ?>
<span class="text-danger">*</span> <span class="text-danger">*</span>
</label> </label>
<input id="secretary-last-name" class="form-control required" maxlength="512"> <input id="last-name" class="form-control required" maxlength="512">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label class="form-label" for="secretary-email"> <label class="form-label" for="email">
<?= lang('email') ?> <?= lang('email') ?>
<span class="text-danger">*</span> <span class="text-danger">*</span>
</label> </label>
<input id="secretary-email" class="form-control required" maxlength="512"> <input id="email" class="form-control required" maxlength="512">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label class="form-label" for="secretary-phone-number"> <label class="form-label" for="phone-number">
<?= lang('phone_number') ?> <?= lang('phone_number') ?>
<span class="text-danger">*</span> <span class="text-danger">*</span>
</label> </label>
<input id="secretary-phone-number" class="form-control required" maxlength="128"> <input id="phone-number" class="form-control required" maxlength="128">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label class="form-label" for="secretary-mobile-number"> <label class="form-label" for="mobile-number">
<?= lang('mobile_number') ?> <?= lang('mobile_number') ?>
</label> </label>
<input id="secretary-mobile-number" class="form-control" maxlength="128"> <input id="mobile-number" class="form-control" maxlength="128">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label class="form-label" for="secretary-address"> <label class="form-label" for="address">
<?= lang('address') ?> <?= lang('address') ?>
</label> </label>
<input id="secretary-address" class="form-control" maxlength="256"> <input id="address" class="form-control" maxlength="256">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label class="form-label" for="secretary-city"> <label class="form-label" for="city">
<?= lang('city') ?> <?= lang('city') ?>
</label> </label>
<input id="secretary-city" class="form-control" maxlength="256"> <input id="city" class="form-control" maxlength="256">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label class="form-label" for="secretary-state"> <label class="form-label" for="state">
<?= lang('state') ?> <?= lang('state') ?>
</label> </label>
<input id="secretary-state" class="form-control" maxlength="128"> <input id="state" class="form-control" maxlength="128">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label class="form-label" for="secretary-zip-code"> <label class="form-label" for="zip-code">
<?= lang('zip_code') ?> <?= lang('zip_code') ?>
</label> </label>
<input id="secretary-zip-code" class="form-control" maxlength="64"> <input id="zip-code" class="form-control" maxlength="64">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label class="form-label" for="secretary-notes"> <label class="form-label" for="notes">
<?= lang('notes') ?> <?= lang('notes') ?>
</label> </label>
<textarea id="secretary-notes" class="form-control" rows="3"></textarea> <textarea id="notes" class="form-control" rows="3"></textarea>
</div> </div>
</div> </div>
<div class="secretary-settings col-12 col-md-6"> <div class="settings col-12 col-md-6">
<div class="mb-3"> <div class="mb-3">
<label class="form-label" for="secretary-username"> <label class="form-label" for="username">
<?= lang('username') ?> <?= lang('username') ?>
<span class="text-danger">*</span> <span class="text-danger">*</span>
</label> </label>
<input id="secretary-username" class="form-control required" maxlength="256"> <input id="username" class="form-control required" maxlength="256">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label class="form-label" for="secretary-password"> <label class="form-label" for="password">
<?= lang('password') ?> <?= lang('password') ?>
<span class="text-danger">*</span> <span class="text-danger">*</span>
</label> </label>
<input type="password" id="secretary-password" class="form-control required" <input type="password" id="password" class="form-control required"
maxlength="512" autocomplete="new-password"> maxlength="512" autocomplete="new-password">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label class="form-label" for="secretary-password-confirm"> <label class="form-label" for="password-confirm">
<?= lang('retype_password') ?> <?= lang('retype_password') ?>
<span class="text-danger">*</span> <span class="text-danger">*</span>
</label> </label>
<input type="password" id="secretary-password-confirm" class="form-control required" <input type="password" id="password-confirm" class="form-control required"
maxlength="512" autocomplete="new-password"> maxlength="512" autocomplete="new-password">
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label class="form-label" for="secretary-calendar-view"> <label class="form-label" for="calendar-view">
<?= lang('calendar') ?> <?= lang('calendar') ?>
<span class="text-danger">*</span> <span class="text-danger">*</span>
</label> </label>
<select id="secretary-calendar-view" class="form-control required"> <select id="calendar-view" class="form-control required">
<option value="default">Default</option> <option value="default">Default</option>
<option value="table">Table</option> <option value="table">Table</option>
</select> </select>
</div> </div>
<div class="mb-3"> <div class="mb-3">
<label class="form-label" for="secretary-timezone"> <label class="form-label" for="timezone">
<?= lang('timezone') ?> <?= lang('timezone') ?>
<span class="text-danger">*</span> <span class="text-danger">*</span>
</label> </label>
<?= render_timezone_dropdown('id="secretary-timezone" class="form-control required"') ?> <?= render_timezone_dropdown('id="timezone" class="form-control required"') ?>
</div> </div>
<br> <br>
<div class="form-check form-switch me-4"> <div class="form-check form-switch me-4">
<input class="form-check-input" type="checkbox" id="secretary-notifications"> <input class="form-check-input" type="checkbox" id="notifications">
<label class="form-check-label" for="secretary-notifications"> <label class="form-check-label" for="notifications">
<?= lang('receive_notifications') ?> <?= lang('receive_notifications') ?>
</label> </label>
</div> </div>

View File

@ -16,23 +16,23 @@
*/ */
App.Pages.Secretaries = (function () { App.Pages.Secretaries = (function () {
const $secretaries = $('#secretaries'); const $secretaries = $('#secretaries');
const $id = $('#secretary-id'); const $id = $('#id');
const $firstName = $('#secretary-first-name'); const $firstName = $('#first-name');
const $lastName = $('#secretary-last-name'); const $lastName = $('#last-name');
const $email = $('#secretary-email'); const $email = $('#email');
const $mobileNumber = $('#secretary-mobile-number'); const $mobileNumber = $('#mobile-number');
const $phoneNumber = $('#secretary-phone-number'); const $phoneNumber = $('#phone-number');
const $address = $('#secretary-address'); const $address = $('#address');
const $city = $('#secretary-city'); const $city = $('#city');
const $state = $('#secretary-state'); const $state = $('#state');
const $zipCode = $('#secretary-zip-code'); const $zipCode = $('#zip-code');
const $notes = $('#secretary-notes'); const $notes = $('#notes');
const $timezone = $('#secretary-timezone'); const $timezone = $('#timezone');
const $username = $('#secretary-username'); const $username = $('#username');
const $password = $('#secretary-password'); const $password = $('#password');
const $passwordConfirmation = $('#secretary-password-confirm'); const $passwordConfirmation = $('#password-confirm');
const $notifications = $('#secretary-notifications'); const $notifications = $('#notifications');
const $calendarView = $('#secretary-calendar-view'); const $calendarView = $('#calendar-view');
const $filterSecretaries = $('#filter-secretaries'); const $filterSecretaries = $('#filter-secretaries');
let filterResults = {}; let filterResults = {};
let filterLimit = 20; let filterLimit = 20;
@ -49,7 +49,7 @@ App.Pages.Secretaries = (function () {
* *
* @param {jQuery.Event} event * @param {jQuery.Event} event
*/ */
$secretaries.on('blur', '#secretary-username', (event) => { $secretaries.on('blur', '#username', (event) => {
const $input = $(event.target); const $input = $(event.target);
if ($input.prop('readonly') === true || $input.val() === '') { if ($input.prop('readonly') === true || $input.val() === '') {
@ -129,7 +129,7 @@ App.Pages.Secretaries = (function () {
$secretaries.find('.save-cancel-group').show(); $secretaries.find('.save-cancel-group').show();
$secretaries.find('.record-details').find('input, textarea').prop('disabled', false); $secretaries.find('.record-details').find('input, textarea').prop('disabled', false);
$secretaries.find('.record-details').find('select').prop('disabled', false); $secretaries.find('.record-details').find('select').prop('disabled', false);
$('#secretary-password, #secretary-password-confirm').addClass('required'); $('#password, #password-confirm').addClass('required');
$('#secretary-providers input:checkbox').prop('disabled', false); $('#secretary-providers input:checkbox').prop('disabled', false);
}); });
@ -143,7 +143,7 @@ App.Pages.Secretaries = (function () {
$secretaries.find('.save-cancel-group').show(); $secretaries.find('.save-cancel-group').show();
$secretaries.find('.record-details').find('input, textarea').prop('disabled', false); $secretaries.find('.record-details').find('input, textarea').prop('disabled', false);
$secretaries.find('.record-details').find('select').prop('disabled', false); $secretaries.find('.record-details').find('select').prop('disabled', false);
$('#secretary-password, #secretary-password-confirm').removeClass('required'); $('#password, #password-confirm').removeClass('required');
$('#secretary-providers input:checkbox').prop('disabled', false); $('#secretary-providers input:checkbox').prop('disabled', false);
}); });
@ -288,12 +288,12 @@ App.Pages.Secretaries = (function () {
// Validate passwords. // Validate passwords.
if ($password.val() !== $passwordConfirmation.val()) { if ($password.val() !== $passwordConfirmation.val()) {
$('#secretary-password, #secretary-password-confirm').addClass('is-invalid'); $('#password, #password-confirm').addClass('is-invalid');
throw new Error('Passwords mismatch!'); throw new Error('Passwords mismatch!');
} }
if ($password.val().length < vars('min_password_length') && $password.val() !== '') { if ($password.val().length < vars('min_password_length') && $password.val() !== '') {
$('#secretary-password, #secretary-password-confirm').addClass('is-invalid'); $('#password, #password-confirm').addClass('is-invalid');
throw new Error( throw new Error(
'Password must be at least ' + BackendSecretaries.MIN_PASSWORD_LENGTH + ' characters long.' 'Password must be at least ' + BackendSecretaries.MIN_PASSWORD_LENGTH + ' characters long.'
); );
@ -326,8 +326,8 @@ App.Pages.Secretaries = (function () {
$filterSecretaries.find('button').prop('disabled', false); $filterSecretaries.find('button').prop('disabled', false);
$filterSecretaries.find('.results').css('color', ''); $filterSecretaries.find('.results').css('color', '');
$secretaries.find('.record-details').find('input, select, textarea').val('').prop('disabled', true); $secretaries.find('.record-details').find('input, select, textarea').val('').prop('disabled', true);
$secretaries.find('.record-details #secretary-calendar-view').val('default'); $secretaries.find('.record-details #calendar-view').val('default');
$secretaries.find('.record-details #secretary-timezone').val('UTC'); $secretaries.find('.record-details #timezone').val('UTC');
$secretaries.find('.add-edit-delete-group').show(); $secretaries.find('.add-edit-delete-group').show();
$secretaries.find('.save-cancel-group').hide(); $secretaries.find('.save-cancel-group').hide();
$secretaries.find('.form-message').hide(); $secretaries.find('.form-message').hide();