All files / ext.wikilambda.edit/components/default-view-types ZTypedList.vue

98.58% Statements 139/141
90.9% Branches 10/11
83.33% Functions 5/6
98.58% Lines 139/141

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 1421x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 10x 10x 10x 1x 1x 1x 1x 1x 1x 1x 1x 1x 45x 1x 1x 1x 1x 1x 1x 1x 1x 1x 45x 45x 45x 45x 1x 1x 1x 1x 1x 1x 1x 1x 9x 2x 2x 2x 2x 2x 2x 7x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x     1x 1x 1x 1x 1x 1x 1x 1x 1x  
<!--
	WikiLambda Vue component for a Typed List.
 
	@copyright 2020– Abstract Wikipedia team; see AUTHORS.txt
	@license MIT
-->
<template>
	<div
		class="ext-wikilambda-ztyped-list"
		:class="nestingDepthClass"
	>
		<!-- Type of list item -->
		<wl-z-typed-list-type
			v-if="expanded"
			:row-id="itemTypeRowId"
			:edit="edit"
			:list-item-type="listItemType"
			:list-items-row-ids="listItemsRowIds"
			:parent-row-id="rowId"
		></wl-z-typed-list-type>
 
		<!-- Collection of items -->
		<wl-z-typed-list-items
			:expanded="expanded"
			:edit="edit"
			:list-item-type="listItemType"
			:list-items-row-ids="listItemsRowIds"
			@add-list-item="addListItem"
		></wl-z-typed-list-items>
	</div>
</template>
 
<script>
const { defineComponent } = require( 'vue' );
const ZTypedListItems = require( './ZTypedListItems.vue' ),
	ZTypedListType = require( './ZTypedListType.vue' ),
	typeUtils = require( '../../mixins/typeUtils.js' ),
	mapGetters = require( 'vuex' ).mapGetters;
 
module.exports = exports = defineComponent( {
	name: 'wl-z-typed-list',
	components: {
		'wl-z-typed-list-items': ZTypedListItems,
		'wl-z-typed-list-type': ZTypedListType
	},
	mixins: [ typeUtils ],
	props: {
		rowId: {
			type: Number,
			required: false,
			default: 0
		},
		edit: {
			type: Boolean,
			required: true
		},
		expanded: {
			type: Boolean,
			required: true
		},
		depth: {
			type: Number,
			required: true
		}
	},
	computed: Object.assign(
		mapGetters( [
			'getChildrenByParentRowId',
			'getTypedListItemType'
		] ),
		{
			/**
			 * Returns the id for the first item on the list,
			 * which represents the type of the list items
			 *
			 * @return {number}
			 */
			itemTypeRowId: function () {
				const firstItem = this.getChildrenByParentRowId( this.rowId )
					.find( ( item ) => item.key === '0' );
				return firstItem ? firstItem.id : undefined;
			},
 
			/**
			 * Returns the string representation of the expected
			 * type for the list items
			 *
			 * @return {string}
			 */
			listItemType: function () {
				return this.getTypedListItemType( this.rowId );
			},
 
			/**
			 * Returns the list of item row Ids (without the type item)
			 * sorted by their key
			 *
			 * @return {Array}
			 */
			listItemsRowIds: function () {
				return this.getChildrenByParentRowId( this.rowId )
					.sort( ( a, b ) => parseInt( a.key ) - parseInt( b.key ) )
					.slice( 1 )
					.map( ( row ) => row.id );
			},
 
			/**
			 * Returns the css class that identifies the nesting level
			 *
			 * @return {string[]}
			 */
			nestingDepthClass: function () {
				if ( this.expanded ) {
					return [
						'ext-wikilambda-default-key-depth',
						'ext-wikilambda-key-value-set',
						`ext-wikilambda-key-level-${ this.depth }`
					];
				}
				return [];
			},
 
			/**
			 * Returns the key label for the list of items.
			 * Since the FE represents typed lists as benjamin arrays,
			 * this must be hardcoded
			 *
			 * @return {string}
			 */
			itemsLabel: function () {
				return this.$i18n( 'wikilambda-list-items-label' ).text();
			}
		}
	),
	methods: {
		addListItem: function () {
			this.$emit( 'add-list-item', { value: this.listItemType } );
		}
	}
} );
</script>