gigafibre-fsm/apps/ops/src/api/flow-templates.js
louispaulb 41d9b5f316 feat: flow editor, Gemini QR scanner with offline queue, dispatch planning v2
Major additions accumulated over 9 days — single commit per request.

Flow editor (new):
- Generic visual editor for step trees, usable by project wizard + agent flows
- PROJECT_KINDS / AGENT_KINDS catalogs decouple UI from domain
- Drag-and-drop reorder via vuedraggable with scope isolation per peer group
- Chain-aware depends_on rewrite on reorder (sequential only — DAGs preserved)
- Variable picker with per-applies_to catalog (Customer / Quotation /
  Service Contract / Issue / Subscription), insert + copy-clipboard modes
- trigger_condition helper with domain-specific JSONLogic examples
- Global FlowEditorDialog mounted once in MainLayout, Odoo inline pattern
- Server: targo-hub flow-runtime.js, flow-api.js, flow-templates.js
- ERPNext: Flow Template/Run doctypes, scheduler, 5 seeded system templates
- depends_on chips resolve to step labels instead of opaque "s4" ids

QR/OCR scanner (field app):
- Camera capture → Gemini Vision via targo-hub with 8s timeout
- IndexedDB offline queue retries photos when signal returns
- Watcher merges late-arriving scan results into the live UI

Dispatch:
- Planning mode (draft → publish) with offer pool for unassigned jobs
- Shared presets, recurrence selector, suggested-slots dialog
- PublishScheduleModal, unassign confirmation

Ops app:
- ClientDetailPage composables extraction (useClientData, useDeviceStatus,
  useWifiDiagnostic, useModemDiagnostic)
- Project wizard: shared detail sections, wizard catalog/publish composables
- Address pricing composable + pricing-mock data
- Settings redesign hosting flow templates

Targo-hub:
- Contract acceptance (JWT residential + DocuSeal commercial tracks)
- Referral system
- Modem-bridge diagnostic normalizer
- Device extractors consolidated

Migration scripts:
- Invoice/quote print format setup, Jinja rendering
- Additional import + fix scripts (reversals, dates, customers, payments)

Docs:
- Consolidated: old scattered MDs → HANDOFF, ARCHITECTURE, DATA_AND_FLOWS,
  FLOW_EDITOR_ARCHITECTURE, BILLING_AND_PAYMENTS, CPE_MANAGEMENT,
  APP_DESIGN_GUIDELINES
- Archived legacy wizard PHP for reference
- STATUS snapshots for 2026-04-18/19

Cleanup:
- Removed ~40 generated PDFs/HTMLs (invoice_preview*, rendered_jinja*)
- .gitignore now covers invoice preview output + nested .DS_Store

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-22 10:44:17 -04:00

105 lines
3.4 KiB
JavaScript

/**
* api/flow-templates.js — Client for the Hub /flow/templates CRUD endpoints.
*
* Mirrors services/targo-hub/lib/flow-templates.js. All requests go through
* the Hub (which handles ERPNext auth server-side).
*
* Functions:
* listFlowTemplates({ category?, applies_to?, trigger_event?, is_active?, q? })
* getFlowTemplate(name)
* createFlowTemplate(body)
* updateFlowTemplate(name, patch)
* deleteFlowTemplate(name)
* duplicateFlowTemplate(name, newName?)
*
* All functions return the parsed JSON body or throw on network / 4xx / 5xx.
*/
import { HUB_URL } from 'src/config/hub'
/** Fetch helper with error normalization. */
async function hubFetch (path, { method = 'GET', body } = {}) {
const opts = { method, headers: { 'Content-Type': 'application/json' } }
if (body) opts.body = JSON.stringify(body)
const res = await fetch(`${HUB_URL}${path}`, opts)
const text = await res.text()
let data
try { data = text ? JSON.parse(text) : {} }
catch { throw new Error(`Invalid JSON from ${path}: ${text.slice(0, 200)}`) }
if (!res.ok) {
const msg = data.error || `HTTP ${res.status}`
const err = new Error(msg)
err.status = res.status
err.detail = data.detail
throw err
}
return data
}
/**
* List flow templates with optional filters.
* @param {Object} filters { category, applies_to, trigger_event, is_active, q, limit }
* @returns {Promise<Array>} list of templates (without flow_definition body)
*/
export async function listFlowTemplates (filters = {}) {
const qs = new URLSearchParams()
for (const [k, v] of Object.entries(filters)) {
if (v !== undefined && v !== null && v !== '') qs.set(k, String(v))
}
const path = `/flow/templates${qs.toString() ? '?' + qs.toString() : ''}`
const data = await hubFetch(path)
return data.templates || []
}
/**
* Fetch a single template with its parsed flow_definition.
* @param {string} name FT-00001 etc.
*/
export async function getFlowTemplate (name) {
const data = await hubFetch(`/flow/templates/${encodeURIComponent(name)}`)
return data.template
}
/**
* Create a new (user) template. is_system is forced to 0 by the API.
* @param {Object} body { template_name, category, applies_to, flow_definition, ... }
*/
export async function createFlowTemplate (body) {
const data = await hubFetch('/flow/templates', { method: 'POST', body })
return data.template
}
/**
* Patch an existing template. Version is auto-bumped by the API.
* @param {string} name
* @param {Object} patch subset of fields
*/
export async function updateFlowTemplate (name, patch) {
const data = await hubFetch(`/flow/templates/${encodeURIComponent(name)}`, {
method: 'PUT', body: patch,
})
return data.template
}
/**
* Delete a template. Blocked server-side if is_system=1.
* @param {string} name
*/
export async function deleteFlowTemplate (name) {
await hubFetch(`/flow/templates/${encodeURIComponent(name)}`, { method: 'DELETE' })
}
/**
* Duplicate a template (e.g. to customize a system template).
* Creates an inactive copy (is_active=0) for user to review before enabling.
* @param {string} name
* @param {string} [newName] optional override (defaults to "<name> (copie)")
*/
export async function duplicateFlowTemplate (name, newName) {
const body = newName ? { template_name: newName } : {}
const data = await hubFetch(`/flow/templates/${encodeURIComponent(name)}/duplicate`, {
method: 'POST', body,
})
return data.template
}