-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix-ocr-to-form
- Loading branch information
Showing
7 changed files
with
89 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import React, { useContext } from 'react'; | ||
import Joyride, { STATUS } from 'react-joyride'; | ||
import { AppContext } from '../context/AppContext'; | ||
|
||
const steps = [ | ||
{ | ||
target: 'body', | ||
content: 'Welcome to the Expense Chart! This guide will walk you through the features of this powerful visualization tool.', | ||
placement: 'center', | ||
disableBeacon: true, | ||
}, | ||
{ | ||
target: '#report-frame', | ||
content: 'This is your expense chart. It provides a detailed view of your spending patterns.', | ||
}, | ||
{ | ||
target: '#report-frame', | ||
content: 'In the top left corner, you can switch between Mobile and Desktop views.', | ||
}, | ||
{ | ||
target: '#report-frame', | ||
content: 'The three-dot menu in the top right allows you to export your data in various formats.', | ||
}, | ||
{ | ||
target: '#report-frame', | ||
content: 'Use the date range selector at the top to filter your expenses for specific time periods.', | ||
}, | ||
{ | ||
target: 'body', | ||
content: 'Explore your spending patterns and gain insights into your financial habits. Remember to refer back to these features as you use the chart!', | ||
placement: 'center', | ||
}, | ||
]; | ||
|
||
const ExpenseChartJoyride = () => { | ||
const { runChartTour, setRunChartTour } = useContext(AppContext); | ||
|
||
const handleJoyrideCallback = (data) => { | ||
const { status } = data; | ||
if ([STATUS.FINISHED, STATUS.SKIPPED].includes(status)) { | ||
setRunChartTour(false); | ||
} | ||
}; | ||
|
||
return ( | ||
<Joyride | ||
steps={steps} | ||
run={runChartTour} | ||
continuous={true} | ||
showSkipButton={true} | ||
showProgress={true} | ||
styles={{ | ||
options: { | ||
zIndex: 10000, | ||
}, | ||
}} | ||
callback={handleJoyrideCallback} | ||
/> | ||
); | ||
}; | ||
|
||
export default ExpenseChartJoyride; |
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
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