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

58 lines
1.4 KiB
JavaScript
Raw Normal View History

2020-06-23 00:09:42 +05:30
export const sourceContentHeader = `---
2020-04-22 19:07:51 +05:30
layout: handbook-page-toc
title: Handbook
twitter_image: '/images/tweets/handbook-gitlab.png'
2020-06-23 00:09:42 +05:30
---`;
export const sourceContentSpacing = `
`;
export const sourceContentBody = `## On this page
2020-04-22 19:07:51 +05:30
{:.no_toc .hidden-md .hidden-lg}
- TOC
{:toc .hidden-md .hidden-lg}
2020-07-28 23:09:34 +05:30
![image](path/to/image1.png)
2020-04-22 19:07:51 +05:30
`;
2020-06-23 00:09:42 +05:30
export const sourceContent = `${sourceContentHeader}${sourceContentSpacing}${sourceContentBody}`;
2020-04-22 19:07:51 +05:30
export const sourceContentTitle = 'Handbook';
export const username = 'gitlabuser';
export const projectId = '123456';
export const returnUrl = 'https://www.gitlab.com';
export const sourcePath = 'foobar.md.html';
export const savedContentMeta = {
branch: {
label: 'foobar',
url: 'foobar/-/tree/foobar',
},
commit: {
label: 'c1461b08',
url: 'foobar/-/c1461b08',
},
mergeRequest: {
label: '123',
url: 'foobar/-/merge_requests/123',
},
};
export const submitChangesError = 'Could not save changes';
2020-05-24 23:13:21 +05:30
export const commitBranchResponse = {
web_url: '/tree/root-master-patch-88195',
};
2020-04-22 19:07:51 +05:30
export const commitMultipleResponse = {
short_id: 'ed899a2f4b5',
web_url: '/commit/ed899a2f4b5',
};
export const createMergeRequestResponse = {
iid: '123',
web_url: '/merge_requests/123',
};
2020-05-24 23:13:21 +05:30
export const trackingCategory = 'projects:static_site_editor:show';
2020-07-28 23:09:34 +05:30
export const images = new Map([
['path/to/image1.png', 'image1-content'],
['path/to/image2.png', 'image2-content'],
]);