mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-22 22:13:09 +02:00
fix(frontend): 周年の実績が閏年を考慮するように (#13525)
* fix(frontend): 周年の実績が閏年を考慮するように * まちがえた * Update Changelog * 変数の定義回数を減らす
This commit is contained in:
parent
c680e35aa0
commit
f4a5740412
2 changed files with 21 additions and 8 deletions
|
@ -9,6 +9,7 @@
|
||||||
- Enhance: リアクション・いいねの総数を表示するように
|
- Enhance: リアクション・いいねの総数を表示するように
|
||||||
- Enhance: リアクション受け入れが「いいねのみ」の場合はリアクション絵文字一覧を表示しないように
|
- Enhance: リアクション受け入れが「いいねのみ」の場合はリアクション絵文字一覧を表示しないように
|
||||||
- Fix: 一部のページ内リンクが正しく動作しない問題を修正
|
- Fix: 一部のページ内リンクが正しく動作しない問題を修正
|
||||||
|
- Fix: 周年の実績が閏年を考慮しない問題を修正
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
-
|
-
|
||||||
|
|
|
@ -187,14 +187,26 @@ export async function mainBoot() {
|
||||||
if ($i.followersCount >= 500) claimAchievement('followers500');
|
if ($i.followersCount >= 500) claimAchievement('followers500');
|
||||||
if ($i.followersCount >= 1000) claimAchievement('followers1000');
|
if ($i.followersCount >= 1000) claimAchievement('followers1000');
|
||||||
|
|
||||||
if (Date.now() - new Date($i.createdAt).getTime() > 1000 * 60 * 60 * 24 * 365) {
|
const createdAt = new Date($i.createdAt);
|
||||||
claimAchievement('passedSinceAccountCreated1');
|
const createdAtThreeYearsLater = new Date($i.createdAt);
|
||||||
}
|
createdAtThreeYearsLater.setFullYear(createdAtThreeYearsLater.getFullYear() + 3);
|
||||||
if (Date.now() - new Date($i.createdAt).getTime() > 1000 * 60 * 60 * 24 * 365 * 2) {
|
if (now >= createdAtThreeYearsLater) {
|
||||||
claimAchievement('passedSinceAccountCreated2');
|
|
||||||
}
|
|
||||||
if (Date.now() - new Date($i.createdAt).getTime() > 1000 * 60 * 60 * 24 * 365 * 3) {
|
|
||||||
claimAchievement('passedSinceAccountCreated3');
|
claimAchievement('passedSinceAccountCreated3');
|
||||||
|
claimAchievement('passedSinceAccountCreated2');
|
||||||
|
claimAchievement('passedSinceAccountCreated1');
|
||||||
|
} else {
|
||||||
|
const createdAtTwoYearsLater = new Date($i.createdAt);
|
||||||
|
createdAtTwoYearsLater.setFullYear(createdAtTwoYearsLater.getFullYear() + 2);
|
||||||
|
if (now >= createdAtTwoYearsLater) {
|
||||||
|
claimAchievement('passedSinceAccountCreated2');
|
||||||
|
claimAchievement('passedSinceAccountCreated1');
|
||||||
|
} else {
|
||||||
|
const createdAtOneYearLater = new Date($i.createdAt);
|
||||||
|
createdAtOneYearLater.setFullYear(createdAtOneYearLater.getFullYear() + 1);
|
||||||
|
if (now >= createdAtOneYearLater) {
|
||||||
|
claimAchievement('passedSinceAccountCreated1');
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (claimedAchievements.length >= 30) {
|
if (claimedAchievements.length >= 30) {
|
||||||
|
@ -229,7 +241,7 @@ export async function mainBoot() {
|
||||||
|
|
||||||
const latestDonationInfoShownAt = miLocalStorage.getItem('latestDonationInfoShownAt');
|
const latestDonationInfoShownAt = miLocalStorage.getItem('latestDonationInfoShownAt');
|
||||||
const neverShowDonationInfo = miLocalStorage.getItem('neverShowDonationInfo');
|
const neverShowDonationInfo = miLocalStorage.getItem('neverShowDonationInfo');
|
||||||
if (neverShowDonationInfo !== 'true' && (new Date($i.createdAt).getTime() < (Date.now() - (1000 * 60 * 60 * 24 * 3))) && !location.pathname.startsWith('/miauth')) {
|
if (neverShowDonationInfo !== 'true' && (createdAt.getTime() < (Date.now() - (1000 * 60 * 60 * 24 * 3))) && !location.pathname.startsWith('/miauth')) {
|
||||||
if (latestDonationInfoShownAt == null || (new Date(latestDonationInfoShownAt).getTime() < (Date.now() - (1000 * 60 * 60 * 24 * 30)))) {
|
if (latestDonationInfoShownAt == null || (new Date(latestDonationInfoShownAt).getTime() < (Date.now() - (1000 * 60 * 60 * 24 * 30)))) {
|
||||||
popup(defineAsyncComponent(() => import('@/components/MkDonation.vue')), {}, {}, 'closed');
|
popup(defineAsyncComponent(() => import('@/components/MkDonation.vue')), {}, {}, 'closed');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue