mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-04 04:59:40 +00:00
* feat(messages): big PMs refactor * add private messages route * move to page * WIP - header + begin with the sidebar * extract userLabel + style sidebar + extract converstation item * correct conversation item style * toggle switch style * add contributor / backer to conversation user-label * fix shadows * fix the conversations list (ignoring own sent) * selected conversation label * faceAvatar component * fix message / avatar height * fix message list / empty messages height * new message padding/styles/functionality - finished sidebar conversation styling - * fix loading messages + perfect-scrollbar * fix load more line * fix loading label * open new conversation from outside * if the user doesn't have avatar-data inside the conversation and does not exist anymore, just load/set the user name * search bar new icon / style * block using from conversation context-menu * fix lint * fix merge / lint * fix merge * first separate page * fix tooltips + full width private message + card max width + more responsive * separate conversations methods, to prevent circular deps * update eslint config * fix open new private message * remove unneeded close icon + fix toggle-switch layout * same content height on empty conversations - remove border / box-shadow * canLoadMore = false * remove inbox conditions on chat components * hide footer / fix empty sidebar * floating shadow * remove tooltip on selected conversation user + pm always full-size * show avatar on empty conversation * disable face-avatar * fix faceAvatar + story * fix loading conversation messages while switching the conversation * refresh private-messages page when you are already on it * add countbadge knob to change the example * fix lint * fix hide tooltip + align header correctly * disable perfect scroll * load messages on refresh event * fix header label + conversation actions not breaking layout on hover * add gifting banner to the max height calculation * correct chunk name Co-authored-by: negue <negue@users.noreply.github.com> Co-authored-by: Matteo Pagliazzi <matteopagliazzi@gmail.com>
75 lines
1.6 KiB
JavaScript
75 lines
1.6 KiB
JavaScript
export const userStyles = {
|
|
contributor: {
|
|
admin: true,
|
|
level: 9,
|
|
text: '',
|
|
},
|
|
items: {
|
|
gear: {
|
|
equipped: {
|
|
armor: 'armor_special_2',
|
|
head: 'head_special_2',
|
|
shield: 'shield_special_goldenknight',
|
|
headAccessory: 'headAccessory_base_0',
|
|
eyewear: 'eyewear_base_0',
|
|
weapon: 'weapon_special_1',
|
|
back: 'back_base_0',
|
|
},
|
|
costume: {
|
|
armor: 'armor_special_fallRogue',
|
|
head: 'head_special_fallRogue',
|
|
shield: 'shield_armoire_shieldOfDiamonds',
|
|
body: 'body_mystery_201706',
|
|
eyewear: 'eyewear_special_blackHalfMoon',
|
|
back: 'back_base_0',
|
|
headAccessory: 'headAccessory_special_wolfEars',
|
|
weapon: 'weapon_armoire_lamplighter',
|
|
},
|
|
},
|
|
},
|
|
preferences: {
|
|
hair: {
|
|
color: 'black', base: 0, bangs: 3, beard: 0, mustache: 0, flower: 0,
|
|
},
|
|
tasks: { groupByChallenge: false, confirmScoreNotes: false },
|
|
size: 'broad',
|
|
skin: 'wolf',
|
|
shirt: 'zombie',
|
|
chair: 'none',
|
|
sleep: true,
|
|
disableClasses: false,
|
|
background: 'midnight_castle',
|
|
costume: true,
|
|
},
|
|
stats: {
|
|
buffs: {
|
|
str: 0,
|
|
int: 0,
|
|
per: 0,
|
|
con: 0,
|
|
stealth: 0,
|
|
streaks: false,
|
|
snowball: false,
|
|
spookySparkles: false,
|
|
shinySeed: false,
|
|
seafoam: false,
|
|
},
|
|
training: {
|
|
int: 0, per: 0, str: 0, con: 0,
|
|
},
|
|
hp: 50,
|
|
mp: 158,
|
|
exp: 227,
|
|
gp: 464.31937261345155,
|
|
lvl: 17,
|
|
class: 'rogue',
|
|
points: 17,
|
|
str: 0,
|
|
con: 0,
|
|
int: 0,
|
|
per: 0,
|
|
toNextLevel: 380,
|
|
maxHealth: 50,
|
|
maxMP: 158,
|
|
},
|
|
};
|