mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-30 03:23:48 +01:00
fix missed conflicts
This commit is contained in:
parent
d372166c8b
commit
517066a710
@ -45,6 +45,7 @@ interface IProps {
|
|||||||
hostname: string;
|
hostname: string;
|
||||||
player: IPlayer;
|
player: IPlayer;
|
||||||
router: IRouter;
|
router: IRouter;
|
||||||
|
vim: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: try to removve global symbols
|
// TODO: try to removve global symbols
|
||||||
@ -98,6 +99,9 @@ class OpenScript {
|
|||||||
export function Root(props: IProps): React.ReactElement {
|
export function Root(props: IProps): React.ReactElement {
|
||||||
const editorRef = useRef<IStandaloneCodeEditor | null>(null);
|
const editorRef = useRef<IStandaloneCodeEditor | null>(null);
|
||||||
const monacoRef = useRef<Monaco | null>(null);
|
const monacoRef = useRef<Monaco | null>(null);
|
||||||
|
const vimStatusRef = useRef<HTMLElement>(null);
|
||||||
|
const [vimEditor, setVimEditor] = useState<any>(null);
|
||||||
|
const [editor, setEditor] = useState<IStandaloneCodeEditor | null>(null);
|
||||||
|
|
||||||
const [openScripts, setOpenScripts] = useState<OpenScript[]>(
|
const [openScripts, setOpenScripts] = useState<OpenScript[]>(
|
||||||
window.localStorage.getItem('scriptEditorOpenScripts') !== null ? JSON.parse(window.localStorage.getItem('scriptEditorOpenScripts')!) : []
|
window.localStorage.getItem('scriptEditorOpenScripts') !== null ? JSON.parse(window.localStorage.getItem('scriptEditorOpenScripts')!) : []
|
||||||
@ -107,21 +111,6 @@ export function Root(props: IProps): React.ReactElement {
|
|||||||
window.localStorage.getItem('scriptEditorCurrentScript') !== null ? JSON.parse(window.localStorage.getItem('scriptEditorCurrentScript')!) : null
|
window.localStorage.getItem('scriptEditorCurrentScript') !== null ? JSON.parse(window.localStorage.getItem('scriptEditorCurrentScript')!) : null
|
||||||
);
|
);
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
export function Root(props: IProps): React.ReactElement {
|
|
||||||
const editorRef = useRef<IStandaloneCodeEditor | null>(null);
|
|
||||||
const vimStatusRef = useRef<HTMLElement>(null);
|
|
||||||
const [vimEditor, setVimEditor] = useState<any>(null);
|
|
||||||
const [editor, setEditor] = useState<IStandaloneCodeEditor | null>(null);
|
|
||||||
const [filename, setFilename] = useState(props.filename ? props.filename : lastFilename);
|
|
||||||
const [code, setCode] = useState<string>(props.filename ? props.code : lastCode);
|
|
||||||
const [decorations, setDecorations] = useState<string[]>([]);
|
|
||||||
hostname = props.filename ? props.hostname : hostname;
|
|
||||||
if (hostname === "") {
|
|
||||||
hostname = props.player.getCurrentServer().hostname;
|
|
||||||
}
|
|
||||||
=======
|
|
||||||
>>>>>>> dev
|
|
||||||
const [ram, setRAM] = useState("RAM: ???");
|
const [ram, setRAM] = useState("RAM: ???");
|
||||||
const [updatingRam, setUpdatingRam] = useState(false);
|
const [updatingRam, setUpdatingRam] = useState(false);
|
||||||
const [decorations, setDecorations] = useState<string[]>([]);
|
const [decorations, setDecorations] = useState<string[]>([]);
|
||||||
@ -131,7 +120,7 @@ export function Root(props: IProps): React.ReactElement {
|
|||||||
theme: Settings.MonacoTheme,
|
theme: Settings.MonacoTheme,
|
||||||
insertSpaces: Settings.MonacoInsertSpaces,
|
insertSpaces: Settings.MonacoInsertSpaces,
|
||||||
fontSize: Settings.MonacoFontSize,
|
fontSize: Settings.MonacoFontSize,
|
||||||
vim: Settings.MonacoVim,
|
vim: props.vim || Settings.MonacoVim,
|
||||||
});
|
});
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
Loading…
Reference in New Issue
Block a user