forked from stefanrenne/nl.stefanrenne.tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.ts
More file actions
148 lines (133 loc) · 4.74 KB
/
app.ts
File metadata and controls
148 lines (133 loc) · 4.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
'use strict';
import Homey from 'homey';
import {v4 as uuidv4} from 'uuid';
import { Task, Store } from './lib/storage';
module.exports = class MyApp extends Homey.App {
private allIdentifiers = new Set<string>();
private store = new Store(this.homey);
/**
* onInit is called when the app is initialized.
*/
async onInit() {
await this.updateAllIdentifiers();
this.registerOpenTaskListeners();
this.registerCreateTaskListeners();
this.registerCompleteTaskListeners();
this.registerCompleteAllTasksListeners();
this.registerGetAllTasksListeners();
}
async getAllCards(): Promise<(Homey.FlowCardAction | Homey.FlowCardTrigger | Homey.FlowCardCondition)[]> {
let allCards: (Homey.FlowCardAction | Homey.FlowCardTrigger | Homey.FlowCardCondition)[] = [];
for (const flowTypeId in this.homey.manifest.flow) {
if (Object.hasOwnProperty.call(this.homey.manifest.flow, flowTypeId)) {
const flowType = this.homey.manifest.flow[flowTypeId];
for (const flowcard of flowType) {
if (flowcard.args && flowcard.args.some((flow: any) => flow.name == 'identifier')) {
switch (flowTypeId) {
case "actions":
allCards.push(this.homey.flow.getActionCard(flowcard.id))
break;
case "triggers":
allCards.push(this.homey.flow.getTriggerCard(flowcard.id))
break;
case "conditions":
allCards.push(this.homey.flow.getConditionCard(flowcard.id))
break;
default:
break;
}
}
}
}
}
return allCards
}
async updateAllIdentifiers() {
const allCards = await this.getAllCards()
const uniqueIdentifiers = await allCards.reduce(
async (resultPromise, card) => {
let result = await resultPromise;
let args = await card.getArgumentValues();
args.filter(x => x.identifier).map(x => x.identifier.name).forEach(identifier => {
result.add(identifier);
})
return result;
}, Promise.resolve(new Set<string>()));
this.allIdentifiers = uniqueIdentifiers
}
/** Helpers */
registerAutocompleteListenerForCard(card: Homey.FlowCardAction | Homey.FlowCardTrigger | Homey.FlowCardCondition, canRegisterNewIdentifier: boolean) {
card.registerArgumentAutocompleteListener('identifier', async (query: string, args: any) => {
let results = Array.from(this.allIdentifiers)
.filter((result) => {
return query.length == 0 || result.toLowerCase().includes(query.toLowerCase());
})
.sort()
.map(identifier => {
return {
name: identifier,
description: ''
}
});
if (canRegisterNewIdentifier && query && query.length > 0 && !(results.length == 1 && results[0].name.toLowerCase() == query.toLowerCase())) {
results.unshift({
name: query,
description: this.homey.__('newIdentifier')
});
}
return results;
});
card.on('update', async () => {
await this.updateAllIdentifiers();
});
}
/** TaskListeners */
registerOpenTaskListeners() {
const card = this.homey.flow.getConditionCard('open_task')
this.registerAutocompleteListenerForCard(card, false)
card.registerRunListener((args) => {
const identifier: string = args.identifier.name;
return this.store.get().some((element) => element.identifier === identifier);
});
}
registerCreateTaskListeners() {
const card = this.homey.flow.getActionCard('create_task')
this.registerAutocompleteListenerForCard(card, true)
card.registerRunListener((args) => {
const title: string = args.title;
const identifier: string | undefined = (args.identifier) ? args.identifier.name : undefined;
this.store.add(title, identifier);
return {
title
};
});
}
registerCompleteTaskListeners() {
const card = this.homey.flow.getActionCard('complete_task')
this.registerAutocompleteListenerForCard(card, false)
card.registerRunListener((args) => {
const identifier: string = args.identifier.name;
this.store.delete(identifier);
return {};
});
}
registerCompleteAllTasksListeners() {
const card = this.homey.flow.getActionCard('complete_all')
card.registerRunListener((args) => {
this.store.set([]);
return {};
});
}
registerGetAllTasksListeners() {
const card = this.homey.flow.getActionCard('get_all')
card.registerRunListener((args) => {
const tasks = this.store.get().map((element) => ({ title: element.title, date: element.date }));
const count = tasks.length;
const json = JSON.stringify(tasks)
return {
json,
count
};
});
}
}