-
Notifications
You must be signed in to change notification settings - Fork 1
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
一般ユーザーは募金ページを閲覧不可にした #799
一般ユーザーは募金ページを閲覧不可にした #799
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
動作は〇です!
微修正と一点気になったのでコメント付けました。
今の状態だとレンダリングされ、募金一覧が一瞬だけ見えてからページ遷移しています。user権限の人には見せたくないものだと思うのでレンダリング前にページ遷移するとかの対策が必要に思えます。私も調べたけどうまくできませんでした。
試したこと(失敗)→SSRにリダイレクトを組み込む、useLayoutEffectを使う
mysql/db/users.sql
Outdated
@@ -21,4 +21,4 @@ INSERT into users (name, bureau_id, role_id) values ('技大太郎2', 6, 2); | |||
INSERT into users (name, bureau_id, role_id) values ('技大太郎3', 3, 3); | |||
|
|||
-- 一般ユーザー(財務局員) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
-- 一般ユーザー(財務局員) | |
-- 財務局員 |
上の方で財務局長となっているので名称合わせてもいいかもですね
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
修正しました
[fix]コメントの修正
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
応急処置としてですが、
レンダリングされてからrouter.pushでページ遷移されるから一瞬だけ見えちゃうので
286行目にroleIDが1の時表示させない処理を追加した方よさげかも
{fundInformationViews &&
user.roleID !== 1 &&
fundInformationViews.map((fundViewItem: FundInformationView, index) => (
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
修正しました
[feat]一般ユーザー場合データを非表示にする
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
resolve #798
概要
テスト項目
備考