Perfil de Personal Administrativo - VER, EDITAR, AÑADIR Documento (Correccion en el el boton view document)

This commit is contained in:
jesus.pelaez 2024-09-30 19:28:44 -04:00
parent 6d9a2f65e5
commit 9b67ee3902

View File

@ -15,6 +15,8 @@ import com.vaadin.flow.component.textfield.TextField;
import com.vaadin.flow.component.upload.Upload; import com.vaadin.flow.component.upload.Upload;
import com.vaadin.flow.component.upload.receivers.MemoryBuffer; import com.vaadin.flow.component.upload.receivers.MemoryBuffer;
import com.vaadin.flow.router.*; import com.vaadin.flow.router.*;
import com.vaadin.flow.server.StreamRegistration;
import com.vaadin.flow.server.StreamResource;
import com.vaadin.flow.spring.annotation.SpringComponent; import com.vaadin.flow.spring.annotation.SpringComponent;
import elemental.json.Json; import elemental.json.Json;
import elemental.json.JsonArray; import elemental.json.JsonArray;
@ -25,10 +27,12 @@ import org.springframework.security.core.userdetails.UserDetails;
import org.vaadin.firitin.form.BeanValidationForm; import org.vaadin.firitin.form.BeanValidationForm;
import com.vaadin.flow.spring.security.AuthenticationContext; import com.vaadin.flow.spring.security.AuthenticationContext;
import java.io.ByteArrayInputStream;
import java.io.IOException; import java.io.IOException;
import java.util.Base64; import java.util.Base64;
import java.util.List; import java.util.List;
import java.util.UUID; import java.util.UUID;
import java.io.InputStream;
@SpringComponent @SpringComponent
@PermitAll @PermitAll
@ -36,7 +40,6 @@ import java.util.UUID;
@PageTitle("Document") @PageTitle("Document")
@Route(value = "/documents/:documentId?/:action?", layout = MainLayout.class) @Route(value = "/documents/:documentId?/:action?", layout = MainLayout.class)
public class DocumentView extends BeanValidationForm<Document> implements HasUrlParameter<String> { public class DocumentView extends BeanValidationForm<Document> implements HasUrlParameter<String> {
private final H2 title = new H2("Edit Documents"); private final H2 title = new H2("Edit Documents");
private final TextField fileName = new TextField("Document Name"); private final TextField fileName = new TextField("Document Name");
private final ComboBox<DocumentType> documentType = new ComboBox<>("Document Type"); private final ComboBox<DocumentType> documentType = new ComboBox<>("Document Type");
@ -46,7 +49,6 @@ public class DocumentView extends BeanValidationForm<Document> implements HasUrl
private final DocumentService documentService; private final DocumentService documentService;
private final EmployeeService employeeService; private final EmployeeService employeeService;
private final AuthenticationContext authContext; private final AuthenticationContext authContext;
private boolean fileUploaded = false; private boolean fileUploaded = false;
private Button saveButton; private Button saveButton;
private Button viewDocumentButton; private Button viewDocumentButton;
@ -66,34 +68,6 @@ public class DocumentView extends BeanValidationForm<Document> implements HasUrl
configureUploadButton(); configureUploadButton();
} }
private void configureComponents() {
setFileNameProperties();
setDocumentTypeProperties();
setEmployeeComboBoxProperties();
}
private void setFileNameProperties() {
fileName.setWidthFull();
}
private void setDocumentTypeProperties() {
documentType.setItems(DocumentType.values());
documentType.setWidthFull();
}
private void setEmployeeComboBoxProperties() {
List<Employee> employees = employeeService.findAllEmployees();
employeeComboBox.setItems(employees);
employeeComboBox.setItemLabelGenerator(employee -> employee.getFirstName() + " " + employee.getLastName());
employeeComboBox.setWidthFull();
}
private void configureUploadButton() {
uploadButton.setMaxFiles(1);
uploadButton.setAcceptedFileTypes(".pdf");
uploadButton.addSucceededListener(event -> handleUploadSuccess());
}
protected Button createSaveButton() { protected Button createSaveButton() {
saveButton = new Button("Save"); saveButton = new Button("Save");
saveButton.addClickListener(event -> saveDocument()); saveButton.addClickListener(event -> saveDocument());
@ -113,43 +87,59 @@ public class DocumentView extends BeanValidationForm<Document> implements HasUrl
return viewDocumentButton; return viewDocumentButton;
} }
private void setFileNameProperties() {
fileName.setWidthFull();
}
private void setDocumentTypeProperties() {
documentType.setItems(DocumentType.values());
documentType.setWidthFull();
}
private void setEmployeeComboBoxProperties() {
List<Employee> employees = employeeService.findAllEmployees();
employeeComboBox.setItems(employees);
employeeComboBox.setItemLabelGenerator(employee -> employee.getFirstName() + " " + employee.getLastName());
employeeComboBox.setWidthFull();
}
private void setDocumentCreator(final Document document) {
authContext.getAuthenticatedUser(UserDetails.class).ifPresent(user -> {
document.setCreator(user.getUsername());
});
}
private void setFieldsReadOnly(final boolean option) {
fileName.setReadOnly(option);
documentType.setReadOnly(option);
employeeComboBox.setReadOnly(option);
}
private void viewDocument() { private void viewDocument() {
Document document = getEntity(); StreamResource resource;
if (document.getFileData() != null && document.getFileData().length > 0) { try {
String base64Data = Base64.getEncoder().encodeToString(document.getFileData()); InputStream inputStream = buffer.getInputStream();
String jsCode = createJsCodeForDocument(base64Data); if (inputStream != null && inputStream.available() > 0) {
getElement().executeJs(jsCode); resource = new StreamResource(fileName.getValue(), () -> new ByteArrayInputStream(readFileData()));
} else { } else {
Notification.show("No file data available to view."); byte[] fileData = getEntity().getFileData();
resource = new StreamResource(fileName.getValue(), () -> new ByteArrayInputStream(fileData));
} }
resource.setContentType("application/pdf");
getUI().ifPresent(ui -> {
StreamRegistration registration = ui.getSession().getResourceRegistry().registerResource(resource);
ui.getPage().open(registration.getResourceUri().toString());
});
} catch (IOException e) {
e.printStackTrace();
Notification.show("Error al leer el archivo.");
} }
private String createJsCodeForDocument(final String base64Data) {
return "var byteCharacters = atob('" + base64Data + "');"
+ "var byteNumbers = new Array(byteCharacters.length);"
+ "for (var i = 0; i < byteCharacters.length; i++) {"
+ " byteNumbers[i] = byteCharacters.charCodeAt(i);"
+ "}"
+ "var byteArray = new Uint8Array(byteNumbers);"
+ "var blob = new Blob([byteArray], { type: 'application/pdf' });"
+ "var url = URL.createObjectURL(blob);"
+ "window.open(url, '_blank');";
}
private void closeForm() {
navigateToDocumentsListView();
} }
private void navigateToDocumentsListView() { private void navigateToDocumentsListView() {
getUI().ifPresent(ui -> ui.navigate(DocumentsListView.class)); getUI().ifPresent(ui -> ui.navigate(DocumentsListView.class));
} }
private void handleUploadSuccess() {
fileUploaded = true;
Notification.show("File uploaded successfully.");
viewDocumentButton.setEnabled(true);
}
private void saveDocument() { private void saveDocument() {
if (isFormValid()) { if (isFormValid()) {
Document document = getEntity(); Document document = getEntity();
@ -167,10 +157,8 @@ public class DocumentView extends BeanValidationForm<Document> implements HasUrl
} }
} }
private void setDocumentCreator(final Document document) { private void closeForm() {
authContext.getAuthenticatedUser(UserDetails.class).ifPresent(user -> { navigateToDocumentsListView();
document.setCreator(user.getUsername());
});
} }
private boolean isFormValid() { private boolean isFormValid() {
@ -180,15 +168,6 @@ public class DocumentView extends BeanValidationForm<Document> implements HasUrl
&& fileUploaded; && fileUploaded;
} }
private byte[] readFileData() {
try {
return buffer.getInputStream().readAllBytes();
} catch (IOException e) {
Notification.show("Error reading file data.");
return new byte[0];
}
}
private void clearForm() { private void clearForm() {
fileName.clear(); fileName.clear();
documentType.clear(); documentType.clear();
@ -198,10 +177,13 @@ public class DocumentView extends BeanValidationForm<Document> implements HasUrl
viewDocumentButton.setEnabled(false); viewDocumentButton.setEnabled(false);
} }
private void setFieldsReadOnly(final boolean option) { private byte[] readFileData() {
fileName.setReadOnly(option); try {
documentType.setReadOnly(option); return buffer.getInputStream().readAllBytes();
employeeComboBox.setReadOnly(option); } catch (IOException e) {
Notification.show("Error reading file data.");
return new byte[0];
}
} }
private void preLoadFile(final Document document) { private void preLoadFile(final Document document) {
@ -210,8 +192,49 @@ public class DocumentView extends BeanValidationForm<Document> implements HasUrl
jsonObject.put("name", document.getFileName()); jsonObject.put("name", document.getFileName());
jsonObject.put("progress", 100); jsonObject.put("progress", 100);
jsonObject.put("complete", true); jsonObject.put("complete", true);
jsonObject.put("fileData", Base64.getEncoder().encodeToString(document.getFileData()));
jsonArray.set(0, jsonObject); jsonArray.set(0, jsonObject);
uploadButton.getElement().setPropertyJson("files", jsonArray); uploadButton.getElement().setPropertyJson("files", jsonArray);
fileUploaded = true;
}
private void handleUploadSuccess() {
fileUploaded = true;
Notification.show("File uploaded successfully.");
viewDocumentButton.setEnabled(true);
}
private void handleFileRemoval() {
fileUploaded = false;
Notification.show("File removed.");
viewDocumentButton.setEnabled(false);
uploadButton.setReceiver(new MemoryBuffer());
}
private void configureComponents() {
setFileNameProperties();
setDocumentTypeProperties();
setEmployeeComboBoxProperties();
}
private void configureUploadButton() {
uploadButton.setMaxFiles(1);
uploadButton.setAcceptedFileTypes(".pdf");
uploadButton.addSucceededListener(event -> handleUploadSuccess());
uploadButton.getElement().addEventListener("file-remove", event -> handleFileRemoval());
}
private void configureViewOrEditAction(final String action, final String documentIdString) {
if ("edit".equals(action) && !documentIdString.isEmpty()) {
setFieldsReadOnly(false);
preLoadFile(getEntity());
viewDocumentButton.setEnabled(true);
} else if ("view".equals(action) && !documentIdString.isEmpty()) {
setFieldsReadOnly(true);
preLoadFile(getEntity());
saveButton.setEnabled(false);
viewDocumentButton.setEnabled(true);
}
} }
@Override @Override
@ -231,17 +254,6 @@ public class DocumentView extends BeanValidationForm<Document> implements HasUrl
} }
} }
private void configureViewOrEditAction(final String action, final String documentIdString) {
if ("edit".equals(action) && !documentIdString.isEmpty()) {
setFieldsReadOnly(false);
preLoadFile(getEntity());
} else if ("view".equals(action) && !documentIdString.isEmpty()) {
setFieldsReadOnly(true);
saveButton.setEnabled(false);
viewDocumentButton.setEnabled(true);
}
}
@Override @Override
protected List<Component> getFormComponents() { protected List<Component> getFormComponents() {
HorizontalLayout buttonLayout = new HorizontalLayout(); HorizontalLayout buttonLayout = new HorizontalLayout();