import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { action, computed, observable, runInAction } from 'mobx'; import { observer } from 'mobx-react'; import * as React from 'react'; import { ColorState, SketchPicker } from 'react-color'; import { Doc } from '../../fields/Doc'; import { Id } from '../../fields/FieldSymbols'; import { BoolCast, Cast, StrCast } from '../../fields/Types'; import { addStyleSheet, addStyleSheetRule, Utils } from '../../Utils'; import { GoogleAuthenticationManager } from '../apis/GoogleAuthenticationManager'; import { DocServer } from '../DocServer'; import { Networking } from '../Network'; import { MainViewModal } from '../views/MainViewModal'; import { FontIconBox } from '../views/nodes/button/FontIconBox'; import { DragManager } from './DragManager'; import { GroupManager } from './GroupManager'; import './SettingsManager.scss'; import './ReportManager.scss'; import { undoBatch } from './UndoManager'; import { Octokit } from "@octokit/core"; import { CheckBox } from '../views/search/CheckBox'; import ReactLoading from 'react-loading'; import ReactMarkdown from 'react-markdown'; import rehypeRaw from 'rehype-raw'; import remarkGfm from 'remark-gfm'; const higflyout = require('@hig/flyout'); export const { anchorPoints } = higflyout; export const Flyout = higflyout.default; @observer export class ReportManager extends React.Component<{}> { public static Instance: ReportManager; @observable private isOpen = false; private octokit: Octokit; @observable public issues: any[] = []; @action setIssues = action((issues: any[]) => { this.issues = issues; }); // undefined is the default - null is if the user is making an issue @observable public selectedIssue: any = undefined; @action setSelectedIssue = action((issue: any) => { this.selectedIssue = issue; }); // only get the open issues @observable public shownIssues = this.issues.filter(issue => issue.state === 'open'); public updateIssueSearch = action((query: string = '') => { if (query === '') { this.shownIssues = this.issues.filter(issue => issue.state === 'open'); return; } this.shownIssues = this.issues.filter(issue => issue.title.toLowerCase().includes(query.toLowerCase())); }); constructor(props: {}) { super(props); ReportManager.Instance = this; this.octokit = new Octokit({ auth: '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' }); } public close = action(() => (this.isOpen = false)); public open = action(() => { if (this.issues.length === 0) { // load in the issues if not already loaded this.getAllIssues() .then(issues => { this.setIssues(issues); this.updateIssueSearch(); }) .catch(err => console.log(err)); } (this.isOpen = true) }); @observable private bugTitle = ''; @action setBugTitle = action((title: string) => { this.bugTitle = title; }); @observable private bugDescription = ''; @action setBugDescription = action((description: string) => { this.bugDescription = description; }); @observable private bugType = ''; @action setBugType = action((type: string) => { this.bugType = type; }); @observable private bugPriority = ''; @action setBugPriority = action((priortiy: string) => { this.bugPriority = priortiy; }); // private toGithub = false; // will always be set to true - no alterntive option yet private toGithub = true; private formatTitle = (title: string, userEmail: string) => `${title} - ${userEmail.replace('@brown.edu', '')}`; public async getAllIssues() : Promise { const res = await this.octokit.request('GET /repos/{owner}/{repo}/issues', { owner: 'brown-dash', repo: 'Dash-Web', }); // 200 status means success if (res.status === 200) { return res.data; } else { throw new Error('Error getting issues'); } } // turns an upload link into a servable link // ex: // C: /Users/dash/Documents/GitHub/Dash-Web/src/server/public/files/images/upload_8008dbc4b6424fbff14da7345bb32eb2_l.png // -> http://localhost:1050/files/images/upload_8008dbc4b6424fbff14da7345bb32eb2_l.png private fileLinktoServerLink = (fileLink: string) => { const serverUrl = 'https://browndash.com/'; const regex = 'public' const publicIndex = fileLink.indexOf(regex) + regex.length; const finalUrl = `${serverUrl}${fileLink.substring(publicIndex + 1)}`; return finalUrl; } public async reportIssue() { if (this.bugTitle === '' || this.bugDescription === '' || this.bugType === '' || this.bugPriority === '') { alert('Please fill out all required fields to report an issue.'); return; } if (this.toGithub) { const formattedLinks = (this.fileLinks ?? []).map(this.fileLinktoServerLink) const req = await this.octokit.request('POST /repos/{owner}/{repo}/issues', { owner: 'brown-dash', repo: 'Dash-Web', title: this.formatTitle(this.bugTitle, Doc.CurrentUserEmail), body: `${this.bugDescription} \n\nfiles:\n${formattedLinks.join('\n')}`, labels: [ 'from-dash-app', this.bugType, this.bugPriority ] }); // 201 status means success if (req.status !== 201) { alert('Error creating issue on github.'); // on error, don't close the modal return; } } else { // if not going to github issues, not sure what to do yet... } // if we're down here, then we're good to go. reset the fields. this.setBugTitle(''); this.setBugDescription(''); // this.toGithub = false; this.setFileLinks([]); this.setBugType(''); this.setBugPriority(''); this.close(); } @observable public fileLinks: any = []; @action setFileLinks = action((links: any) => { this.fileLinks = links; }); private getServerPath = (link: any) => { return link.result.accessPaths.agnostic.server } private uploadFiles = (input: any) => { // keep null while uploading this.setFileLinks(null); // upload the files to the server if (input.files && input.files.length !== 0) { const fileArray: File[] = Array.from(input.files); (Networking.UploadFilesToServer(fileArray)).then(links => { console.log('finshed uploading', links.map(this.getServerPath)); this.setFileLinks((links ?? []).map(this.getServerPath)); }) } } private renderIssue = (issue: any) => { const isReportingIssue = issue === null; return isReportingIssue ? // report issue (

Report an Issue


this.setBugTitle(e.target.value)} required/>