From 8474dd434a7a96e06433b54c2db8773f2821c7ad Mon Sep 17 00:00:00 2001 From: f0x Date: Sun, 11 Sep 2022 21:59:39 +0200 Subject: [PATCH] profile overview --- internal/web/settings-panel.go | 1 + web/source/css/base.css | 5 +++ .../components/{submit.js => submit.jsx} | 7 +++- web/source/settings-panel/style.css | 37 ++++++++++++++++++ web/source/settings-panel/user/profile.js | 38 ++++++++++--------- 5 files changed, 69 insertions(+), 19 deletions(-) rename web/source/settings-panel/components/{submit.js => submit.jsx} (85%) diff --git a/internal/web/settings-panel.go b/internal/web/settings-panel.go index 5eee3461b..d290e5441 100644 --- a/internal/web/settings-panel.go +++ b/internal/web/settings-panel.go @@ -41,6 +41,7 @@ func (m *Module) SettingsPanelHandler(c *gin.Context) { assetsPathPrefix + "/Fork-Awesome/css/fork-awesome.min.css", assetsPathPrefix + "/dist/_colors.css", assetsPathPrefix + "/dist/base.css", + assetsPathPrefix + "/dist/profile.css", assetsPathPrefix + "/dist/settings-panel-style.css", }, "javascript": []string{ diff --git a/web/source/css/base.css b/web/source/css/base.css index 274e13457..4829a28e7 100644 --- a/web/source/css/base.css +++ b/web/source/css/base.css @@ -280,6 +280,11 @@ input, select, textarea { } } +::placeholder { + opacity: 1; + color: $fg-reduced +} + input, textarea { padding-top: 0.1rem; padding-bottom: 0.1rem; diff --git a/web/source/settings-panel/components/submit.js b/web/source/settings-panel/components/submit.jsx similarity index 85% rename from web/source/settings-panel/components/submit.js rename to web/source/settings-panel/components/submit.jsx index 4d6250b5a..0187fc81f 100644 --- a/web/source/settings-panel/components/submit.js +++ b/web/source/settings-panel/components/submit.jsx @@ -24,7 +24,12 @@ module.exports = function Submit({onClick, label, errorMsg, statusMsg}) { return (
-
{errorMsg ? errorMsg : statusMsg}
+ {errorMsg.length > 0 && +
{errorMsg}
+ } + {statusMsg.length > 0 && +
{statusMsg}
+ }
); }; diff --git a/web/source/settings-panel/style.css b/web/source/settings-panel/style.css index cc9f1b01a..e2d6f20c6 100644 --- a/web/source/settings-panel/style.css +++ b/web/source/settings-panel/style.css @@ -182,6 +182,43 @@ input, select, textarea { flex-direction: column; gap: 1rem; + .overview { + display: grid; + grid-template-columns: 1fr auto; + + .basic { + margin-top: -4.5rem; + + .avatar { + height: 5rem; + width: 5rem; + } + + .displayname { + font-size: 1.3rem; + padding-top: 0; + padding-bottom: 0; + margin-top: 0.7rem; + } + } + + .files { + padding: 1rem; + + h3 { + margin-top: 0; + } + + div:first-child { + margin-bottom: 1rem; + } + + span { + font-style: italic; + } + } + } + input, textarea { width: 100%; line-height: 1.5rem; diff --git a/web/source/settings-panel/user/profile.js b/web/source/settings-panel/user/profile.js index cf070be8d..71028f4be 100644 --- a/web/source/settings-panel/user/profile.js +++ b/web/source/settings-panel/user/profile.js @@ -21,7 +21,6 @@ const Promise = require("bluebird"); const React = require("react"); const Redux = require("react-redux"); -const { useErrorHandler } = require("react-error-boundary"); const Submit = require("../components/submit"); @@ -89,31 +88,34 @@ module.exports = function UserProfile() { return (
-

@{account.username}'s Profile Info

-
- -
- {account.header +

Profile

+
+
+
+ {account.header +
+
+
+ {account.avatar +
{account.display_name.trim().length > 0 ? account.display_name : account.username}
+
@{account.username}
+
+
+
+

Header

- {headerFile ? headerFile.name : ""} + {headerFile ? headerFile.name : "no file selected"}
-
- -
-
- -
- {account.avatar
+

Avatar

- {avatarFile ? avatarFile.name : ""} + {avatarFile ? avatarFile.name : "no file selected"}
-
- + setDisplayName(e.target.value)} placeholder="A GoToSocial user"/>
@@ -121,7 +123,7 @@ module.exports = function UserProfile() {