@univerjs/sheets v0.5.0-beta.1 • Docs
Class: FPermission
FBase
is a base class for all facade classes.
It provides a way to extend classes with static and instance methods.
The _initialize
as a special method that will be called after the constructor. You should never call it directly.
Extends
Constructors
new FPermission()
new FPermission(
_injector,
_commandService,
_permissionService,
_worksheetProtectionRuleModel,
_rangeProtectionRuleModel,
_worksheetProtectionPointRuleModel,
_authzIoService): FPermission
Parameters
Parameter | Type |
---|---|
_injector | Injector |
_commandService | ICommandService |
_permissionService | IPermissionService |
_worksheetProtectionRuleModel | WorksheetProtectionRuleModel |
_rangeProtectionRuleModel | RangeProtectionRuleModel |
_worksheetProtectionPointRuleModel | WorksheetProtectionPointModel |
_authzIoService | IAuthzIoService |
Returns
Overrides
Defined in
submodules/univer/packages/sheets/src/facade/f-permission.ts:22
Properties
Property | Modifier | Type | Defined in |
---|---|---|---|
_authzIoService | readonly | IAuthzIoService | submodules/univer/packages/sheets/src/facade/f-permission.ts:29 |
_commandService | readonly | ICommandService | submodules/univer/packages/sheets/src/facade/f-permission.ts:24 |
_injector | readonly | Injector | submodules/univer/packages/sheets/src/facade/f-permission.ts:23 |
_permissionService | readonly | IPermissionService | submodules/univer/packages/sheets/src/facade/f-permission.ts:25 |
_rangeProtectionRuleModel | readonly | RangeProtectionRuleModel | submodules/univer/packages/sheets/src/facade/f-permission.ts:27 |
_worksheetProtectionPointRuleModel | readonly | WorksheetProtectionPointModel | submodules/univer/packages/sheets/src/facade/f-permission.ts:28 |
_worksheetProtectionRuleModel | readonly | WorksheetProtectionRuleModel | submodules/univer/packages/sheets/src/facade/f-permission.ts:26 |
Methods
_initialize()
_initialize(): void
Returns
void
Inherited from
Defined in
submodules/univer/packages/core/src/facade/f-base.ts:33
addRangeBaseProtection()
addRangeBaseProtection(
unitId,
subUnitId,
ranges): Promise<undefined | {
permissionId: string;
ruleId: string;
}>
Adds a range protection to the worksheet.
Parameters
Parameter | Type | Description |
---|---|---|
unitId | string | The unique identifier of the workbook. |
subUnitId | string | The unique identifier of the worksheet. |
ranges | IRange [] | The ranges to be protected. |
Returns
Promise
<undefined
| {
permissionId
: string
;
ruleId
: string
;
}>
- Returns an object containing the
permissionId
andruleId
if the range protection is successfully added. If the operation fails or no result is returned, it resolves toundefined
. permissionId is used to stitch permission point ID,ruleId is used to store permission rules
Defined in
submodules/univer/packages/sheets/src/facade/f-permission.ts:168
addWorksheetBasePermission()
addWorksheetBasePermission(unitId, subUnitId): Promise<undefined | string>
This function is used to add a base permission for a worksheet.
Parameters
Parameter | Type | Description |
---|---|---|
unitId | string | The unique identifier of the workbook for which the permission is being set. |
subUnitId | string | The unique identifier of the worksheet for which the permission is being set. |
Returns
Promise
<undefined
| string
>
- Returns the
permissionId
if the permission is successfully added. If the operation fails or no result is returned, it resolves toundefined
.
Defined in
submodules/univer/packages/sheets/src/facade/f-permission.ts:73
removeRangeProtection()
removeRangeProtection(
unitId,
subUnitId,
ruleIds): void
Removes the range protection from the worksheet.
Parameters
Parameter | Type | Description |
---|---|---|
unitId | string | The unique identifier of the workbook. |
subUnitId | string | The unique identifier of the worksheet. |
ruleIds | string [] | The rule IDs of the range protection to be removed. |
Returns
void
Defined in
submodules/univer/packages/sheets/src/facade/f-permission.ts:217
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
Parameter | Type | Description |
---|---|---|
unitId | string | The unique identifier of the workbook for which the permission is being set. |
subUnitId | string | The unique identifier of the worksheet for which the permission is being set. |
Returns
void
Defined in
submodules/univer/packages/sheets/src/facade/f-permission.ts:100
setRangeProtectionPermissionPoint()
setRangeProtectionPermissionPoint(
unitId,
subUnitId,
permissionId,
FPointClass,
value): void
Modify the permission points of a custom area
Parameters
Parameter | Type | Description |
---|---|---|
unitId | string | The unique identifier of the workbook. |
subUnitId | string | The unique identifier of the worksheet within the workbook. |
permissionId | string | The unique identifier of the permission that controls access to the range. |
FPointClass | RangePermissionPointConstructor | The constructor for the range permission point class. See the permission-point documentation for more details. |
value | boolean | The 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/sheets/src/facade/f-permission.ts:246
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
Parameter | Type | Description |
---|---|---|
unitId | string | The unique identifier of the workbook. |
subUnitId | string | The unique identifier of the worksheet within the workbook. |
ruleId | string | The ruleId of the range protection rule that is being updated. |
ranges | IRange [] | The array of new ranges to be set for the range protection rule. |
Returns
void
Defined in
submodules/univer/packages/sheets/src/facade/f-permission.ts:267
setWorkbookEditPermission()
setWorkbookEditPermission(unitId, value): void
This function is used to set whether the workbook can be edited
Parameters
Parameter | Type | Description |
---|---|---|
unitId | string | The unique identifier of the workbook for which the permission is being set. |
value | boolean | A value that controls whether the workbook can be edited |
Returns
void
Defined in
submodules/univer/packages/sheets/src/facade/f-permission.ts:61
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
Parameter | Type | Description |
---|---|---|
unitId | string | The unique identifier of the workbook for which the permission is being set. |
FPointClass | WorkbookPermissionPointConstructor | The constructor function for creating a permission point instance. Other point constructors can See the permission-point documentation for more details. |
value | boolean | The boolean value to determine whether the permission point is enabled or disabled. |
Returns
void
Defined in
submodules/univer/packages/sheets/src/facade/f-permission.ts:45
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
Parameter | Type | Description |
---|---|---|
unitId | string | The unique identifier of the workbook. |
subUnitId | string | The unique identifier of the worksheet. |
FPointClass | WorkSheetPermissionPointConstructor | The constructor for the permission point class. See the permission-point documentation for more details. |
value | boolean | The new permission value to be set for the worksheet. |
Returns
Promise
<undefined
| string
>
- Returns the
permissionId
if the permission point is successfully set or created. If no permission is set, it resolves toundefined
.
Defined in
submodules/univer/packages/sheets/src/facade/f-permission.ts:125
extend()
static extend(source): void
Parameters
Parameter | Type |
---|---|
source | any |
Returns
void
Inherited from
Defined in
submodules/univer/packages/core/src/facade/f-base.ts:35