Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support type of workflows via parameter #45

Merged
merged 1,290 commits into from
Nov 23, 2019
Merged

Support type of workflows via parameter #45

merged 1,290 commits into from
Nov 23, 2019

Conversation

Chetabahana
Copy link

@Chetabahana Chetabahana commented Nov 23, 2019

Summary

Branching 01

Main Code: js/draw.js

    getJSON : function() {

        //Inject Workflows from getJSON
        if (ids == null) ids = new Array();
        if (!init) init = editor.getValue();

        if (!link) link = $('#tautan a').clone();
        if (!feed) feed = '/feed.json?t=' + $.now();

        if ($(".theme").val() == 'hand' && pad) pad = null;
        else if (!pad) pad = (params.pad)? (params.pad * 1): null;

        $.getJSON(feed).done(function(result){

            if (!json) json = result.items[4].items;
            if (!size) size = json.length;
            if (!type) type = 'Sequence';

            if (pad == null) {

                editor.setValue(init);

            } else if (id == null) {

                //Set id.length vs type index (1»5 2»0 3»1 4»2 5»3 6»4)
                var Id = draw.pad(1,5);
                draw.click($("<div>", {id: Id}));

            } else if (data == null) {
 
                data = result.items[0];
                var skema = draw.encode(JSON.stringify(data.skema, draw.replacer, '\t'));
                editor.setValue(skema);

            } else if (window['tree']) {

                //Support Asynchronous Json Data Driven on Workflows(#39)
                data = result.items[0];
                query.setValue(draw.encode(data.skema));

            }

        });

    },

Checklist

  1. Privileged views and APIs are guarded by proper permission checks.
  2. All visible strings are translated with proper context.
  3. All data-formatting is locale-aware (dates, numbers, and so on).
  4. Database queries are optimized and the number of queries is constant.
  5. Database migration files are up to date.
  6. The changes are tested.
  7. The code is documented (docstrings, project documentation).
  8. GraphQL schema and type definitions are up to date.
  9. Changes are mentioned in the changelog.

Reference

Screenshots

Diagram: #chetabahana-skema

screencapture

Root: _internalRoot

root

Node: __reactInternalInstance$

screencapture

092518_EC_riemann-hypothesis_feat

Chart_1440x310

ComplexRiemannZetaPlot

i283445314592813528 szw1280h1280

pecPgLAZEeqx9wJCrBEABA (2)

download (3) (1)
de8d3657e35c
hqdefault
cfee3b23d11d
Euler+Riemann+spiral
triquetra-symbol-logo-celtic-knot-symbol-png-clip-art
180422_TY2of20
downloadfile-4
978-0-387-75477-2_3_Fig6_HTML
fib_sunflower
Helianthus_whorl
main-3-800x533
illustration-spiral-arrangement-nature-fibonacci-260nw-420127054
kIhHjT9OC0fV7Utxx2M5_Iawu0JRZrmX4CZLVehOdbESC251p6H0npLSlHp7uS6p4YC6NqzBWqIsYh3Y1l8-BmAIIpyM3et2ttdBvYwQ5mJj_vCUsXw7DxQJK_dz1ciKp10FAzpy5ZY=w2400
5cd515c02e23453c01850ff210264831
220px-FibonacciChamomile
bLOhj
Newton-flow-in-the-complex-plane-together-with-the-lines-of-constant-height
Newton-flow-lines-for-z-in-the-neighborhood-of-the-real-axis-show-the-source-point-at-the
Newton-flow-of-z-close-to-the-North-pole-of-the-Riemann-sphere-along-the-positive
Newton-flow-of-z-on-the-Riemann-sphere-in-the-neighborhood-of-the-pole-of-z-indicated-by
maxresdefault
1195px-Zeta_polar svg
kbi6h
riemann-zeta-function-riemann-hypothesis-zero-of-a-function-gamma-function-intense
downloadfile-3
DE_8429_FI
A-A-2D-projection-of-a-tetragrid-B-a-2D-projection-of-a-Fibonacci-tetragrid-C-a
d25f7355853adf0430dcdab103c3969b
Right_Riemann_sum_of_y=x^(-1)
png-transparent-harmonic-series-convergent-series-mathematics-riemann-zeta-function-mathematics
cf8a050937588ce3d9ae1269b3c3da3e
2306a7fbe9608574-the-riemannian-self-developing-domain
7c8c0b2a6e4f3211f75fc511d9de92ef
O_49
log
Riemann_surface_log
Riemann_sqrt
cd013dfbb6eec624f2a8e6d964a1b2e7
The-location-of-zeros-of-the-Riemann-z-s-function
An-illustration-of-the-Riemann-hypothesis-the-Riemann-zeta-function-does-not-have-any
2-zeta-function
Zeta_function_graph
g5tuaaaovvwy
fourier-cosine-transform-zeta-one-half
RiemannZetaAbs_800
Real-and-imaginary-part-and-absolute-value-of-Riemann-zeta-function-on-critical-line
O_3
downloadfile
RiemannCriticalLine2-e1515110167206
ZetaZeros_02
zetaplot
riemann-zeta-function-riemann-hypothesis-mathematics-break-time
4387_1
png-curiosa-mathematica-mathematics-real-part-riemann-zeta-function-point-mathematics-angle-text-spiral-monochrome-clipart
5b4397f05a71782949d1a413_Riemann Example1
34ae6b6e4ad358d7b3e79e19076a104a
squares-cubes-square-root-chart-1
088737337910d0071d65a2b8f624f37c
01c6ea0e9afd3a56c117470ebf791978
a2228ef476cfee4920997b673a59c395
91e9ced9589acb7687ee9efdbd311a05
Untitled
phpkttMUF
original-269013-1
abaa39cfc55fc926e7eab4fd3060e053
img12
image
48a20ace1d9064f9a540d886bc06aad9
difference-3
downloadfile-2
downloadfile-1
8cd76bdafa46
downloadfile
icr,samsung_galaxy_s10_snap,back,a,x1000-bg,f8f8f8 1u1

Screenshots

Concept

jantung-2

Konsep+Percabangan+Digunakan+untuk+penentuan+keputusan

1 condition

1

dengan-percabangan

2 conditions

materi-pemograman-dasar-percabangan-dua-kondisi-3-638

4227e-bersarang

fishbone

balanceL-3

04-percabangan-12-638

shortest-fp-book

scalaz-core-tree

scalaz-core-tree

Wolfram Math

big_thumb
figures-f047f78eea63481a9ced4334e0599476-scis-2018-161-t3
ramsey-theory-mathematics-ordnung-muss-sein-theorem-conjecture-png-favpng-EpwwBH2b4fLVAWb1TxYZYLtwb

@Chetabahana Chetabahana merged commit 9092690 into Chetabahana Nov 23, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants