API Reference
@univerjs
@univerjs/facade
classes
Fpermission

@univerjs/facade v0.2.14Docs


Class: FPermission

Constructors

new FPermission()

new FPermission(
   _injector, 
   _commandService, 
   _permissionService, 
   _worksheetProtectionRuleModel, 
   _rangeProtectionRuleModel, 
   _worksheetProtectionPointRuleModel, 
   _authzIoService): FPermission

Parameters

ParameterType
_injectorInjector
_commandServiceICommandService
_permissionServiceIPermissionService
_worksheetProtectionRuleModelWorksheetProtectionRuleModel
_rangeProtectionRuleModelRangeProtectionRuleModel
_worksheetProtectionPointRuleModelWorksheetProtectionPointModel
_authzIoServiceIAuthzIoService

Returns

FPermission

Defined in

submodules/univer/packages/facade/src/apis/sheets/f-permission.ts:23 (opens in a new tab)

Methods

addRangeBaseProtection()

addRangeBaseProtection(
   unitId, 
   subUnitId, 
   ranges): Promise<undefined | {
  permissionId: string;
  ruleId: string;
}>

Adds a range protection to the worksheet.

Parameters

ParameterTypeDescription
unitIdstringThe unique identifier of the workbook.
subUnitIdstringThe unique identifier of the worksheet.
rangesIRange[]The ranges to be protected.

Returns

Promise<undefined | { permissionId: string; ruleId: string; }>

Defined in

submodules/univer/packages/facade/src/apis/sheets/f-permission.ts:163 (opens in a new tab)


addWorksheetBasePermission()

addWorksheetBasePermission(unitId, subUnitId): Promise<undefined | string>

This function is used to add a base permission for a worksheet.

Parameters

ParameterTypeDescription
unitIdstringThe unique identifier of the workbook for which the permission is being set.
subUnitIdstringThe unique identifier of the worksheet for which the permission is being set.

Returns

Promise<undefined | string>

Defined in

submodules/univer/packages/facade/src/apis/sheets/f-permission.ts:72 (opens in a new tab)


removeRangeProtection()

removeRangeProtection(
   unitId, 
   subUnitId, 
   ruleIds): void

Removes the range protection from the worksheet.

Parameters

ParameterTypeDescription
unitIdstringThe unique identifier of the workbook.
subUnitIdstringThe unique identifier of the worksheet.
ruleIdsstring[]The rule IDs of the range protection to be removed.

Returns

void

Defined in

submodules/univer/packages/facade/src/apis/sheets/f-permission.ts:212 (opens in a new tab)


removeWorksheetPermission()

removeWorksheetPermission(unitId, subUnitId): void

Delete the entire table protection set for the worksheet and reset the point permissions of the worksheet to true

Parameters

ParameterTypeDescription
unitIdstringThe unique identifier of the workbook for which the permission is being set.
subUnitIdstringThe unique identifier of the worksheet for which the permission is being set.

Returns

void

Defined in

submodules/univer/packages/facade/src/apis/sheets/f-permission.ts:99 (opens in a new tab)


setPermissionDialogVisible()

setPermissionDialogVisible(visible): void

Set visibility of unauthorized pop-up window

Parameters

ParameterType
visibleboolean

Returns

void

Defined in

submodules/univer/packages/facade/src/apis/sheets/f-permission.ts:293 (opens in a new tab)


setRangeProtectionPermissionPoint()

setRangeProtectionPermissionPoint(
   unitId, 
   subUnitId, 
   permissionId, 
   FPointClass, 
   value): void

Modify the permission points of a custom area

Parameters

ParameterTypeDescription
unitIdstringThe unique identifier of the workbook.
subUnitIdstringThe unique identifier of the worksheet within the workbook.
permissionIdstringThe unique identifier of the permission that controls access to the range.
FPointClassRangePermissionPointConstructorThe constructor for the range permission point class. See the permission-point documentation (opens in a new tab) for more details.
valuebooleanThe new permission value to be set for the range (e.g., true for allowing access, false for restricting access).

Returns

void

Defined in

submodules/univer/packages/facade/src/apis/sheets/f-permission.ts:241 (opens in a new tab)


setRangeProtectionRanges()

setRangeProtectionRanges(
   unitId, 
   subUnitId, 
   ruleId, 
   ranges): void

Sets the ranges for range protection in a worksheet.

This method finds the rule by unitId, subUnitId, and ruleId, and updates the rule with the provided ranges. It checks for overlaps with existing ranges in the same subunit and shows an error message if any overlap is detected. If no overlap is found, it executes the command to update the range protection with the new ranges.

Parameters

ParameterTypeDescription
unitIdstringThe unique identifier of the workbook.
subUnitIdstringThe unique identifier of the worksheet within the workbook.
ruleIdstringThe ruleId of the range protection rule that is being updated.
rangesIRange[]The array of new ranges to be set for the range protection rule.

Returns

void

Defined in

submodules/univer/packages/facade/src/apis/sheets/f-permission.ts:262 (opens in a new tab)


setWorkbookEditPermission()

setWorkbookEditPermission(unitId, value): void

This function is used to set whether the workbook can be edited

Parameters

ParameterTypeDescription
unitIdstringThe unique identifier of the workbook for which the permission is being set.
valuebooleanA value that controls whether the workbook can be edited

Returns

void

Defined in

submodules/univer/packages/facade/src/apis/sheets/f-permission.ts:62 (opens in a new tab)


setWorkbookPermissionPoint()

setWorkbookPermissionPoint(
   unitId, 
   FPointClass, 
   value): void

Configures a specific permission point for a workbook.

This function sets or updates a permission point for a workbook identified by unitId. It creates a new permission point if it does not already exist, and updates the point with the provided value.

Parameters

ParameterTypeDescription
unitIdstringThe unique identifier of the workbook for which the permission is being set.
FPointClassWorkbookPermissionPointConstructorThe constructor function for creating a permission point instance. Other point constructors can See the permission-point documentation (opens in a new tab) for more details.
valuebooleanThe boolean value to determine whether the permission point is enabled or disabled.

Returns

void

Defined in

submodules/univer/packages/facade/src/apis/sheets/f-permission.ts:46 (opens in a new tab)


setWorksheetPermissionPoint()

setWorksheetPermissionPoint(
   unitId, 
   subUnitId, 
   FPointClass, 
value): Promise<undefined | string>

Sets the worksheet permission point by updating or adding the permission point for the worksheet. If the worksheet doesn't have a base permission, it creates one to used render

Parameters

ParameterTypeDescription
unitIdstringThe unique identifier of the workbook.
subUnitIdstringThe unique identifier of the worksheet.
FPointClassWorkSheetPermissionPointConstructorThe constructor for the permission point class. See the permission-point documentation (opens in a new tab) for more details.
valuebooleanThe new permission value to be set for the worksheet.

Returns

Promise<undefined | string>

Defined in

submodules/univer/packages/facade/src/apis/sheets/f-permission.ts:122 (opens in a new tab)


Copyright © 2021-2024 DreamNum Co,Ltd. All Rights Reserved.