-
Notifications
You must be signed in to change notification settings - Fork 873
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add a loading state for adding, removing and reseting sync
- Loading branch information
1 parent
abd7595
commit 24867f7
Showing
6 changed files
with
183 additions
and
41 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
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> | ||
) | ||
} | ||
} |
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
Oops, something went wrong.