generated from haydenull/logseq-plugin-react-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathmain.tsx
227 lines (215 loc) · 6.64 KB
/
main.tsx
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
import "@logseq/libs";
import React from "react";
import ReactDOM from "react-dom";
import App from "./App";
import { BUTTONS, LOADING_STYLE, SETTINGS_SCHEMA } from "./helper/constants";
import {
checkout,
commit,
log,
pull,
pullRebase,
push,
status,
} from "./helper/git";
import {
checkStatus,
debounce,
hidePopup,
setPluginStyle,
showPopup,
checkIsSynced,
checkStatusWithDebounce,
getPluginStyle,
} from "./helper/util";
import "./index.css";
// TODO: patch logseq Git command for the temporary fix solution
// https://github.com/haydenull/logseq-plugin-git/issues/48
try {
// @ts-ignore
top.logseq.sdk.git.exec_command(['status'])
} catch (e) {
// @ts-ignore
logseq.Git['execCommand'] = async function (args: string[]) {
const ret = await logseq.App.execGitCommand(args)
return {exitCode: ret == undefined ? 1 : 0, stdout: ret}
}
}
const isDevelopment = import.meta.env.DEV
if (isDevelopment) {
renderApp("browser");
} else {
console.log("=== logseq-plugin-git loaded ===");
logseq.ready(() => {
const operations = {
check: debounce(async function () {
const status = await checkStatus();
if (status?.stdout === "") {
logseq.UI.showMsg("No changes detected.");
} else {
logseq.UI.showMsg("Changes detected:\n" + status.stdout, "success", {
timeout: 0,
});
}
hidePopup();
}),
pull: debounce(async function () {
console.log("[faiz:] === pull click");
setPluginStyle(LOADING_STYLE);
hidePopup();
await pull(false);
checkStatus();
}),
pullRebase: debounce(async function () {
console.log("[faiz:] === pullRebase click");
setPluginStyle(LOADING_STYLE);
hidePopup();
await pullRebase();
checkStatus();
}),
checkout: debounce(async function () {
console.log("[faiz:] === checkout click");
hidePopup();
checkout();
}),
commit: debounce(async function () {
hidePopup();
commit(true, `[logseq-plugin-git:commit] ${new Date().toISOString()}`);
}),
push: debounce(async function () {
setPluginStyle(LOADING_STYLE);
hidePopup();
await push();
checkStatus();
}),
commitAndPush: debounce(async function () {
setPluginStyle(LOADING_STYLE);
hidePopup();
const status = await checkStatus();
const changed = status?.stdout !== "";
if (changed) {
const res = await commit(
true,
`[logseq-plugin-git:commit] ${new Date().toISOString()}`
);
if (res.exitCode === 0) await push(true);
}
checkStatus();
}),
log: debounce(async function () {
console.log("[faiz:] === log click");
const res = await log(false);
logseq.UI.showMsg(res?.stdout, "success", { timeout: 0 });
hidePopup();
}),
showPopup: debounce(async function () {
console.log("[faiz:] === showPopup click");
showPopup();
}),
hidePopup: debounce(function () {
console.log("[faiz:] === hidePopup click");
hidePopup();
}),
};
logseq.provideModel(operations);
logseq.App.registerUIItem("toolbar", {
key: "git",
template:
'<a data-on-click="showPopup" class="button"><i class="ti ti-brand-git"></i></a><div id="plugin-git-content-wrapper"></div>',
});
logseq.useSettingsSchema(SETTINGS_SCHEMA);
setTimeout(() => {
const buttons = (logseq.settings?.buttons as string[])
?.map((title) => BUTTONS.find((b) => b.title === title))
.filter(Boolean);
if (top && buttons?.length) {
const parser = new DOMParser();
const doc = parser.parseFromString(
`
<div class="plugin-git-container">
<div class="plugin-git-mask"></div>
<div class="plugin-git-popup flex flex-col">
${buttons
.map(
(button) =>
`<button class="ui__button plugin-git-${button?.key} bg-indigo-600 hover:bg-indigo-700 focus:border-indigo-700 active:bg-indigo-700 text-center text-sm p-1" style="margin: 4px 0; color: #fff;">${button?.title}</button>`
)
.join("\n")}
</div>
`,
"text/html"
);
// remove .plugin-git-container if exists
const container = top?.document?.querySelector(".plugin-git-container");
console.log("[faiz:] === container", container);
if (container) top?.document?.body.removeChild(container);
top?.document?.body.appendChild(
doc.body.childNodes?.[0]?.cloneNode(true)
);
top?.document
?.querySelector(".plugin-git-mask")
?.addEventListener("click", hidePopup);
buttons.forEach((button) => {
top?.document
?.querySelector(`.plugin-git-${button?.key}`)
?.addEventListener("click", operations?.[button!?.event]);
});
}
}, 1000);
logseq.App.onRouteChanged(async () => {
checkStatusWithDebounce();
});
if (logseq.settings?.checkWhenDBChanged) {
logseq.DB.onChanged(({ blocks, txData, txMeta }) => {
checkStatusWithDebounce();
});
}
if (logseq.settings?.autoCheckSynced) checkIsSynced();
checkStatusWithDebounce();
if (top) {
top.document?.addEventListener("visibilitychange", async () => {
const visibilityState = top?.document?.visibilityState;
if (visibilityState === "visible") {
if (logseq.settings?.autoCheckSynced) checkIsSynced();
} else if (visibilityState === "hidden") {
// logseq.UI.showMsg(`Page is hidden: ${new Date()}`, 'success', { timeout: 0 })
// noChange void
// changed commit push
if (logseq.settings?.autoPush) {
operations.commitAndPush();
}
}
});
}
logseq.App.registerCommandPalette(
{
key: "logseq-plugin-git:commit&push",
label: "Commit & Push",
keybinding: {
binding: "mod+s",
mode: "global",
},
},
() => operations.commitAndPush()
);
logseq.App.registerCommandPalette(
{
key: "logseq-plugin-git:rebase",
label: "Pull Rebase",
keybinding: {
binding: "mod+alt+s",
mode: "global",
},
},
() => operations.pullRebase()
);
});
}
function renderApp(env: string) {
ReactDOM.render(
<React.StrictMode>
<App env={env} />
</React.StrictMode>,
document.getElementById("root")
);
}