Files
habitica/website/common/script/libs/shops-seasonal.config.js
2021-09-21 16:16:52 -05:00

50 lines
1.2 KiB
JavaScript

import find from 'lodash/find';
import upperFirst from 'lodash/upperFirst';
import moment from 'moment';
import {
EVENTS,
SEASONAL_SETS,
} from '../content/constants';
const CURRENT_EVENT = find(
EVENTS, event => moment().isBetween(event.start, event.end),
);
const SHOP_OPEN = CURRENT_EVENT && ['winter', 'spring', 'summer', 'fall'].includes(CURRENT_EVENT.season);
export default {
opened: SHOP_OPEN,
currentSeason: SHOP_OPEN ? upperFirst(CURRENT_EVENT.season) : 'Closed',
dateRange: {
start: CURRENT_EVENT ? moment(CURRENT_EVENT.start) : moment().subtract(1, 'days').toDate(),
end: CURRENT_EVENT ? moment(CURRENT_EVENT.end) : moment().subtract(1, 'seconds').toDate(),
},
availableSets: SHOP_OPEN
? [
...SEASONAL_SETS[CURRENT_EVENT.season],
]
: [],
pinnedSets: SHOP_OPEN
? {
healer: 'fall2021FlameSummonerHealerSet',
rogue: 'fall2021OozeRogueSet',
warrior: 'fall2021HeadlessWarriorSet',
wizard: 'fall2021BrainEaterMageSet',
}
: {},
availableSpells: SHOP_OPEN && moment().isBefore('2021-07-06T08:00-04:00')
? [
'seafoam',
]
: [],
availableQuests: [],
featuredSet: 'fall2020DeathsHeadMothHealerSet',
};