calendarInfo.api.js 2.57 KB
Newer Older
Choi Ga Young's avatar
Choi Ga Young committed
1
2
import { DEBUG, enablePromise } from 'react-native-sqlite-storage';
import getDb from './moneyDB'
Choi Ga Young's avatar
Choi Ga Young committed
3
import { getDateStr } from '../utils/dateFunction';
Choi Ga Young's avatar
Choi Ga Young committed
4
5
6
7

DEBUG(true);
enablePromise(true);

8
const getFullData = async ({ year, month }) => {
Choi Ga Young's avatar
Choi Ga Young committed
9
10
  const thisFirst = new Date(year, month, 1);
  const thisLast = new Date(year, month + 1, 0);
11

Choi Ga Young's avatar
Choi Ga Young committed
12
13
14
  const db = await getDb();
  return new Promise((res, rej) => {
    db.transaction(async (tx) => {
Choi Ga Young's avatar
Choi Ga Young committed
15
      const [txn, results] = await tx.executeSql(`SELECT date, type_id, sum(price) as total from money where date BETWEEN "${getDateStr(thisFirst)}" and "${getDateStr(thisLast)}" group by date, type_id`);
Choi Ga Young's avatar
Choi Ga Young committed
16
      const temp = [];
17
18
19
20
21
22
23
      if (results.rows.length != 0) {
        if (results.rows.item(0).type_id === 1) {
          temp.push({ date: results.rows.item(0).date, type: { 'input': results.rows.item(0).total } })
        }
        if (results.rows.item(0).type_id === 2) {
          temp.push({ date: results.rows.item(0).date, type: { 'output': results.rows.item(0).total } })
        }
Choi Ga Young's avatar
Choi Ga Young committed
24
      }
25

26
27
28
29
30
31
      for (let i = 1; i < results.rows.length; i++) {
        if (results.rows.item(i).date === results.rows.item(i - 1).date) {
          temp.pop()
          let { 1: input, 2: output } = {
            [results.rows.item(i).type_id]: results.rows.item(i).total,
            [results.rows.item(i - 1).type_id]: results.rows.item(i - 1).total,
Choi Ga Young's avatar
Choi Ga Young committed
32
          }
33
          temp.push({ date: results.rows.item(i).date, type: { 'input': input, 'output': output } })
Choi Ga Young's avatar
Choi Ga Young committed
34
        } else {
35
36
37
38
39
40
          if (results.rows.item(i).type_id === 1) {
            temp.push({ date: results.rows.item(i).date, type: { 'input': results.rows.item(i).total } })
          }
          if (results.rows.item(i).type_id === 2) {
            temp.push({ date: results.rows.item(i).date, type: { 'output': results.rows.item(i).total } })
          }
Choi Ga Young's avatar
Choi Ga Young committed
41
42
        }
      }
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
      res(temp)
    })
  })
}

const detailData = async ({ findDate }) => {
  const db = await getDb();
  return new Promise((res, rej) => {
    db.transaction(async (tx) => {
      const [txn, results] = await tx.executeSql(`SELECT money.type_id, category_name, contents, price FROM money inner JOIN categories on money.category_id = categories.category_id WHERE date="${findDate}"`);
      const temp = [];
      for (let i = 0; i < results.rows.length; i++) {
        temp.push({ id: i, category: results.rows.item(i).category_name, contents: results.rows.item(i).contents, price: results.rows.item(i).price, type: results.rows.item(i).type_id })
      }
      res(temp);
Choi Ga Young's avatar
Choi Ga Young committed
58
59
60
61
62
    })
  })
}

const calApi = {
63
64
  getFullData,
  detailData
Choi Ga Young's avatar
Choi Ga Young committed
65
66
67
}

export default calApi;