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 2 commits into
base: develop
Choose a base branch
from

Conversation

MattyaDaihuku
Copy link

@MattyaDaihuku MattyaDaihuku commented Oct 23, 2024

What

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

  • 表示例

Screenshot 2024-07-06 20 34 28

 GTL上ではこのように表示される。
 従来の表示よりTLが見やすくなり、リモートユーザーとローカルユーザーをアイコンで
 見分けられる。

  • トグルの実装

Screenshot 2024-07-06 20 34 56

 従来の表示が望まれる場合を考慮し、切り替えできるように実装
 ノートのサーバー情報にて、表示しないを選択している場合はトグルを非表示に

Screenshot 2024-07-06 20 35 19

前回の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 91.48936% with 8 lines in your changes missing coverage. Please review.

Project coverage is 19.24%. Comparing base (f30d190) to head (40ac246).
Report is 6 commits behind head on develop.

Files with missing lines Patch % Lines
packages/frontend/src/store.ts 0.00% 4 Missing ⚠️
packages/frontend/src/pages/settings/general.vue 0.00% 3 Missing ⚠️
...ackages/frontend/src/components/MkInstanceIcon.vue 98.14% 1 Missing ⚠️
Additional details and impacted files
@@             Coverage Diff              @@
##           develop   #14822       +/-   ##
============================================
- Coverage    39.50%   19.24%   -20.27%     
============================================
  Files         1558      726      -832     
  Lines       196886   103508    -93378     
  Branches      3629      995     -2634     
============================================
- Hits         77788    19916    -57872     
+ Misses      118493    83038    -35455     
+ 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.

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

@tai-cha
Copy link
Contributor

tai-cha commented Oct 29, 2024

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

@MattyaDaihuku
Copy link
Author

MattyaDaihuku commented Oct 29, 2024

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

@MattyaDaihuku
Copy link
Author

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

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

@kakkokari-gtyih
Copy link
Contributor

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

@MattyaDaihuku
Copy link
Author

MattyaDaihuku commented Oct 29, 2024

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

表示しない

リモートユーザーに表示

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

常に表示

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

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

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
None yet
Development

Successfully merging this pull request may close these issues.

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