-
Notifications
You must be signed in to change notification settings - Fork 879
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1193 from brave/ca-sync
fix multiple sync issues
- Loading branch information
1 parent
8333426
commit 0a8d0eb
Showing
21 changed files
with
756 additions
and
568 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
components/brave_sync/ui/components/commonDialogs/areYouSure.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this file, | ||
* You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
import * as React from 'react' | ||
|
||
// Components | ||
import { AlertBox } from 'brave-ui' | ||
|
||
// Feature-specific components | ||
import { Title } from 'brave-ui/features/sync' | ||
|
||
// Utils | ||
import { getLocale } from '../../../../common/locale' | ||
|
||
interface Props { | ||
onClickOk: () => void | ||
onClickCancel: () => void | ||
} | ||
|
||
export default class AreYouSure extends React.PureComponent<Props, {}> { | ||
render () { | ||
const { onClickOk, onClickCancel } = this.props | ||
return ( | ||
<AlertBox | ||
okString={getLocale('ok')} | ||
onClickOk={onClickOk} | ||
cancelString={getLocale('cancel')} | ||
onClickCancel={onClickCancel} | ||
> | ||
<Title level={1}>{getLocale('areYouSure')}</Title> | ||
</AlertBox> | ||
) | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
components/brave_sync/ui/components/commonDialogs/cancelDeviceSyncing.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this file, | ||
* You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
import * as React from 'react' | ||
|
||
// Components | ||
import { AlertBox } from 'brave-ui' | ||
|
||
// Feature-specific components | ||
import { Title, Paragraph } from 'brave-ui/features/sync' | ||
|
||
// Utils | ||
import { getLocale } from '../../../../common/locale' | ||
|
||
interface Props { | ||
onClickOk: () => void | ||
onClickCancel: () => void | ||
} | ||
|
||
export default class AreYouSure extends React.PureComponent<Props, {}> { | ||
render () { | ||
const { onClickOk, onClickCancel } = this.props | ||
return ( | ||
<AlertBox | ||
okString={getLocale('cancelDeviceSyncingButton')} | ||
onClickOk={onClickOk} | ||
cancelString={getLocale('cancel')} | ||
onClickCancel={onClickCancel} | ||
> | ||
<Title level={1}>{getLocale('areYouSure')}</Title> | ||
<Paragraph>{getLocale('cancelDeviceSyncing')}</Paragraph> | ||
</AlertBox> | ||
) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.