Commit Graph
4022 Commits
Author SHA1 Message Date
sqwishy bae85732ff fix(backend): fixes forloop with 257 items only iterates once (#446)
usize as u8 will mask out the higher bits, so 0x100 as u8 is 0x00, 0x101
is 0x01 and only iterates once, etc....

refactors push_next_flow_job a bit
2022-08-19 17:14:46 +02:00
Faton Ramadani bc5a5688ce fix(frontend): simplify flow preview logic(#450) 2022-08-19 17:14:27 +02:00
Ruben Fiszel 68aaf3267c fix(deno-client): wrap the deno-postgres client and not the query statement 2022-08-19 13:26:35 +02:00
Ruben Fiszel 8c04558c4e pass BASE_INTERNAL_URL to the python process 2022-08-19 07:09:50 +02:00
Ruben Fiszel ea6f3c037c pass BASE_INTERNAL_URL to the deno process 2022-08-19 07:02:10 +02:00
Ruben Fiszel 9f02ca8dec fix export to tarball 2022-08-19 00:55:38 +02:00
Ruben Fiszel 1f40c39fdb fix flowmodueheader path 2022-08-19 00:02:49 +02:00
Ruben Fiszel e0e98520ec fix wmill imports for resource and var in deno 2022-08-18 22:38:03 +02:00
Ruben Fiszel c2f616da0d use ts extension for private imports 2022-08-18 22:18:57 +02:00
Ruben Fiszel a5343fa959 feat: private imports 2022-08-18 21:49:24 +02:00
Ruben Fiszel 451bddf015 fix behavior of disable nsjail and disable nuser 2022-08-18 17:22:16 +02:00
Ruben Fiszel ae44a1ecc1 allow longer name for created_by 2022-08-18 15:01:17 +02:00
Christian Paul ed43752de1 Changes to the Deno trigger script template (#448) 2022-08-18 14:20:33 +02:00
Ruben Fiszel 918f6dbc7c icon for paths 2022-08-18 13:46:12 +02:00
Ruben Fiszel d73d2578f2 handle loading erronous code in flows 2022-08-18 13:26:52 +02:00
Ruben Fiszel 157dc5b501 update code binding in background to avoid stutter 2022-08-18 13:19:10 +02:00
Ruben Fiszel 248700b2c2 QoL path and editor improvements 2022-08-18 12:58:49 +02:00
Ruben Fiszel 79f15220d4 change default typescript 2022-08-18 09:43:11 +02:00
Ruben Fiszel f9ea4eb475 change default typescript 2022-08-18 09:30:24 +02:00
Ruben Fiszel 404b95f3fe change default typescript 2022-08-18 09:28:25 +02:00
Ruben Fiszel f79dccd221 change default typescript 2022-08-18 09:24:35 +02:00
Ruben Fiszel a26af926a2 change sql editor to few lines editor 2022-08-18 00:05:46 +02:00
Ruben Fiszel ae90c1cfed fix forloop empty no step afterward 2022-08-18 00:01:04 +02:00
Ruben Fiszel 27d122c43f fix prop picker key selection 2022-08-17 19:38:07 +02:00
Faton Ramadani 7e4aac9971 feat(frontend): Open/Close UI (#445)
* feat(frontend): Properly open/close and highlight a flowbox

* feat(frontend): Fix removing first step
2022-08-17 17:24:57 +02:00
Faton Ramadani 068147251c fix(frontend): Fix loops pickable properties (#441) 2022-08-17 16:53:41 +02:00
Ruben Fiszel 561e13e51e fix: handle 0 length for-loops in the backend (#440)
* wip

* TODO

* my fix works I think
2022-08-17 15:56:49 +02:00
Ruben Fiszel 395965555e fix postgresql new script reference 2022-08-17 13:54:28 +02:00
Ruben Fiszel 0eca495aa6 remove useless Scripts section in FlowInputs 2022-08-17 13:40:02 +02:00
Ruben Fiszel 6089439a8c disable trigger scripts except for step 0 2022-08-17 13:36:35 +02:00
Ruben Fiszel 7a6d8d38e2 fix loading empty path 2022-08-17 13:31:21 +02:00
Ruben Fiszel b397527717 update postgresql query script 2022-08-17 13:04:53 +02:00
Ruben Fiszelandrubenfiszel b2c2f29385 chore(main): release 1.31.0 (#405)
* chore(main): release 1.31.0

* Apply automatic changes

Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
v1.31.0
2022-08-17 12:05:43 +02:00
Faton Ramadani 127b0b4e5e feat(frontend): Redesign of the Flow Editor + Arbitrary forloop 2022-08-17 12:03:38 +02:00
Ruben Fiszel a64fa1054b add pgQuery to deno-client 2022-08-17 11:53:22 +02:00
Ruben Fiszel 40abf870c5 use app in hub path 2022-08-17 11:31:23 +02:00
Ruben Fiszel 8abf2b7e9d fix styling 2022-08-17 09:55:24 +02:00
Ruben Fiszel 3947d21129 fix styling 2022-08-17 09:36:09 +02:00
Ruben Fiszel 807f4b325a fix styling 2022-08-17 09:34:29 +02:00
Ruben Fiszel c758646eda remove zendesk from community types 2022-08-16 23:52:19 +02:00
Ruben Fiszel 99594ff968 remove zendesk 2022-08-16 23:45:58 +02:00
Ruben Fiszel 03a3715d86 add zendesk oauth client 2022-08-16 23:28:31 +02:00
github-actions[bot]andrubenfiszel 0f338d359a sync hub items with community (#439)
Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
2022-08-16 23:20:34 +02:00
Ruben Fiszelandsqwishy e606118943 fix(backend): collecting result when for loop is not the last step #422
* wip: step after forloop results

Adding a failing test so I don't forget out about it.

In the last step, `items` is `4`, the last item in iteration, rather
than the collected list.  My guess is this is because the results aren't
collected unless the flow quits early or the forloop module is the last
module so that `last_step` is true.

* test

Co-authored-by: sqwishy <somebody@froghat.ca>
2022-08-16 23:03:55 +02:00
Ruben Fiszel 6d33ae4ece refresh button under resource picker 2022-08-16 22:54:43 +02:00
3b78afdd5c sync hub items with community (#438)
* sync hub items with community

* Delete email_smtp.json

Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
Co-authored-by: Ruben Fiszel <ruben@rubenfiszel.com>
2022-08-16 21:26:26 +02:00
Ruben Fiszel 2f33a71326 fix svg 2022-08-16 21:08:57 +02:00
Ruben Fiszel 57dee6a5ec fix svg 2022-08-16 21:08:08 +02:00
github-actions[bot]andrubenfiszel e114341350 sync hub items with community (#437)
Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
2022-08-16 21:06:57 +02:00
Ruben Fiszel bc50b51cf9 remove non admin user 2022-08-16 21:00:11 +02:00