f72f71fd32
* initial market - routing - store - load market data * move drawer/drawerSlider / count/star badge to components/ui * filter market categories * shopItem with gem / gold * show count of purchable items * show count of purchable itemsshow drawer with currently owned items + DrawerHeaderTabs-Component * show featured gear * show Gear - filter by class - sort by (type, price, stats) - sort market items * Component: ItemRows - shows only the max items in one row (depending on the available width) * Sell Dialog + Balance Component * generic buy-dialog / attributes grid with highlight * buyItem - hide already owned gear * filter: hide locked/pinned - lock items if not enough gold * API: Sell multiple items * show avatar in buy-equipment-dialog with changed gear * market banner * misc fixes * filter by text * pin/unpin gear store actions * Sell API: amount as query-parameter * Update user.js * fixes * fix sell api amount test * add back stroke/fill currentColor * use scss variables
39 lines
920 B
JavaScript
39 lines
920 B
JavaScript
import { flattenAndNamespace } from 'client/libs/store/helpers/internals';
|
|
|
|
import * as common from './common';
|
|
import * as user from './user';
|
|
import * as tasks from './tasks';
|
|
import * as guilds from './guilds';
|
|
import * as party from './party';
|
|
import * as members from './members';
|
|
import * as auth from './auth';
|
|
import * as quests from './quests';
|
|
import * as challenges from './challenges';
|
|
import * as chat from './chat';
|
|
import * as notifications from './notifications';
|
|
import * as tags from './tags';
|
|
import * as hall from './hall';
|
|
import * as shops from './shops';
|
|
|
|
// Actions should be named as 'actionName' and can be accessed as 'namespace:actionName'
|
|
// Example: fetch in user.js -> 'user:fetch'
|
|
|
|
const actions = flattenAndNamespace({
|
|
common,
|
|
user,
|
|
tasks,
|
|
guilds,
|
|
party,
|
|
members,
|
|
auth,
|
|
quests,
|
|
challenges,
|
|
chat,
|
|
notifications,
|
|
tags,
|
|
hall,
|
|
shops,
|
|
});
|
|
|
|
export default actions;
|