From 5ba5fb31546162513878dba773fabe8e241ee855 Mon Sep 17 00:00:00 2001 From: f0x52 Date: Wed, 23 Nov 2022 16:10:02 +0100 Subject: [PATCH] [chore/frogend] fix profile preview css, use role info (#1130) * fix profile preview css, use role info * remove unused redux selector --- web/source/css/profile.css | 1 + .../settings/components/fake-profile.jsx | 45 +++++++++++++++++++ web/source/settings/lib/api/oauth.js | 5 ++- web/source/settings/style.css | 16 ------- web/source/settings/user/profile.js | 14 +----- 5 files changed, 52 insertions(+), 29 deletions(-) create mode 100644 web/source/settings/components/fake-profile.jsx diff --git a/web/source/css/profile.css b/web/source/css/profile.css index 0be731c72..f371cfae7 100644 --- a/web/source/css/profile.css +++ b/web/source/css/profile.css @@ -145,6 +145,7 @@ main { font-size: 0.9rem; margin-right: 0.2rem; padding: 0.2rem; + margin-top: 0.1rem; padding-top: 0.1rem; border: 0.1rem solid $gray1; border-radius: $br; diff --git a/web/source/settings/components/fake-profile.jsx b/web/source/settings/components/fake-profile.jsx new file mode 100644 index 000000000..decd65d83 --- /dev/null +++ b/web/source/settings/components/fake-profile.jsx @@ -0,0 +1,45 @@ +/* + GoToSocial + Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + +"use strict"; + +const React = require("react"); +const Redux = require("react-redux"); + +module.exports = function FakeProfile({}) { + const account = Redux.useSelector(state => state.user.profile); + + return ( // Keep in sync with web/template/profile.tmpl +
+
+ {account.header +
+
+
+ {account.avatar +
{account.display_name.trim().length > 0 ? account.display_name : account.username}
+
+
@{account.username}
+ {(account.role && account.role != "user") && +
{account.role}
+ } +
+
+
+ ); +}; \ No newline at end of file diff --git a/web/source/settings/lib/api/oauth.js b/web/source/settings/lib/api/oauth.js index 76d0e9d2f..9410b4d8a 100644 --- a/web/source/settings/lib/api/oauth.js +++ b/web/source/settings/lib/api/oauth.js @@ -97,7 +97,10 @@ module.exports = function oauthAPI({ apiCall, getCurrentUrl }) { } // newer GoToSocial version will include a `role` in the Account data, check that first - // TODO: check account data for admin status + if (state.user.profile.role == "admin") { + dispatch(oauth.setAdmin(true)); + return true; + } // no role info, try fetching an admin-only route and see if we get an error return Promise.try(() => { diff --git a/web/source/settings/style.css b/web/source/settings/style.css index 3af52337a..2a32fc0ad 100644 --- a/web/source/settings/style.css +++ b/web/source/settings/style.css @@ -312,22 +312,6 @@ section.with-sidebar > div { display: grid; grid-template-columns: 70% 30%; - .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 { width: 100%; margin: 1rem; diff --git a/web/source/settings/user/profile.js b/web/source/settings/user/profile.js index dfd1eee95..5637642fd 100644 --- a/web/source/settings/user/profile.js +++ b/web/source/settings/user/profile.js @@ -27,6 +27,7 @@ const api = require("../lib/api"); const user = require("../redux/reducers/user").actions; const submit = require("../lib/submit"); +const FakeProfile = require("../components/fake-profile"); const { formFields } = require("../components/form-fields"); const { @@ -38,7 +39,6 @@ const { module.exports = function UserProfile() { const dispatch = Redux.useDispatch(); - const account = Redux.useSelector(state => state.user.profile); const instance = Redux.useSelector(state => state.instances.current); const allowCustomCSS = instance.configuration.accounts.allow_custom_css; @@ -55,17 +55,7 @@ module.exports = function UserProfile() {

Profile

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

Header