GroupsDataSource
Defined in: js-api/src/dapi.ts:714
Functionality for handling groups collection from server Allows to manage Group
Extends
Constructors
Constructor
new GroupsDataSource(
s,clsName):GroupsDataSource
Defined in: js-api/src/dapi.ts:715
Parameters
| Parameter | Type |
|---|---|
s | any |
clsName | string |
Returns
GroupsDataSource
Overrides
Properties
| Property | Type | Inherited from | Defined in |
|---|---|---|---|
clsName | string | HttpDataSource.clsName | js-api/src/dapi.ts:323 |
dart | any | HttpDataSource.dart | js-api/src/dapi.ts:322 |
Methods
addAdminMember()
addAdminMember(
g,m):Promise<void>
Defined in: js-api/src/dapi.ts:741
Adds an admin member to the group
Parameters
| Parameter | Type |
|---|---|
g | Group |
m | Group |
Returns
Promise<void>
addMember()
addMember(
g,m):Promise<void>
Defined in: js-api/src/dapi.ts:734
Adds a member to the group
Parameters
| Parameter | Type |
|---|---|
g | Group |
m | Group |
Returns
Promise<void>
allPackageVersions()
allPackageVersions():
this
Defined in: js-api/src/dapi.ts:404
A source without package version isolation: entities of all package versions, not only the current one.
Returns
this
Inherited from
HttpDataSource.allPackageVersions
by()
by(
i):this
Defined in: js-api/src/dapi.ts:409
A source that returns at most [i] entities per page. See also page.
Parameters
| Parameter | Type |
|---|---|
i | number |
Returns
this
Inherited from
count()
count():
Promise<number>
Defined in: js-api/src/dapi.ts:375
Counts entities that satisfy the filtering criteria (see filter). See examples: https://public.datagrok.ai/js/samples/dapi/projects-list Smart filter: https://datagrok.ai/help/datagrok/smart-search
Returns
Promise<number>
Inherited from
createNew()
createNew(
name):Promise<Group>
Defined in: js-api/src/dapi.ts:723
Creates a new group
Parameters
| Parameter | Type |
|---|---|
name | string |
Returns
Promise<Group>
Group.
currentUserGroups()
currentUserGroups():
Promise<Group[]>
Defined in: js-api/src/dapi.ts:788
Returns all groups the current user belongs to, including transitive parent groups.
Returns
Promise<Group[]>
delete()
delete(
e):Promise<void>
Defined in: js-api/src/dapi.ts:399
Deletes an entity.
Parameters
| Parameter | Type |
|---|---|
e | Entity |
Returns
Promise<void>
Inherited from
excludeFrom()
excludeFrom(
g,parent):Promise<void>
Defined in: js-api/src/dapi.ts:770
Removes a membership from the group
Parameters
| Parameter | Type |
|---|---|
g | Group |
parent | Group |
Returns
Promise<void>
filter()
filter(
w):this
Defined in: js-api/src/dapi.ts:429
A source filtered by [w]; replaces the filter of this source, if any. Also can be set with list method "options" parameter See example: https://public.datagrok.ai/js/samples/dapi/projects-list Smart filter: https://datagrok.ai/help/datagrok/concepts/objects#entity-search
Parameters
| Parameter | Type |
|---|---|
w | string |
Returns
this
Inherited from
find()
find(
id):Promise<Group>
Defined in: js-api/src/dapi.ts:389
Returns an entity with the specified id. Throws an exception if an entity does not exist, or is not accessible in the current context. Sample: https://public.datagrok.ai/js/samples/data-access/save-and-load-df
Parameters
| Parameter | Type | Description |
|---|---|---|
id | string | GUID of the corresponding object |
Returns
Promise<Group>
{Promise<object>} - entity.
Inherited from
first()
first():
Promise<Group>
Defined in: js-api/src/dapi.ts:380
Returns the first entity that satisfies the filtering criteria (see filter).
Returns
Promise<Group>
Inherited from
getGroupsLookup()
getGroupsLookup(
name):Promise<Group[]>
Defined in: js-api/src/dapi.ts:783
Looking for groups with similar name
Parameters
| Parameter | Type |
|---|---|
name | string |
Returns
Promise<Group[]>
getUser()
getUser(
group):Promise<User>
Defined in: js-api/src/dapi.ts:729
Returns the user behind a personal group.
Parameters
| Parameter | Type |
|---|---|
group | Group |
Returns
Promise<User>
include()
include(
include):this
Defined in: js-api/src/dapi.ts:439
A source that also loads the [include]d properties of every entity (adds to this source's includes).
Parameters
| Parameter | Type |
|---|---|
include | string |
Returns
this
Inherited from
includeAdminTo()
includeAdminTo(
g,parent):Promise<void>
Defined in: js-api/src/dapi.ts:763
Adds the group to another one as admin
Parameters
| Parameter | Type |
|---|---|
g | Group |
parent | Group |
Returns
Promise<void>
includeTo()
includeTo(
g,parent):Promise<void>
Defined in: js-api/src/dapi.ts:755
Adds the group to another one
Parameters
| Parameter | Type |
|---|---|
g | Group |
parent | Group |
Returns
Promise<void>
list()
list(
options?):Promise<Group[]>
Defined in: js-api/src/dapi.ts:359
Returns all entities that satisfy the filtering criteria (see filter). See examples: https://public.datagrok.ai/js/samples/dapi/projects-list Smart filter: https://datagrok.ai/help/datagrok/smart-search
Parameters
| Parameter | Type |
|---|---|
options | { filter?: string; order?: string; pageNumber?: number; pageSize?: number; } |
options.filter? | string |
options.order? | string |
options.pageNumber? | number |
options.pageSize? | number |
Returns
Promise<Group[]>
Inherited from
nextPage()
nextPage():
this
Defined in: js-api/src/dapi.ts:421
A source for the page after this one (the first call gives page 1). Reassign to advance:
source = source.nextPage().
See examples: https://public.datagrok.ai/js/samples/dapi/projects-list
Returns
this
Inherited from
order()
order(
fieldName,desc?):this
Defined in: js-api/src/dapi.ts:434
A source ordered by [fieldName]; replaces the order of this source, if any.
Parameters
| Parameter | Type | Default value |
|---|---|---|
fieldName | string | undefined |
desc | boolean | false |
Returns
this
Inherited from
page()
page(
i):this
Defined in: js-api/src/dapi.ts:414
A source restricted to page [i]. See also nextPage.
Parameters
| Parameter | Type |
|---|---|
i | number |
Returns
this
Inherited from
removeMember()
removeMember(
g,m):Promise<void>
Defined in: js-api/src/dapi.ts:748
Removes a member from the group
Parameters
| Parameter | Type |
|---|---|
g | Group |
m | Group |
Returns
Promise<void>
requestMembership()
requestMembership(
group,requester):Promise<void>
Defined in: js-api/src/dapi.ts:794
Requests that requester be added as a member of group.
An admin of group must approve before the membership takes effect.
Parameters
| Parameter | Type |
|---|---|
group | Group |
requester | Group |
Returns
Promise<void>
save()
save(
e):Promise<Group>
Defined in: js-api/src/dapi.ts:394
Saves an entity; the saved copy comes back with this source's includes loaded.
Parameters
| Parameter | Type |
|---|---|
e | Entity |
Returns
Promise<Group>
Inherited from
saveRelations()
saveRelations(
e):Promise<Group>
Defined in: js-api/src/dapi.ts:778
Saves a group with relations
Parameters
| Parameter | Type |
|---|---|
e | Group |
Returns
Promise<Group>
Group.
with()
protectedwith(patch):this
Defined in: js-api/src/dapi.ts:334
A copy of this source whose query has [patch] applied. The Dart handle is shared; its state is rebuilt from the query right before every request, so the copies never observe each other.
Parameters
| Parameter | Type |
|---|---|
patch | Partial<DataSourceQuery> |
Returns
this