* WIP: Implementing quick reaction functionality * Making closing animations smoother - Added haptic feedback + timeouts for a smooth flow * Fixing clipping of post options on android * updating snapshots * Refactoring code & fixing styles - Fixed paddings element sizes to comply with design specs - Replaced reaction image to one with a higher resolution - Made sizes of emojis to be conditional on deviceWidth * Apply suggestions from code review * Adding component to avoid extra re-renders * Refactoring function call in reaction_button Am ashamed i didn't catch this before pushing the rest Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
17 lines
481 B
JavaScript
17 lines
481 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const REACTION_PICKER_HEIGHT = 72;
|
|
export const SMALL_ICON_BREAKPOINT = 410;
|
|
export const SMALL_CONTAINER_SIZE = 44;
|
|
export const LARGE_CONTAINER_SIZE = 48;
|
|
export const SMALL_ICON_SIZE = 28;
|
|
export const LARGE_ICON_SIZE = 32;
|
|
export const DEFAULT_EMOJIS = [
|
|
'thumbsup',
|
|
'smiley',
|
|
'white_check_mark',
|
|
'heart',
|
|
'eyes',
|
|
'raised_hands',
|
|
];
|