mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
111 lines
2.6 KiB
JavaScript
111 lines
2.6 KiB
JavaScript
import { GlFilteredSearchToken } from '@gitlab/ui';
|
|
import { s__, __ } from '~/locale';
|
|
import {
|
|
OPERATORS_AFTER_BEFORE,
|
|
OPERATORS_IS,
|
|
} from '~/vue_shared/components/filtered_search_bar/constants';
|
|
import DateToken from '~/vue_shared/components/filtered_search_bar/tokens/date_token.vue';
|
|
|
|
export const SORT_KEY_NAME = 'name';
|
|
export const SORT_KEY_CREATED = 'created';
|
|
export const SORT_KEY_EXPIRES = 'expires';
|
|
|
|
export const TOKENS = [
|
|
{
|
|
icon: 'key',
|
|
title: s__('CredentialsInventory|Type'),
|
|
type: 'filter',
|
|
token: GlFilteredSearchToken,
|
|
operators: OPERATORS_IS,
|
|
unique: true,
|
|
options: [
|
|
{
|
|
value: 'personal_access_tokens',
|
|
title: s__('CredentialsInventory|Personal access tokens'),
|
|
},
|
|
{ value: 'ssh_keys', title: s__('CredentialsInventory|SSH keys') },
|
|
{
|
|
value: 'resource_access_tokens',
|
|
title: s__('CredentialsInventory|Project and group access tokens'),
|
|
},
|
|
{ value: 'gpg_keys', title: s__('CredentialsInventory|GPG keys') },
|
|
],
|
|
},
|
|
{
|
|
icon: 'status',
|
|
title: s__('CredentialsInventory|State'),
|
|
type: 'state',
|
|
token: GlFilteredSearchToken,
|
|
operators: OPERATORS_IS,
|
|
unique: true,
|
|
options: [
|
|
{ value: 'active', title: s__('CredentialsInventory|Active') },
|
|
{ value: 'inactive', title: s__('CredentialsInventory|Inactive') },
|
|
],
|
|
},
|
|
{
|
|
icon: 'remove',
|
|
title: s__('CredentialsInventory|Revoked'),
|
|
type: 'revoked',
|
|
token: GlFilteredSearchToken,
|
|
operators: OPERATORS_IS,
|
|
unique: true,
|
|
options: [{ value: 'true', title: __('Yes') }],
|
|
},
|
|
{
|
|
icon: 'history',
|
|
title: s__('CredentialsInventory|Created date'),
|
|
type: 'created',
|
|
token: DateToken,
|
|
operators: OPERATORS_AFTER_BEFORE,
|
|
unique: true,
|
|
},
|
|
{
|
|
icon: 'history',
|
|
title: s__('CredentialsInventory|Expiration date'),
|
|
type: 'expires',
|
|
token: DateToken,
|
|
operators: OPERATORS_AFTER_BEFORE,
|
|
unique: true,
|
|
},
|
|
{
|
|
icon: 'history',
|
|
title: s__('CredentialsInventory|Last used date'),
|
|
type: 'last_used',
|
|
token: DateToken,
|
|
operators: OPERATORS_AFTER_BEFORE,
|
|
unique: true,
|
|
},
|
|
];
|
|
|
|
export const SORT_OPTIONS = [
|
|
{
|
|
text: __('Name'),
|
|
value: SORT_KEY_NAME,
|
|
sort: {
|
|
asc: 'name_asc',
|
|
desc: 'name_desc',
|
|
},
|
|
},
|
|
{
|
|
text: __('Created date'),
|
|
value: SORT_KEY_CREATED,
|
|
sort: {
|
|
asc: 'created_asc',
|
|
desc: 'created_desc',
|
|
},
|
|
},
|
|
{
|
|
text: __('Expiration date'),
|
|
value: SORT_KEY_EXPIRES,
|
|
sort: {
|
|
asc: 'expires_at_asc_id_desc',
|
|
},
|
|
},
|
|
];
|
|
|
|
export const DEFAULT_SORT = {
|
|
value: SORT_KEY_EXPIRES,
|
|
isAsc: true,
|
|
};
|