Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4111598
BlockTypeField.vue
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
BlockTypeField.vue
View Options
<template>
<cdx-field :is-fieldset="true">
<template #label>
{{ $i18n( 'block-actions' ).text() }}
</template>
<cdx-radio
v-for="radio in typeCheckboxes"
:key="'radio-' + radio.value"
v-model="type"
name="wpEditingRestriction"
:input-value="radio.value"
>
{{ radio.label }}
<template #description>
<span v-i18n-html="radio.descriptionMsg"></span>
</template>
</cdx-radio>
<div
v-if="type === 'partial'"
class="mw-block-partial-options"
>
<pages-field></pages-field>
<namespaces-field></namespaces-field>
<cdx-field :is-fieldset="true">
<cdx-checkbox
v-for="checkbox in partialBlockCheckboxes"
:key="'checkbox-' + checkbox.value"
v-model="partialOptions"
:input-value="checkbox.value"
>
{{ checkbox.label }}
</cdx-checkbox>
</cdx-field>
</div>
</cdx-field>
</template>
<script>
const { defineComponent } = require( 'vue' );
const { CdxCheckbox, CdxRadio, CdxField } = require( '@wikimedia/codex' );
const { storeToRefs } = require( 'pinia' );
const useBlockStore = require( '../stores/block.js' );
const PagesField = require( './PagesField.vue' );
const NamespacesField = require( './NamespacesField.vue' );
module.exports = exports = defineComponent( {
name: 'BlockTypeField',
components: {
CdxCheckbox,
CdxRadio,
CdxField,
NamespacesField,
PagesField
},
setup() {
const { type, partialOptions } = storeToRefs( useBlockStore() );
const typeCheckboxes = [
{
label: mw.message( 'blocklist-type-opt-sitewide' ),
descriptionMsg: 'ipb-sitewide-help',
value: 'sitewide'
},
{
label: mw.message( 'blocklist-type-opt-partial' ),
descriptionMsg: 'ipb-partial-help',
value: 'partial'
}
];
const partialBlockCheckboxes = mw.config.get( 'partialBlockActionOptions' ) ?
Object.keys( mw.config.get( 'partialBlockActionOptions' ) ).map(
// Messages that can be used here:
// * ipb-action-upload
// * ipb-action-move
// * ipb-action-create
( key ) => Object( { label: mw.message( key ).text(), value: key } ) ) :
[];
return {
type,
typeCheckboxes,
partialOptions,
partialBlockCheckboxes
};
}
} );
</script>
<style lang="less">
@import 'mediawiki.skin.variables.less';
.mw-block-form {
margin-top: @spacing-100;
}
.mw-block-partial-options {
padding-left: calc( @size-125 + @spacing-50 );
.cdx-label__label__text {
font-weight: @font-weight-normal;
}
}
</style>
File Metadata
Details
Attached
Mime Type
text/html
Expires
Tue, Aug 18, 22:25 (1 d, 1 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b3/7a/5ec6358bd4870a461ec16be60c18
Default Alt Text
BlockTypeField.vue (2 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment