mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-14 10:57:44 +00:00
Not that the previous types were incorrect but they were wrong. SendFeedback extends the HTMLElement and is a class so it has it's own properties so extended the properties accordingly.
66 lines
1.8 KiB
TypeScript
66 lines
1.8 KiB
TypeScript
import { remote } from 'electron';
|
|
import path from 'path';
|
|
import fs from 'fs';
|
|
import SendFeedback from '@electron-elements/send-feedback';
|
|
|
|
const { app } = remote;
|
|
|
|
interface SendFeedback extends HTMLElement {
|
|
[key: string]: any;
|
|
}
|
|
|
|
type SendFeedbackType = SendFeedback;
|
|
|
|
// make the button color match zulip app's theme
|
|
SendFeedback.customStyles = `
|
|
button:hover, button:focus {
|
|
border-color: #4EBFAC;
|
|
color: #4EBFAC;
|
|
}
|
|
|
|
button:active {
|
|
background-color: #f1f1f1;
|
|
color: #4EBFAC;
|
|
}
|
|
|
|
button {
|
|
background-color: #4EBFAC;
|
|
border-color: #4EBFAC;
|
|
}
|
|
`;
|
|
|
|
customElements.define('send-feedback', SendFeedback);
|
|
export const sendFeedback: SendFeedbackType = document.querySelector('send-feedback');
|
|
export const feedbackHolder = sendFeedback.parentElement;
|
|
|
|
// customize the fields of custom elements
|
|
sendFeedback.title = 'Report Issue';
|
|
sendFeedback.titleLabel = 'Issue title:';
|
|
sendFeedback.titlePlaceholder = 'Enter issue title';
|
|
sendFeedback.textareaLabel = 'Describe the issue:';
|
|
sendFeedback.textareaPlaceholder = 'Succinctly describe your issue and steps to reproduce it...';
|
|
sendFeedback.buttonLabel = 'Report Issue';
|
|
sendFeedback.loaderSuccessText = '';
|
|
|
|
sendFeedback.useReporter('emailReporter', {
|
|
email: 'akash@zulipchat.com'
|
|
});
|
|
|
|
feedbackHolder.addEventListener('click', (e: Event) => {
|
|
// only remove the class if the grey out faded
|
|
// part is clicked and not the feedback element itself
|
|
if (e.target === e.currentTarget) {
|
|
feedbackHolder.classList.remove('show');
|
|
}
|
|
});
|
|
|
|
sendFeedback.addEventListener('feedback-submitted', () => {
|
|
setTimeout(() => {
|
|
feedbackHolder.classList.remove('show');
|
|
}, 1000);
|
|
});
|
|
|
|
const dataDir = app.getPath('userData');
|
|
const logsDir = path.join(dataDir, '/Logs');
|
|
sendFeedback.logs.push(...fs.readdirSync(logsDir).map(file => path.join(logsDir, file)));
|