move a part of SessionSrollButton to styled component

pull/1387/head
Audric Ackermann 4 years ago
parent 857bea50ea
commit e0fd910fa4
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -32,12 +32,7 @@
UNRESTRICTED: 3,
};
const {
Conversation,
Contact,
Message,
PhoneNumber,
} = window.Signal.Types;
const { Conversation, Contact, Message, PhoneNumber } = window.Signal.Types;
const {
upgradeMessageSchema,
loadAttachmentData,

@ -1335,12 +1335,7 @@ input {
}
}
.session-scroll-button {
animation: fadein $session-fadein-duration;
position: fixed;
z-index: 2;
right: 60px;
.messages-container {
.session-icon-button {
display: flex;
justify-content: center;
@ -1349,12 +1344,16 @@ input {
width: 40px;
border-radius: 50%;
opacity: 1;
background-color: $session-shade-2;
box-shadow: 0px 0px 10px 0px rgba($session-color-white, 0.1);
@include themify($themes) {
background-color: themed('cellBackground');
box-shadow: themed('sessionShadow');
}
svg path {
transition: $session-transition-duration;
opacity: 0.6;
@include themify($themes) {
fill: themed('textColor');
}
}
&:hover svg path {

@ -110,6 +110,7 @@ $session-compose-margin: 20px;
width: $session-left-pane-sections-container-width;
display: inline-flex;
flex-direction: column;
overflow: auto;
@include themify($themes) {
border-right: themed('sessionBorder');
}

@ -1,31 +1,34 @@
import React from 'react';
import React, { useContext } from 'react';
import styled, { ThemeContext } from 'styled-components';
import { SessionIconButton, SessionIconSize, SessionIconType } from './icon';
interface Props {
type Props = {
onClick?: () => any;
show?: boolean;
}
};
export class SessionScrollButton extends React.PureComponent<Props> {
constructor(props: any) {
super(props);
}
const SessionScrollButtonDiv = styled.div`
position: fixed;
z-index: 2;
right: 60px;
animation: fadein ${props => props.theme.common.animations.defaultDuration};
`;
public render() {
return (
<>
{this.props.show && (
<div className="session-scroll-button">
<SessionIconButton
iconType={SessionIconType.Chevron}
iconSize={SessionIconSize.Huge}
iconColor={'#FFFFFF'}
onClick={this.props.onClick}
/>
</div>
)}
</>
);
}
}
export const SessionScrollButton = (props: Props) => {
const themeContext = useContext(ThemeContext);
return (
<>
{props.show && (
<SessionScrollButtonDiv theme={themeContext}>
<SessionIconButton
iconType={SessionIconType.Chevron}
iconSize={SessionIconSize.Huge}
onClick={props.onClick}
/>
</SessionScrollButtonDiv>
)}
</>
);
};

@ -25,6 +25,9 @@ const common = {
md: '15px',
lg: '20px',
},
animations: {
defaultDuration: '0.25s',
},
};
export const lightTheme: DefaultTheme = {

3
ts/styled.d.ts vendored

@ -14,6 +14,9 @@ declare module 'styled-components' {
md: string;
lg: string;
};
animations: {
defaultDuration: string;
};
};
colors: {
accent: string;

Loading…
Cancel
Save