This repository has been archived on 2024-03-13. You can view files and clone it, but cannot push or open issues or pull requests.
timekeeper/store/index.js

114 lines
2.6 KiB
JavaScript
Raw Normal View History

import Decimal from 'break_infinity.js'
2022-01-07 01:17:26 +00:00
export const state = () => ({
activeTabIndex: 0,
tabs: [
{
id: 'instruments',
label: '1',
title: 'Tab 1 Title',
darkColor: 'yellow-600',
lightColor: 'yellow-200',
},
{
id: 'upgrades',
label: '2',
title: 'Tab 2 Title',
darkColor: 'blue-600',
lightColor: 'blue-200',
},
{
id: 'fathertime',
label: '3',
title: 'Tab 3 Title',
darkColor: 'violet-600',
lightColor: 'violet-200',
},
{
id: 'timemachine',
label: '4',
title: 'Tab 4 Title',
darkColor: 'lime-600',
lightColor: 'lime-200',
},
{
id: 'achievements',
label: '5',
title: 'Tab 5 Title',
darkColor: 'orange-600',
lightColor: 'orange-200',
},
{
id: 'prestige',
label: '6',
title: 'Tab 6 Title',
darkColor: 'teal-600',
lightColor: 'teal-200',
},
],
currency: new Decimal(0),
currencyTotal: new Decimal(0),
processes: [
{
device: 'Star Chart',
worker: 'Shaman',
deviceCount: new Decimal(0),
workerCount: 0,
unlockThreshold: { tech: null, currency: 0 },
},
{
device: 'Stone Calendar',
worker: 'Stonecarver',
deviceCount: new Decimal(0),
workerCount: 0,
unlockThreshold: { tech: null, currency: 10000 },
},
{
device: 'Astrolabes',
worker: 'Mathematician',
deviceCount: new Decimal(0),
workerCount: 0,
unlockThreshold: { tech: 0, currency: new Decimal(10e5) },
},
],
upgrades: [
{
name: 'Mathematics',
price: 100,
purchased: false,
},
],
2022-01-07 01:17:26 +00:00
})
export const getters = {
activeTab: (state) => {
return state.tabs[state.activeTabIndex]
},
activeColorClasses: (state) => (index) => {
const { darkColor, lightColor } = state.tabs[index]
return `bg-${lightColor} text-${darkColor}`
},
inactiveColorClasses: (state) => (index) => {
const { darkColor, lightColor } = state.tabs[index]
return `bg-${darkColor} text-${lightColor}`
},
activeTabColorClasses: (state, getters) => {
return getters.activeColorClasses(state.activeTabIndex)
},
}
export const mutations = {
setActiveTab: (state, index) => {
state.activeTabIndex = index
},
addCurrency: (state, value) => {
state.currency = Decimal.add(state.currency, value)
state.currencyTotal = Decimal.add(state.currencyTotal, value)
},
spendCurrency: (state, value) => {
value = Decimal.mul(value, -1)
state.currency = Decimal.add(state.currency, value)
}
2022-01-07 01:17:26 +00:00
}