nocobase/packages/core/client/src/variables
Zeke Zhang a2be1a0e33
feat(variable): add current role (#3167)
* feat(variable): add current role

* chore: translate

* feat: parsing in the backend

* fix: fix tests
2023-12-08 19:19:53 +08:00
..
__tests__ feat(variable): add current role (#3167) 2023-12-08 19:19:53 +08:00
hooks feat(variable): add current role (#3167) 2023-12-08 19:19:53 +08:00
utils fix: fix display association fields with subform (#3036) 2023-11-14 14:15:47 +08:00
constants.ts fix(subtable): should not have a value by default and fix key of table (#2763) 2023-10-08 20:55:30 +08:00
index.ts feat(bi): filter block for charts (#2851) 2023-12-05 20:45:18 +08:00
README.md refactor: new schema initializer and schema settings (#2802) 2023-12-04 14:56:46 +08:00
README.zh-CN.md refactor: new schema initializer and schema settings (#2802) 2023-12-04 14:56:46 +08:00
types.ts
VariablesProvider.tsx fix(linkageRules): fix autorun (#3105) 2023-11-29 14:57:03 +08:00

group
title order
Client 1

useVariables

Usage

const { registerVariable, parseVariable } = useVariables();

// Register variable
registerVariable({
  name: '$user',
  // If you are certain that the `association field` data does not need to be loaded on-demand in the variable, you can omit this field
  collectionName: 'users',
  ctx: {
    name: 'Zhang San',
    nickname: 'Xiao Zhang',
  },
});

// Parse variable
const userName = await parseVariable('{{ $user.name }}');
console.log(userName); // 'Zhang San'

Built-in Global Variables

Some variables that are used globally are registered within the VariablesProvider. These variables are defined in useBuiltinVariables and can be modified by changing the return value of useBuiltinVariables.

Local Variables

When using the parseVariable method in useVariables, in addition to parsing based on the built-in global variables, you can also use some temporary local variables.

const { parseVariable } = useVariables();
const localVariable = {
  name: '$user',
  // If you are certain that the `association field` data does not need to be loaded on-demand in the variable, you can omit this field
  collectionName: 'users',
  ctx: {
    name: 'Zhang San',
    nickname: 'Xiao Zhang',
  },
}

// Use local variable for parsing
const userName = await parseVariable('{{ $user.name }}', localVariable);
console.log(userName); // 'Zhang San'

The registered local variables will be automatically destroyed after parsing and will not affect the value of global variables.

useLocalVariables

This hook encapsulates some variables that are quite common but cannot be treated as global variables.