vn-verdnaturachat/app/presentation/RoomItem/styles.ts

122 lines
2.2 KiB
TypeScript
Raw Normal View History

import { PixelRatio, StyleSheet } from 'react-native';
2019-04-18 20:57:35 +00:00
import sharedStyles from '../../views/Styles';
export const ROW_HEIGHT = 75 * PixelRatio.getFontScale();
export const ROW_HEIGHT_CONDENSED = 60 * PixelRatio.getFontScale();
export const ACTION_WIDTH = 80;
export const SMALL_SWIPE = ACTION_WIDTH / 2;
export const LONG_SWIPE = ACTION_WIDTH * 3;
2019-04-18 20:57:35 +00:00
export default StyleSheet.create<any>({
flex: {
flex: 1
},
2019-04-18 20:57:35 +00:00
container: {
flexDirection: 'row',
alignItems: 'center',
paddingLeft: 14,
2019-04-18 20:57:35 +00:00
height: ROW_HEIGHT
},
containerCondensed: {
height: ROW_HEIGHT_CONDENSED
},
2019-04-18 20:57:35 +00:00
centerContainer: {
flex: 1,
paddingVertical: 10,
paddingRight: 14,
2019-12-04 16:39:53 +00:00
borderBottomWidth: StyleSheet.hairlineWidth
2019-04-18 20:57:35 +00:00
},
title: {
flex: 1,
fontSize: 17,
...sharedStyles.textMedium
},
alert: {
...sharedStyles.textSemibold
},
row: {
flex: 1,
flexDirection: 'row',
alignItems: 'flex-start'
},
wrapUpdatedAndBadge: {
alignItems: 'flex-end'
},
2019-04-18 20:57:35 +00:00
titleContainer: {
width: '100%',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center'
},
date: {
fontSize: 13,
marginLeft: 4,
...sharedStyles.textRegular
},
updateAlert: {
...sharedStyles.textSemibold
},
status: {
marginRight: 2
2019-04-18 20:57:35 +00:00
},
markdownText: {
flex: 1,
fontSize: 14,
2019-12-04 16:39:53 +00:00
...sharedStyles.textRegular
2019-04-18 20:57:35 +00:00
},
avatar: {
marginRight: 10
},
upperContainer: {
overflow: 'hidden'
},
actionsContainer: {
position: 'absolute',
left: 0,
right: 0,
height: ROW_HEIGHT
},
actionsLeftContainer: {
flexDirection: 'row',
position: 'absolute',
left: 0,
right: 0,
height: ROW_HEIGHT
},
actionLeftButtonContainer: {
position: 'absolute',
height: ROW_HEIGHT,
justifyContent: 'center',
top: 0,
right: 0
},
actionRightButtonContainer: {
position: 'absolute',
height: ROW_HEIGHT,
justifyContent: 'center',
2019-12-04 16:39:53 +00:00
top: 0
},
actionButton: {
width: ACTION_WIDTH,
height: '100%',
alignItems: 'center',
justifyContent: 'center'
[NEW] Add/Create/Remove channel on a team (#3090) * Added Create Team * Added actionTypes, actions, ENG strings for Teams and updated NewMessageView * Added createTeam sagas, createTeam reducer, new Team string and update CreateChannelView * Remove unnecessary actionTypes, reducers and sagas, e2e tests and navigation to team view * Minor tweaks * Show TeamChannelsView only if joined the team * Minor tweak * Added AddChannelTeamView * Added permissions, translations strings for teams, deleteTeamRoom and addTeamRooms, AddExistingChannelView, updated CreateChannelView, TeamChannelsView * Refactor touch component and update removeRoom and deleteRoom methods * Minor tweaks * Minor tweaks for removing channels and addExistingChannelView * Added missing events and fixed channels list * Minor tweaks for refactored touch component * Minor tweaks * Remove unnecesary changes, update TeamChannelsView, AddExistingChannelView, AddChannelTeamView, createChannel, goRoom and Touchable * Add screens to ModalStack, events, autoJoin, update createChannel, addRoomsToTeam and Touchable * Minor tweak * Update loadMessagesForRoom.js * Updated schema, tag component, touch, AddChannelTeamView, AddExistingChannelView, ActionSheet Item * Fix unnecessary changes * Add i18n, update createChannel, AddExistingChannelTeamView, AddChannelTeamView, RightButton and TeamChannelsView * Updated styles, added tag story * Minor tweak * Minor tweaks * Auto-join tweak * Minor tweaks * Minor tweak on search * One way to refactor :P * Next level refactor :) * Fix create group dm * Refactor renderItem * Minor bug fixes * Fix stories Co-authored-by: Diego Mello <diegolmello@gmail.com>
2021-05-19 21:14:42 +00:00
},
tagContainer: {
alignSelf: 'center',
alignItems: 'center',
borderRadius: 4,
marginHorizontal: 4
},
tagText: {
fontSize: 13,
paddingHorizontal: 4,
...sharedStyles.textSemibold
},
typeIcon: {
height: ROW_HEIGHT,
justifyContent: 'center'
2019-04-18 20:57:35 +00:00
}
});