debian-mirror-gitlab/spec/frontend/search/mock_data.js

110 lines
2.4 KiB
JavaScript
Raw Normal View History

2021-09-30 23:02:18 +05:30
import { GROUPS_LOCAL_STORAGE_KEY, PROJECTS_LOCAL_STORAGE_KEY } from '~/search/store/constants';
import * as types from '~/search/store/mutation_types';
2021-01-29 00:20:46 +05:30
export const MOCK_QUERY = {
scope: 'issues',
state: 'all',
confidential: null,
2021-09-04 01:27:46 +05:30
group_id: 1,
2021-01-29 00:20:46 +05:30
};
export const MOCK_GROUP = {
2021-09-30 23:02:18 +05:30
id: 1,
2021-01-29 00:20:46 +05:30
name: 'test group',
2021-09-04 01:27:46 +05:30
full_name: 'full name / test group',
2021-01-29 00:20:46 +05:30
};
export const MOCK_GROUPS = [
{
2021-09-30 23:02:18 +05:30
id: 1,
2021-09-04 01:27:46 +05:30
avatar_url: null,
2021-01-29 00:20:46 +05:30
name: 'test group',
2021-09-04 01:27:46 +05:30
full_name: 'full name / test group',
2021-01-29 00:20:46 +05:30
},
{
2021-09-30 23:02:18 +05:30
id: 2,
2021-09-04 01:27:46 +05:30
avatar_url: 'https://avatar.com',
2021-01-29 00:20:46 +05:30
name: 'test group 2',
2021-09-04 01:27:46 +05:30
full_name: 'full name / test group 2',
2021-01-29 00:20:46 +05:30
},
];
2021-02-22 17:27:13 +05:30
export const MOCK_PROJECT = {
2021-09-30 23:02:18 +05:30
id: 1,
2021-02-22 17:27:13 +05:30
name: 'test project',
2021-03-11 19:13:27 +05:30
namespace: MOCK_GROUP,
2021-09-04 01:27:46 +05:30
nameWithNamespace: 'test group / test project',
2021-02-22 17:27:13 +05:30
};
export const MOCK_PROJECTS = [
{
2021-09-30 23:02:18 +05:30
id: 1,
2021-02-22 17:27:13 +05:30
name: 'test project',
2021-03-11 19:13:27 +05:30
namespace: MOCK_GROUP,
2021-09-04 01:27:46 +05:30
name_with_namespace: 'test group / test project',
2021-02-22 17:27:13 +05:30
},
{
2021-09-30 23:02:18 +05:30
id: 2,
2021-02-22 17:27:13 +05:30
name: 'test project 2',
2021-03-11 19:13:27 +05:30
namespace: MOCK_GROUP,
2021-09-04 01:27:46 +05:30
name_with_namespace: 'test group / test project 2',
2021-02-22 17:27:13 +05:30
},
];
2021-03-11 19:13:27 +05:30
export const MOCK_SORT_OPTIONS = [
{
title: 'Most relevant',
sortable: false,
sortParam: 'relevant',
},
{
title: 'Created date',
sortable: true,
sortParam: {
asc: 'created_asc',
desc: 'created_desc',
},
},
];
2021-09-30 23:02:18 +05:30
export const MOCK_LS_KEY = 'mock-ls-key';
export const MOCK_INFLATED_DATA = [
{ id: 1, name: 'test 1' },
{ id: 2, name: 'test 2' },
];
export const FRESH_STORED_DATA = [
{ id: 1, name: 'test 1', frequency: 1 },
{ id: 2, name: 'test 2', frequency: 2 },
];
export const STALE_STORED_DATA = [
{ id: 1, name: 'blah 1', frequency: 1 },
{ id: 2, name: 'blah 2', frequency: 2 },
];
export const MOCK_FRESH_DATA_RES = { name: 'fresh' };
2021-10-27 15:23:28 +05:30
export const PRELOAD_EXPECTED_MUTATIONS = [
{
2021-09-30 23:02:18 +05:30
type: types.LOAD_FREQUENT_ITEMS,
payload: { key: GROUPS_LOCAL_STORAGE_KEY, data: FRESH_STORED_DATA },
},
2021-10-27 15:23:28 +05:30
{
2021-09-30 23:02:18 +05:30
type: types.LOAD_FREQUENT_ITEMS,
2021-10-27 15:23:28 +05:30
payload: { key: PROJECTS_LOCAL_STORAGE_KEY, data: FRESH_STORED_DATA },
2021-09-30 23:02:18 +05:30
},
2021-10-27 15:23:28 +05:30
];
export const PROMISE_ALL_EXPECTED_MUTATIONS = {
resGroups: {
2021-09-30 23:02:18 +05:30
type: types.LOAD_FREQUENT_ITEMS,
2021-10-27 15:23:28 +05:30
payload: { key: GROUPS_LOCAL_STORAGE_KEY, data: [MOCK_FRESH_DATA_RES, MOCK_FRESH_DATA_RES] },
2021-09-30 23:02:18 +05:30
},
resProjects: {
type: types.LOAD_FREQUENT_ITEMS,
payload: { key: PROJECTS_LOCAL_STORAGE_KEY, data: [MOCK_FRESH_DATA_RES, MOCK_FRESH_DATA_RES] },
},
};