9 |
13 |
16 |
17 |
18 |
22 |
25 |
26 |
27 |
28 | {isVisible && (
29 |
33 | {`인사이트 > 메인 > 리스트_콘텐츠 > 콘텐츠`}
34 |
35 | )}
36 |
37 | );
38 | }
39 |
--------------------------------------------------------------------------------
/src/server/generateDataEvent.ts:
--------------------------------------------------------------------------------
1 | import dotenv from 'dotenv';
2 | import fs from 'fs';
3 | import { GoogleSpreadsheet, GoogleSpreadsheetRow } from 'google-spreadsheet';
4 |
5 | dotenv.config();
6 |
7 | type EventNameObject = {
8 | [feature: string]: {
9 | [page: string]: {
10 | [at: string]: {
11 | [target: string]: {
12 | [action: string]: string;
13 | };
14 | };
15 | };
16 | };
17 | };
18 |
19 | type EventPropertyObject = {
20 | [feature: string]: {
21 | [page: string]: {
22 | [at: string]: {
23 | [target: string]: {
24 | [action: string]: Record