Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: powered by footer #3254

Merged
merged 1 commit into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/cowswap-frontend/src/assets/logo/cow-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions apps/cowswap-frontend/src/common/pure/PoweredFooter/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import { COW_PROTOCOL_LINK } from '@cowprotocol/common-const'
import { ExternalLink } from '@cowprotocol/ui'

import { Trans } from '@lingui/macro'
import cowIcon from 'assets/logo/cow-icon.svg'
import SVG from 'react-inlinesvg'
import styled from 'styled-components/macro'

import { UI } from 'common/constants/theme'

const Wrapper = styled.div`
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: center;
font-size: var(${UI.FONT_SIZE_SMALLER});
padding: 4px 0;
`

const StyledExternalLink = styled(ExternalLink)`
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
color: var(${UI.COLOR_TEXT2});

> svg {
--size: 14px;
width: var(--size);
height: var(--size);
}

> svg > g > path {
fill: var(${UI.COLOR_TEXT2});
}
`

export function PoweredFooter() {
return (
<Wrapper>
<StyledExternalLink href={COW_PROTOCOL_LINK}>
<SVG src={cowIcon} title="CoW Protocol" />
<Trans>Powered by CoW Protocol</Trans>
</StyledExternalLink>
</Wrapper>
)
}
8 changes: 4 additions & 4 deletions apps/cowswap-frontend/src/legacy/theme/baseTheme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -491,8 +491,9 @@ export const ThemedGlobalStyle = createGlobalStyle`
${UniThemedGlobalStyle}

html {
background-color: ${({ theme }) => theme.isInjectedWidgetMode ? 'transparent' : `var(${UI.COLOR_CONTAINER_BG_02})`};
${({ theme }) => theme.isInjectedWidgetMode ? 'transparent' : theme.body.background};
background-color: ${({ theme }) =>
theme.isInjectedWidgetMode ? 'transparent' : `var(${UI.COLOR_CONTAINER_BG_02})`};
${({ theme }) => (theme.isInjectedWidgetMode ? 'transparent' : theme.body.background)};
}

*, *:after, *:before { box-sizing:border-box; }
Expand Down Expand Up @@ -533,8 +534,7 @@ export const ThemedGlobalStyle = createGlobalStyle`
body #wcm-modal.wcm-overlay {
${({ theme }) => theme.mediaWidth.upToSmall`
align-items: flex-start;
`
}
`}

a {
text-decoration: none;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import { useThrottleFn } from 'common/hooks/useThrottleFn'
import { CurrencyArrowSeparator } from 'common/pure/CurrencyArrowSeparator'
import { CurrencyInputPanel, CurrencyInputPanelProps } from 'common/pure/CurrencyInputPanel'
import { CurrencyInfo } from 'common/pure/CurrencyInputPanel/types'
import { PoweredFooter } from 'common/pure/PoweredFooter'

import * as styledEl from './styled'
import { TradeWidgetModals } from './TradeWidgetModals'
Expand Down Expand Up @@ -201,6 +202,8 @@ export function TradeWidget(props: TradeWidgetProps) {
{isWrapOrUnwrap ? <WrapFlowActionButton /> : bottomContent}
</>
)}

{isInjectedWidgetMode && <PoweredFooter />}
</styledEl.ContainerBox>
</styledEl.Container>
</styledEl.Container>
Expand Down
28 changes: 13 additions & 15 deletions apps/cowswap-frontend/src/utils/iframeResizer.ts
Original file line number Diff line number Diff line change
@@ -1,29 +1,27 @@
import { useEffect } from 'react';
import { useEffect } from 'react'

export function IframeResizer() {
useEffect(() => {
// Initial height calculation and message
const sendHeightUpdate = () => {
const contentHeight = document.body.scrollHeight;
window.parent.postMessage({ type: 'iframeHeight', height: contentHeight }, '*');
};
sendHeightUpdate();
const contentHeight = document.body.scrollHeight
window.parent.postMessage({ type: 'iframeHeight', height: contentHeight }, '*')
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Format on save 😄 @shoom3301

}
sendHeightUpdate()

// Set up a MutationObserver to watch for changes in the DOM
const observer = new MutationObserver(() => {
// For simplicity, we'll send an update for any mutation, but you can add more specific checks if needed
sendHeightUpdate();
});
sendHeightUpdate()
})

// Start observing the entire body and its descendants for changes to the structure of the DOM
observer.observe(document.body, { attributes: true, childList: true, subtree: true });
observer.observe(document.body, { attributes: true, childList: true, subtree: true })

// Cleanup: Disconnect the observer when the component is unmounted
return () => {
observer.disconnect();
};
observer.disconnect()
}
}, [])

}, []);

return null;
}
return null
}
5 changes: 3 additions & 2 deletions libs/common-const/src/chainInfo.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { SupportedChainId } from '@cowprotocol/cow-sdk'
import { COW_PROTOCOL_LINK } from './common'

import GnosisChainLogo from '@cowprotocol/assets/cow-swap/network-gnosis-chain-logo.svg'
import GoerliLogo from '@cowprotocol/assets/cow-swap/network-goerli-logo.svg'
Expand Down Expand Up @@ -40,7 +41,7 @@ export const CHAIN_INFO: ChainInfoMap = {
networkType: NetworkType.L1,
docs: 'https://docs.cow.fi/',
explorer: 'https://etherscan.io/',
infoLink: 'https://cow.fi/',
infoLink: COW_PROTOCOL_LINK,
label: 'Ethereum',
name: 'mainnet',
explorerTitle: 'Etherscan',
Expand All @@ -51,7 +52,7 @@ export const CHAIN_INFO: ChainInfoMap = {
networkType: NetworkType.L1,
docs: 'https://docs.cow.fi/',
explorer: 'https://goerli.etherscan.io/',
infoLink: 'https://cow.fi/',
infoLink: COW_PROTOCOL_LINK,
label: 'Görli',
name: 'goerli',
explorerTitle: 'Etherscan',
Expand Down
1 change: 1 addition & 0 deletions libs/common-const/src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ const GITHUB_REPOSITORY = 'cowprotocol/cowswap'
export const CODE_LINK = 'https://github.com/' + GITHUB_REPOSITORY
export const RAW_CODE_LINK = 'https://raw.githubusercontent.com/' + GITHUB_REPOSITORY

export const COW_PROTOCOL_LINK = 'https://cow.fi/'
export const DOCS_LINK = 'https://docs.cow.fi'
export const CONTRACTS_CODE_LINK = 'https://github.com/cowprotocol/contracts'
export const DISCORD_LINK = 'https://discord.com/invite/cowprotocol'
Expand Down
Loading