From 3f1ffd2fc2f09bd6b5909ae69ef07006750f4436 Mon Sep 17 00:00:00 2001 From: Michael Foiani Date: Wed, 3 Aug 2022 13:41:52 -0400 Subject: add new icon and modal for reporting. --- src/client/util/ReportManager.tsx | 62 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 src/client/util/ReportManager.tsx (limited to 'src/client/util') diff --git a/src/client/util/ReportManager.tsx b/src/client/util/ReportManager.tsx new file mode 100644 index 000000000..49453ae67 --- /dev/null +++ b/src/client/util/ReportManager.tsx @@ -0,0 +1,62 @@ +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 { undoBatch } from './UndoManager'; +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; + + constructor(props: {}) { + super(props); + ReportManager.Instance = this; + } + + public close = action(() => (this.isOpen = false)); + public open = action(() => (this.isOpen = true)); + + private get reportInterface() { + + return ( +
+
+ +
+ +
+ content +
+
+ ); + } + + render() { + return ( + + ); + } +} -- cgit v1.2.3-70-g09d2 From f4ad642399fd207909bb8733e431061b30e3cb7d Mon Sep 17 00:00:00 2001 From: Michael Foiani Date: Wed, 3 Aug 2022 13:59:21 -0400 Subject: basic interface for reporting bug --- src/client/util/ReportManager.tsx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'src/client/util') diff --git a/src/client/util/ReportManager.tsx b/src/client/util/ReportManager.tsx index 49453ae67..b156d7981 100644 --- a/src/client/util/ReportManager.tsx +++ b/src/client/util/ReportManager.tsx @@ -33,6 +33,13 @@ export class ReportManager extends React.Component<{}> { public close = action(() => (this.isOpen = false)); public open = action(() => (this.isOpen = true)); + private bugTitle = ''; + private bugDescription = ''; + + public reportBug() { + console.log('Reporting bug', this.bugTitle, this.bugDescription); + } + private get reportInterface() { return ( @@ -42,7 +49,12 @@ export class ReportManager extends React.Component<{}> {
- content +

Report a Bug

+
+ this.bugTitle = e.target.value}/>
+ +