mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-26 02:18:25 +08:00
ddd0ec48ac
* Add PowerLevelSelector.tsx. It's extracting the current behavior of the privileged users and muted of `RolesRoomSettingsTab.tsx` into a dedicated component. It's also adding a new apply button. * Use `PowerLevelSelector` to render privileged and muted users in `RolesRoomSettingsTab` * Update existing tests * Add playwright test * Fix typo * Fix typo
236 lines
5.2 KiB
Plaintext
236 lines
5.2 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`PowerLevelSelector should display only the current user 1`] = `
|
|
<fieldset
|
|
class="mx_SettingsFieldset"
|
|
>
|
|
<legend
|
|
class="mx_SettingsFieldset_legend"
|
|
>
|
|
title
|
|
</legend>
|
|
<div
|
|
class="mx_SettingsFieldset_content"
|
|
>
|
|
<div
|
|
class="mx_PowerSelector"
|
|
>
|
|
<div
|
|
class="mx_Field mx_Field_select"
|
|
>
|
|
<select
|
|
data-testid="power-level-select-element"
|
|
id="mx_Field_4"
|
|
label="@userId:matrix.org"
|
|
placeholder="@userId:matrix.org"
|
|
type="text"
|
|
>
|
|
<option
|
|
data-testid="power-level-option-0"
|
|
value="0"
|
|
>
|
|
Default
|
|
</option>
|
|
<option
|
|
data-testid="power-level-option-50"
|
|
value="50"
|
|
>
|
|
Moderator
|
|
</option>
|
|
<option
|
|
data-testid="power-level-option-100"
|
|
value="100"
|
|
>
|
|
Admin
|
|
</option>
|
|
<option
|
|
data-testid="power-level-option-SELECT_VALUE_CUSTOM"
|
|
value="SELECT_VALUE_CUSTOM"
|
|
>
|
|
Custom level
|
|
</option>
|
|
</select>
|
|
<label
|
|
for="mx_Field_4"
|
|
>
|
|
@userId:matrix.org
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<button
|
|
aria-disabled="true"
|
|
aria-label="Apply"
|
|
class="_button_dyfp8_17 mx_Dialog_nonDialogButton mx_PowerLevelSelector_Button"
|
|
data-kind="primary"
|
|
data-size="sm"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
Apply
|
|
</button>
|
|
</div>
|
|
</fieldset>
|
|
`;
|
|
|
|
exports[`PowerLevelSelector should render 1`] = `
|
|
<fieldset
|
|
class="mx_SettingsFieldset"
|
|
>
|
|
<legend
|
|
class="mx_SettingsFieldset_legend"
|
|
>
|
|
title
|
|
</legend>
|
|
<div
|
|
class="mx_SettingsFieldset_content"
|
|
>
|
|
<div
|
|
class="mx_PowerSelector"
|
|
>
|
|
<div
|
|
class="mx_Field mx_Field_select"
|
|
>
|
|
<select
|
|
data-testid="power-level-select-element"
|
|
id="mx_Field_1"
|
|
label="@bob:server.org"
|
|
placeholder="@bob:server.org"
|
|
type="text"
|
|
>
|
|
<option
|
|
data-testid="power-level-option-0"
|
|
value="0"
|
|
>
|
|
Default
|
|
</option>
|
|
<option
|
|
data-testid="power-level-option-50"
|
|
value="50"
|
|
>
|
|
Moderator
|
|
</option>
|
|
<option
|
|
data-testid="power-level-option-100"
|
|
value="100"
|
|
>
|
|
Admin
|
|
</option>
|
|
<option
|
|
data-testid="power-level-option-SELECT_VALUE_CUSTOM"
|
|
value="SELECT_VALUE_CUSTOM"
|
|
>
|
|
Custom level
|
|
</option>
|
|
</select>
|
|
<label
|
|
for="mx_Field_1"
|
|
>
|
|
@bob:server.org
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="mx_PowerSelector"
|
|
>
|
|
<div
|
|
class="mx_Field mx_Field_select"
|
|
>
|
|
<select
|
|
data-testid="power-level-select-element"
|
|
id="mx_Field_2"
|
|
label="@alice:server.org"
|
|
placeholder="@alice:server.org"
|
|
type="text"
|
|
>
|
|
<option
|
|
data-testid="power-level-option-0"
|
|
value="0"
|
|
>
|
|
Default
|
|
</option>
|
|
<option
|
|
data-testid="power-level-option-50"
|
|
value="50"
|
|
>
|
|
Moderator
|
|
</option>
|
|
<option
|
|
data-testid="power-level-option-100"
|
|
value="100"
|
|
>
|
|
Admin
|
|
</option>
|
|
<option
|
|
data-testid="power-level-option-SELECT_VALUE_CUSTOM"
|
|
value="SELECT_VALUE_CUSTOM"
|
|
>
|
|
Custom level
|
|
</option>
|
|
</select>
|
|
<label
|
|
for="mx_Field_2"
|
|
>
|
|
@alice:server.org
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="mx_PowerSelector"
|
|
>
|
|
<div
|
|
class="mx_Field mx_Field_select"
|
|
>
|
|
<select
|
|
data-testid="power-level-select-element"
|
|
id="mx_Field_3"
|
|
label="@userId:matrix.org"
|
|
placeholder="@userId:matrix.org"
|
|
type="text"
|
|
>
|
|
<option
|
|
data-testid="power-level-option-0"
|
|
value="0"
|
|
>
|
|
Default
|
|
</option>
|
|
<option
|
|
data-testid="power-level-option-50"
|
|
value="50"
|
|
>
|
|
Moderator
|
|
</option>
|
|
<option
|
|
data-testid="power-level-option-100"
|
|
value="100"
|
|
>
|
|
Admin
|
|
</option>
|
|
<option
|
|
data-testid="power-level-option-SELECT_VALUE_CUSTOM"
|
|
value="SELECT_VALUE_CUSTOM"
|
|
>
|
|
Custom level
|
|
</option>
|
|
</select>
|
|
<label
|
|
for="mx_Field_3"
|
|
>
|
|
@userId:matrix.org
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<button
|
|
aria-disabled="true"
|
|
aria-label="Apply"
|
|
class="_button_dyfp8_17 mx_Dialog_nonDialogButton mx_PowerLevelSelector_Button"
|
|
data-kind="primary"
|
|
data-size="sm"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
Apply
|
|
</button>
|
|
</div>
|
|
</fieldset>
|
|
`;
|