mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-04 22:50:18 +00:00
67d8151d94
* Add link settings * fix * Rename to api-dist-js * Correct import * Update CI * Implement bundleJS * Add comments * Add TODO * Fix import * Fix workflow --------- Co-authored-by: Artsiom Shamsutdzinau <shamsartem@gmail.com>
66 lines
1.3 KiB
JavaScript
66 lines
1.3 KiB
JavaScript
import { AquaConfig, Aqua, Call, Input, Path } from "./aqua-api.js";
|
|
|
|
function getConfig({
|
|
constants = [],
|
|
logLevel = "info",
|
|
noRelay = false,
|
|
noXor = false,
|
|
targetType = "air",
|
|
tracing = false,
|
|
}) {
|
|
return new AquaConfig(
|
|
logLevel,
|
|
constants,
|
|
noXor,
|
|
noRelay,
|
|
{
|
|
ts: "typescript",
|
|
js: "javascript",
|
|
air: "air",
|
|
}[targetType],
|
|
tracing,
|
|
);
|
|
}
|
|
|
|
export function compileFromString({ code, ...commonArgs }) {
|
|
const config = getConfig(commonArgs);
|
|
const { imports = [] } = commonArgs;
|
|
return Aqua.compile(new Input(code), imports, config);
|
|
}
|
|
|
|
export function compileFromPath({ filePath, ...commonArgs }) {
|
|
const config = getConfig(commonArgs);
|
|
const { imports = [] } = commonArgs;
|
|
return Aqua.compile(new Path(filePath), imports, config);
|
|
}
|
|
|
|
export function compileAquaCallFromString({
|
|
code,
|
|
funcCall,
|
|
data,
|
|
...commonArgs
|
|
}) {
|
|
const config = getConfig(commonArgs);
|
|
const { imports = [] } = commonArgs;
|
|
return Aqua.compile(
|
|
new Call(funcCall, data, new Input(code)),
|
|
imports,
|
|
config,
|
|
);
|
|
}
|
|
|
|
export function compileAquaCallFromPath({
|
|
filePath,
|
|
funcCall,
|
|
data,
|
|
...commonArgs
|
|
}) {
|
|
const config = getConfig(commonArgs);
|
|
const { imports = [] } = commonArgs;
|
|
return Aqua.compile(
|
|
new Call(funcCall, data, new Input(filePath)),
|
|
imports,
|
|
config,
|
|
);
|
|
}
|