From 3fd812012a4789daed875609c49ba6935fc09b9a Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Wed, 24 Jul 2019 13:48:01 +0200 Subject: [PATCH] Tweaked look and feel. --- antd.customize.less | 2 +- src/index.tsx | 2 +- src/rendering/Renderer.ts | 8 ++++ src/ui/DisabledTextComponent.less | 4 ++ src/ui/DisabledTextComponent.tsx | 8 ++++ src/{ => ui}/index.less | 42 ++++++++++++++++++- src/ui/quest_editor/EntityInfoComponent.tsx | 7 +++- src/ui/quest_editor/QuestEditorComponent.tsx | 9 ++++ src/ui/quest_editor/QuestInfoComponent.tsx | 7 +++- src/ui/theme.less | 25 +---------- .../models/AnimationSelectionComponent.less | 4 +- .../models/ModelSelectionComponent.less | 4 +- .../viewer/models/ModelSelectionComponent.tsx | 7 +++- 13 files changed, 96 insertions(+), 33 deletions(-) create mode 100644 src/ui/DisabledTextComponent.less create mode 100644 src/ui/DisabledTextComponent.tsx rename src/{ => ui}/index.less (53%) diff --git a/antd.customize.less b/antd.customize.less index a6eb3cf1..7ac7df5b 100644 --- a/antd.customize.less +++ b/antd.customize.less @@ -1,4 +1,4 @@ -@primary-color: hsl(200, 100%, 50%); +@primary-color: hsl(200, 60%, 75%); @white: #000; @black: #fff; diff --git a/src/index.tsx b/src/index.tsx index 1d067ca8..de4b6113 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,7 +1,7 @@ import React from "react"; import ReactDOM from "react-dom"; import Logger from "js-logger"; -import "./index.less"; +import "./ui/index.less"; import { ApplicationComponent } from "./ui/ApplicationComponent"; import "react-virtualized/styles.css"; import "react-select/dist/react-select.css"; diff --git a/src/rendering/Renderer.ts b/src/rendering/Renderer.ts index b52f8e4f..c963107b 100644 --- a/src/rendering/Renderer.ts +++ b/src/rendering/Renderer.ts @@ -37,6 +37,10 @@ export class Renderer { constructor(camera: C) { this.camera = camera; + this.dom_element.tabIndex = 0; + this.dom_element.addEventListener("mousedown", this.on_mouse_down); + this.dom_element.style.outline = "none"; + this.controls = new OrbitControls(camera, this.dom_element); this.controls.mouseButtons.ORBIT = MOUSE.RIGHT; this.controls.mouseButtons.PAN = MOUSE.LEFT; @@ -82,6 +86,10 @@ export class Renderer { this.renderer.render(this.scene, this.camera); } + private on_mouse_down = (e: Event) => { + if (e.currentTarget) (e.currentTarget as HTMLElement).focus(); + }; + private call_render = () => { this.render_scheduled = false; this.render(); diff --git a/src/ui/DisabledTextComponent.less b/src/ui/DisabledTextComponent.less new file mode 100644 index 00000000..b331de5b --- /dev/null +++ b/src/ui/DisabledTextComponent.less @@ -0,0 +1,4 @@ +.DisabledTextComponent { + color: @disabled-color; + padding: 5px 0; +} diff --git a/src/ui/DisabledTextComponent.tsx b/src/ui/DisabledTextComponent.tsx new file mode 100644 index 00000000..44086aaa --- /dev/null +++ b/src/ui/DisabledTextComponent.tsx @@ -0,0 +1,8 @@ +import React, { Component, ReactNode } from "react"; +import "./DisabledTextComponent.less"; + +export class DisabledTextComponent extends Component<{ children: string }> { + render(): ReactNode { + return
{this.props.children}
; + } +} diff --git a/src/index.less b/src/ui/index.less similarity index 53% rename from src/index.less rename to src/ui/index.less index dfe26c51..bc20a589 100644 --- a/src/index.less +++ b/src/ui/index.less @@ -1,5 +1,7 @@ @import "~antd/dist/antd.less"; -@import "ui/theme.less"; +@import "./theme.less"; + +// React Root Element #phantasmal-world-root { position: absolute; @@ -9,6 +11,8 @@ right: 0; } +// antd + * { scrollbar-color: @scrollbar-thumb-color @scrollbar-color; @@ -33,6 +37,8 @@ background-color: @scrollbar-color; } +// react-virtualized + #phantasmal-world-root { & .ReactVirtualized__Grid { outline: none; @@ -46,3 +52,37 @@ margin: 0; } } + +// golden-layout + +#phantasmal-world-root { + & .lm_header { + background: darken(@component-background, 5%); + } + + & .lm_goldenlayout { + background: darken(@component-background, 5%); + } + + & .lm_content { + background: @component-background; + } + + & .lm_tab { + height: 26px; + line-height: 26px; + padding: 0px 16px; + margin: 2px 2px 0px 0px; + background: darken(@component-background, 3%); + box-shadow: none; + + &.lm_active { + background: @component-background; + } + } + + & .lm_controls { + top: 6px; + right: 6px; + } +} diff --git a/src/ui/quest_editor/EntityInfoComponent.tsx b/src/ui/quest_editor/EntityInfoComponent.tsx index 0ef96d36..baa5ddfb 100644 --- a/src/ui/quest_editor/EntityInfoComponent.tsx +++ b/src/ui/quest_editor/EntityInfoComponent.tsx @@ -4,6 +4,7 @@ import { observer } from "mobx-react"; import React, { Component, PureComponent, ReactNode } from "react"; import { QuestEntity, QuestNpc, QuestObject } from "../../domain"; import { quest_editor_store } from "../../stores/QuestEditorStore"; +import { DisabledTextComponent } from "../DisabledTextComponent"; import "./EntityInfoComponent.css"; @observer @@ -97,7 +98,11 @@ export class EntityInfoComponent extends Component { ); } else { - return
; + return ( +
+ No entity selected. +
+ ); } } } diff --git a/src/ui/quest_editor/QuestEditorComponent.tsx b/src/ui/quest_editor/QuestEditorComponent.tsx index ac519bca..b3d5c3a6 100644 --- a/src/ui/quest_editor/QuestEditorComponent.tsx +++ b/src/ui/quest_editor/QuestEditorComponent.tsx @@ -27,6 +27,15 @@ export class QuestEditorComponent extends Component { settings: { showPopoutIcon: false, }, + dimensions: { + headerHeight: 28, + }, + labels: { + close: "Close", + maximise: "Maximise", + minimise: "Minimise", + popout: "Open in new window", + }, content: [ { type: "row", diff --git a/src/ui/quest_editor/QuestInfoComponent.tsx b/src/ui/quest_editor/QuestInfoComponent.tsx index ba93e117..81cf6166 100644 --- a/src/ui/quest_editor/QuestInfoComponent.tsx +++ b/src/ui/quest_editor/QuestInfoComponent.tsx @@ -3,6 +3,7 @@ import React, { Component, ReactNode } from "react"; import { NpcType } from "../../domain"; import { quest_editor_store } from "../../stores/QuestEditorStore"; import "./QuestInfoComponent.css"; +import { DisabledTextComponent } from "../DisabledTextComponent"; @observer export class QuestInfoComponent extends Component { @@ -70,7 +71,11 @@ export class QuestInfoComponent extends Component {
); } else { - return
; + return ( +
+ No quest loaded. +
+ ); } } } diff --git a/src/ui/theme.less b/src/ui/theme.less index 6719d572..bf0cde8e 100644 --- a/src/ui/theme.less +++ b/src/ui/theme.less @@ -1,28 +1,7 @@ +// Variables used throughout the code in addition to antd.customize.less. + @scrollbar-color: darken(@component-background, 3%); @scrollbar-thumb-color: lighten(@component-background, 3%); @table-scrollbar-color: lighten(@scrollbar-color, 1%); @table-scrollbar-thumb-color: lighten(@scrollbar-thumb-color, 5%); - -#phantasmal-world-root { - & .lm_header { - background: darken(@component-background, 5%); - } - - & .lm_goldenlayout { - background: darken(@component-background, 5%); - } - - & .lm_content { - background: @component-background; - } - - & .lm_tab { - background: darken(@component-background, 5%); - box-shadow: none; - - &.lm_active { - background: @component-background; - } - } -} diff --git a/src/ui/viewer/models/AnimationSelectionComponent.less b/src/ui/viewer/models/AnimationSelectionComponent.less index f1f375ae..7c0abf8e 100644 --- a/src/ui/viewer/models/AnimationSelectionComponent.less +++ b/src/ui/viewer/models/AnimationSelectionComponent.less @@ -14,11 +14,11 @@ white-space: nowrap; &.selected { - color: lighten(@primary-color, 15%); + color: @primary-color; } &:hover { - color: lighten(@primary-color, 30%); + color: lighten(@primary-color, 15%); } } } diff --git a/src/ui/viewer/models/ModelSelectionComponent.less b/src/ui/viewer/models/ModelSelectionComponent.less index 72d17c17..6b2bc9b1 100644 --- a/src/ui/viewer/models/ModelSelectionComponent.less +++ b/src/ui/viewer/models/ModelSelectionComponent.less @@ -6,10 +6,10 @@ cursor: pointer; &.selected { - color: lighten(@primary-color, 15%); + color: @primary-color; } &:hover { - color: lighten(@primary-color, 30%); + color: lighten(@primary-color, 15%); } } diff --git a/src/ui/viewer/models/ModelSelectionComponent.tsx b/src/ui/viewer/models/ModelSelectionComponent.tsx index 62a09abb..675a4e15 100644 --- a/src/ui/viewer/models/ModelSelectionComponent.tsx +++ b/src/ui/viewer/models/ModelSelectionComponent.tsx @@ -1,10 +1,15 @@ import { List } from "antd"; +import { observer } from "mobx-react"; import React, { Component, ReactNode } from "react"; import { model_viewer_store } from "../../../stores/ModelViewerStore"; import "./ModelSelectionComponent.less"; +@observer export class ModelSelectionComponent extends Component { render(): ReactNode { + // Make sure we trigger mobx. + const current = model_viewer_store.current_player_model; + return (
{ - const selected = model_viewer_store.current_player_model === model; + const selected = current === model; return ( model_viewer_store.load_model(model)}>