Commit 3cae13f0 authored by Enrique Alcántara's avatar Enrique Alcántara

Merge branch '241002-front-matter-controls' into 'master'

Resolve "Add front_matter_controls.vue component"

See merge request gitlab-org/gitlab!41613
parents 975df9c4 866be4d4
<script>
import { GlForm, GlFormInput, GlFormGroup } from '@gitlab/ui';
import { humanize } from '~/lib/utils/text_utility';
export default {
components: {
GlForm,
GlFormInput,
GlFormGroup,
},
props: {
settings: {
type: Object,
required: true,
},
},
data() {
return {
editableSettings: { ...this.settings },
};
},
methods: {
getId(type, key) {
return `sse-front-matter-${type}-${key}`;
},
getIsSupported(val) {
return ['string', 'number'].includes(typeof val);
},
getLabel(str) {
return humanize(str);
},
onUpdate() {
this.$emit('updateSettings', { ...this.editableSettings });
},
},
};
</script>
<template>
<gl-form>
<template v-for="(value, key) of editableSettings">
<gl-form-group
v-if="getIsSupported(value)"
:id="getId('form-group', key)"
:key="key"
:label="getLabel(key)"
:label-for="getId('control', key)"
>
<gl-form-input
:id="getId('control', key)"
v-model.lazy="editableSettings[key]"
type="text"
@input="onUpdate"
/>
</gl-form-group>
</template>
</gl-form>
</template>
import { shallowMount } from '@vue/test-utils';
import { GlFormGroup } from '@gitlab/ui';
import { humanize } from '~/lib/utils/text_utility';
import FrontMatterControls from '~/static_site_editor/components/front_matter_controls.vue';
describe('~/static_site_editor/components/front_matter_controls.vue', () => {
let wrapper;
// TODO Refactor and update `sourceContentHeaderObjYAML` in mock_data when !41230 lands
const settings = {
layout: 'handbook-page-toc',
title: 'Handbook',
twitter_image: '/images/tweets/handbook-gitlab.png',
suppress_header: true,
extra_css: ['sales-and-free-trial-common.css', 'form-to-resource.css'],
};
const buildWrapper = (propsData = {}) => {
wrapper = shallowMount(FrontMatterControls, {
propsData: {
settings,
...propsData,
},
});
};
beforeEach(() => {
buildWrapper();
});
afterEach(() => {
wrapper.destroy();
});
it('should render only the supported GlFormGroup types', () => {
expect(wrapper.findAll(GlFormGroup)).toHaveLength(3);
});
it.each`
key
${'layout'}
${'title'}
${'twitter_image'}
`('renders field when key is $key', ({ key }) => {
const glFormGroup = wrapper.find(`#sse-front-matter-form-group-${key}`);
const glFormInput = wrapper.find(`#sse-front-matter-control-${key}`);
expect(glFormGroup.exists()).toBe(true);
expect(glFormGroup.attributes().label).toBe(humanize(key));
expect(glFormInput.exists()).toBe(true);
expect(glFormInput.attributes().value).toBe(settings[key]);
});
it.each`
key
${'suppress_header'}
${'extra_css'}
`('does not render field when key is $key', ({ key }) => {
const glFormInput = wrapper.find(`#sse-front-matter-control-${key}`);
expect(glFormInput.exists()).toBe(false);
});
it('emits updated settings when nested control updates', () => {
const elId = `#sse-front-matter-control-title`;
const glFormInput = wrapper.find(elId);
const newTitle = 'New title';
glFormInput.vm.$emit('input', newTitle);
const newSettings = { ...settings, title: newTitle };
expect(wrapper.emitted('updateSettings')[0][0]).toMatchObject(newSettings);
});
});
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment