Implemented Cron - untested

This commit is contained in:
Zain 2021-10-30 22:34:41 +05:30
parent b7b1c3848f
commit 04f207db5d
No known key found for this signature in database
GPG key ID: 84AD8F072D45C37F
3 changed files with 52 additions and 3 deletions

View file

@ -1,6 +1,6 @@
import * as React from "react"; import * as React from "react";
import { Notice } from "obsidian"; import { Notice } from "obsidian";
import { getStats, scoreTask } from "./habiticaAPI" import { getStats, scoreTask, makeCronReq } from "./habiticaAPI"
import Statsview from "./Components/Statsview" import Statsview from "./Components/Statsview"
import Taskview from "./Components/Taskview" import Taskview from "./Components/Taskview"
@ -12,6 +12,7 @@ class App extends React.Component<any,any> {
this.username = this.props.plugin.settings.userID this.username = this.props.plugin.settings.userID
this.credentials = this.props.plugin.settings.apiToken this.credentials = this.props.plugin.settings.apiToken
this.state = { this.state = {
needCron: false,
isLoaded: false, isLoaded: false,
user_data: { user_data: {
profile: { profile: {
@ -20,7 +21,8 @@ class App extends React.Component<any,any> {
stats: { stats: {
hp: 0, hp: 0,
lvl: 0, lvl: 0,
} },
lastCron: "",
}, },
todos: [], todos: [],
dailys: [], dailys: [],
@ -32,6 +34,31 @@ class App extends React.Component<any,any> {
} }
CheckCron(props: any) {
let cronDate = new Date(props.lastCron).getTime();
let now = new Date().getTime();
if (now > cronDate + 86400000) {
return(
<div className="cron">
<div id="cronMessage"> Welcome back! Please check your tasks for the last day and hit continue to get your daily rewards. </div>
<button onClick={() => {this.runCron()}}>Continue</button>
</div>
);
}
else {
console.log("Cron is up to date");
return null
};
}
runCron() {
makeCronReq(this.username, this.credentials)
.then(res => {
this.setState({
needCron: false
})
});
this.reloadData();
}
async reloadData() { async reloadData() {
try { try {
let response = await getStats(this.username, this.credentials); let response = await getStats(this.username, this.credentials);
@ -40,6 +67,7 @@ class App extends React.Component<any,any> {
new Notice('Login Failed, Please check credentials and try again!'); new Notice('Login Failed, Please check credentials and try again!');
} }
else { else {
console.log(result);
this.setState({ this.setState({
isLoaded: true, isLoaded: true,
user_data: result, user_data: result,
@ -124,6 +152,7 @@ class App extends React.Component<any,any> {
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" /> <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<Statsview user_data={this.state.user_data} /> <Statsview user_data={this.state.user_data} />
<Taskview data={this.state.tasks} handleChangeTodos={this.handleChangeTodos} handleChangeDailys={this.handleChangeDailys} handleChangeHabits={this.handleChangeHabits}/> <Taskview data={this.state.tasks} handleChangeTodos={this.handleChangeTodos} handleChangeDailys={this.handleChangeDailys} handleChangeHabits={this.handleChangeHabits}/>
<this.CheckCron lastCron={this.state.user_data.lastCron}/>
</div> </div>
); );
} }

View file

@ -27,7 +27,7 @@ export async function scoreTask(username: string, credentials: string, taskID: s
}) })
return(response) return(response)
} }
export async function makeCronReq(username: string, credentials: string, taskID: string){ export async function makeCronReq(username: string, credentials: string){
const url = "https://habitica.com/api/v3/cron"; const url = "https://habitica.com/api/v3/cron";
const response = fetch(url, { const response = fetch(url, {
method: 'POST', method: 'POST',

View file

@ -158,4 +158,24 @@ ul li:not(.task-list-item)::before {
padding: 0; padding: 0;
font-weight: bold; font-weight: bold;
text-shadow: 0 0 0.5em transparent; text-shadow: 0 0 0.5em transparent;
}
body > div.app-container.is-left-sidedock-collapsed.is-right-sidedock-collapsed > div.horizontal-main-container > div > div.workspace-split.mod-horizontal.mod-right-split > div.workspace-tabs > div.workspace-leaf > div > div.view-content > div > div.cron > button {
margin: auto;
margin-bottom: 5px;
}
.cron {
display: inline-grid;
justify-content: center;
text-align: center;;
margin-top: 5px;
margin-left: 10%;
margin-right: 10%;
margin-bottom: 10px;
background-color: var(--background-secondary-alt);
border-radius: 10px;
}
#cronMessage {
margin: 20px;
margin-bottom: 10px;
color: var(--text-normal)
} }