Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(frontend): サーバーの表示をアイコンのみに切り替えられるように #14822

Open
wants to merge 6 commits into
base: develop
Choose a base branch
from

Conversation

MattyaDaihuku
Copy link

@MattyaDaihuku MattyaDaihuku commented Oct 23, 2024

What

GTLやSTL、HTLでのリモートユーザーのインスタンスをロゴのみの表示に切り替え可能にしました。

表示例

image

 GTL上ではこのように表示されます。
 PC環境ではインスタンスアイコンのホバー時にインスタンス名が表示されるようにしました。
 従来の表示よりTLが見やすくなり、リモートユーザーとローカルユーザーをアイコンで
 見分けられるようになります。

image

 また、ノートの詳細表示の際は従来の表示になるようにしています。

メニュー項目の追加

Screenshot 2024-11-17 14 44 04

 従来の表示が望まれる場合を考慮し、切り替えできるように実装
 リモートユーザーに表示(アイコンのみ)常に表示(アイコンのみ) を追加

前回のPRからの変更点

・instanceIconをMkAvatarに含めることで、ユーザーアイコンのクリック可能な領域を減らしてしまう問題を改善

Why

 TLの見やすさ向上のため

Fix #13623
Fix #14141

Additional info (optional)

特になし

Checklist

  • Read the contribution guide
  • Test working in a local environment
  • (If needed) Add story of storybook
  • (If needed) Update CHANGELOG.md
  • (If possible) Add tests

@github-actions github-actions bot added the packages/frontend Client side specific issue/PR label Oct 23, 2024
Copy link

codecov bot commented Oct 23, 2024

Codecov Report

Attention: Patch coverage is 90.74074% with 5 lines in your changes missing coverage. Please review.

Project coverage is 19.35%. Comparing base (3c81926) to head (906a776).

Files with missing lines Patch % Lines
...ackages/frontend/src/components/MkNoteDetailed.vue 0.00% 2 Missing ⚠️
packages/frontend/src/pages/settings/general.vue 0.00% 2 Missing ⚠️
packages/frontend/src/store.ts 0.00% 1 Missing ⚠️
Additional details and impacted files
@@             Coverage Diff              @@
##           develop   #14822       +/-   ##
============================================
- Coverage    39.96%   19.35%   -20.62%     
============================================
  Files         1563      728      -835     
  Lines       197878   103922    -93956     
  Branches      3646      991     -2655     
============================================
- Hits         79080    20113    -58967     
+ Misses      118193    83255    -34938     
+ Partials       605      554       -51     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@@ -47,10 +47,10 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
<article v-else :class="$style.article" @contextmenu.stop="onContextmenu">
<div v-if="appearNote.channel" :class="$style.colorBar" :style="{ background: appearNote.channel.color }"></div>
<MkAvatar :class="$style.avatar" :user="appearNote.user" :link="!mock" :preview="!mock"/>
<MkAvatar :class="$style.avatar" :user="appearNote.user" :link="!mock" :preview="!mock" :showInstance="!!showInstanceIcon && !!showTicker"/>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

!! はどういった意図で使われていますか?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

実装しているときにエラーが出ていたのでそのように記述したのですが、どのようなエラーが発生していたか忘れてしまいました...

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

必要なかったので!!を削除しました

@tai-cha
Copy link
Contributor

tai-cha commented Oct 29, 2024

インスタンスアイコンに透過がかかっている理由はどういったものですか?(アイコンとサーバーアイコンが同系色の場合に重なってインスタンスアイコンが見えなくなりそう)

@MattyaDaihuku
Copy link
Author

MattyaDaihuku commented Oct 29, 2024

ユーザーアイコンがサーバーアイコンで隠れてしまわないようにしました
透過しないほうが良いでしょうか?

@MattyaDaihuku
Copy link
Author

MattyaDaihuku commented Oct 29, 2024

インスタンスアイコンに透過がかかっている理由はどういったものですか?(アイコンとサーバーアイコンが同系色の場合に重なってインスタンスアイコンが見えなくなりそう)

一応ではありますが、サーバーアイコンの背景に--MI_THEME-panelを差し込むようにしています

@kakkokari-gtyih
Copy link
Contributor

別のスイッチとして持たせるのではなく、サーバーのバナー表示のメニューと統合させるので良さそう

@MattyaDaihuku
Copy link
Author

MattyaDaihuku commented Oct 29, 2024

別のスイッチとして持たせるのではなく、サーバーのバナー表示のメニューと統合させるので良さそう

表示しない

リモートユーザーに表示

常に表示

リモートユーザーに表示(アイコンのみ)

常に表示(アイコンのみ)

のような感じでしょうか?

@MattyaDaihuku
Copy link
Author

MkSelectに含めました

@MattyaDaihuku
Copy link
Author

Screenshot_2024-11-03-15-25-38-349_com.android.chrome-edit.jpg

サーバーアイコンを透過させなかったらこういう感じですね…

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

これはコンポーネントとして切り出さず、MkAvatar内に直接実装した方が自然かつパフォーマンスも良さそうです

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

わかりました!そうします!

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

MkAvatar内に直接実装しました

@MattyaDaihuku
Copy link
Author

コンフリクト解消

@MattyaDaihuku MattyaDaihuku requested a review from syuilo November 27, 2024 05:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
packages/frontend Client side specific issue/PR
Projects
Development

Successfully merging this pull request may close these issues.

リモートユーザーの所属サーバーをアイコンで表示する方式
4 participants