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

task: stratify save for reuse #4625

Merged
merged 15 commits into from
Sep 4, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<tera-drilldown
:node="node"
:menu-items="menuItems"
:is-draft="isDraft"
@on-close-clicked="emit('close')"
@update-state="(state: any) => emit('update-state', state)"
@update-output-port="(output: any) => emit('update-output-port', output)"
Expand Down Expand Up @@ -77,6 +78,15 @@
v-model:output="selectedOutputId"
is-selectable
>
<Button
class="ml-auto py-3"
label="Save for re-use"
size="small"
outlined
:disabled="isSaveDisabled"
severity="secondary"
@click="showSaveModelModal = true"
/>
<tera-notebook-error
v-if="executeResponse.status === OperatorStatus.ERROR"
:name="executeResponse.name"
Expand All @@ -100,7 +110,10 @@
v-if="stratifiedAmr"
:asset="stratifiedAmr"
:assetType="AssetType.Model"
:initial-name="stratifiedAmr.name"
:is-visible="showSaveModelModal"
:is-updating-asset="true"
@on-save="updateNodeOutput"
@close-modal="showSaveModelModal = false"
/>
</template>
Expand All @@ -120,6 +133,7 @@ import TeraNotebookJupyterInput from '@/components/llm/tera-notebook-jupyter-inp
import teraNotebookJupyterThoughtOutput from '@/components/llm/tera-notebook-jupyter-thought-output.vue';

import { createModel, getModel } from '@/services/model';
import { useProjects } from '@/composables/project';

import { WorkflowNode, OperatorStatus } from '@/types/workflow';
import { logger } from '@/utils/logger';
Expand Down Expand Up @@ -171,6 +185,8 @@ const executeResponse = ref({
const modelNodeOptions = ref<string[]>([]);
const showSaveModelModal = ref(false);

const isDraft = ref(false);

const isStratifyInProgress = ref(false);

const selectedOutputId = ref<string>();
Expand Down Expand Up @@ -406,6 +422,7 @@ const runCodeStratify = () => {

if (executedCode) {
saveCodeToState(executedCode, true);
isDraft.value = false;
}
})
.register('any_execute_reply', (data) => {
Expand Down Expand Up @@ -442,6 +459,41 @@ const onSelection = (id: string) => {
emit('select-output', id);
};

const isSaveDisabled = computed(() => {
const id = amr.value?.id;
if (!id || _.isEmpty(selectedOutputId.value)) return true;
const outputPort = props.node.outputs?.find((port) => port.id === selectedOutputId.value);

return useProjects().hasAssetInActiveProject(outputPort?.value?.[0]);
});

function updateNodeOutput(model: Model) {
if (!selectedOutputId.value || !model) return;

amr.value = model;
const outputPort = _.cloneDeep(props.node.outputs?.find((port) => port.id === selectedOutputId.value));

if (!outputPort) return;
outputPort.label = model.header.name;

emit('update-output-port', outputPort);
}

// check if user has made changes to the code
const hasCodeChange = () => {
if (props.node.state.strataCodeHistory.length) {
isDraft.value = !_.isEqual(codeText.value, props.node.state.strataCodeHistory?.[0]?.code);
} else {
isDraft.value = !_.isEqual(codeText.value, '');
}
};
const checkForCodeChange = _.debounce(hasCodeChange, 100);

watch(
() => codeText.value,
() => checkForCodeChange()
);

watch(
() => props.node.active,
async () => {
Expand Down
Loading