-
Notifications
You must be signed in to change notification settings - Fork 292
add: Телефоны для связи КМа с утилизаторами #3160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ultradyper
wants to merge
5
commits into
AdventureTimeSS14:master
Choose a base branch
from
ultradyper:add/qm-salvage-phones
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
0c949d4
add: Портативные телефоны КМа и утилизаторов
ultradyper 53aa550
tweak: Телефоны в шкафу КМа и шкафчиках утилизаторов
ultradyper 5d3ee5c
fix: Правки по ревью CodeRabbit: фильтр поиска при обновлении списка,…
ultradyper e74e2d3
fix: Ревью CodeRabbit: проверка держателя трубки в BUI и XML-доки
ultradyper 75e703d
refactor(phone): Звуки перенесены в ADTPhoneComponent, Dnd переименов…
ultradyper File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,100 @@ | ||
| using Content.Shared.ADT.Telephone; | ||
| using Robust.Client.UserInterface; | ||
| using Robust.Client.UserInterface.Controls; | ||
|
|
||
| namespace Content.Client.ADT.Telephone; | ||
|
|
||
| /// <summary> | ||
| /// Client-side telephone window: phone list, call, answer, hang up and DND. | ||
| /// </summary> | ||
| public sealed class ADTPhoneBui : BoundUserInterface | ||
| { | ||
| private ADTPhoneWindow? _window; | ||
| private bool _doNotDisturb; | ||
|
|
||
| public ADTPhoneBui(EntityUid owner, Enum uiKey) : base(owner, uiKey) | ||
| { | ||
| } | ||
|
|
||
| protected override void Open() | ||
| { | ||
| base.Open(); | ||
|
|
||
| // Reuse the window if it was somehow opened twice. | ||
| if (_window is { Disposed: false, IsOpen: true }) | ||
| return; | ||
|
|
||
| _window = this.CreateWindow<ADTPhoneWindow>(); | ||
| if (EntMan.TryGetComponent(Owner, out MetaDataComponent? metaData)) | ||
| _window.Title = metaData.EntityName; | ||
|
|
||
| _window.SearchBar.OnTextChanged += OnSearchChanged; | ||
| _window.AnswerButton.OnPressed += _ => SendMessage(new ADTPhoneAnswerMsg()); | ||
| _window.HangUpButton.OnPressed += _ => SendMessage(new ADTPhoneHangUpMsg()); | ||
| _window.DoNotDisturbButton.OnPressed += _ => SendMessage(new ADTPhoneDoNotDisturbMsg(!_doNotDisturb)); | ||
|
|
||
| Refresh(); | ||
| } | ||
|
|
||
| protected override void UpdateState(BoundUserInterfaceState state) | ||
| { | ||
| Refresh(); | ||
| } | ||
|
|
||
| private void OnSearchChanged(LineEdit.LineEditEventArgs args) | ||
| { | ||
| ApplySearchFilter(args.Text); | ||
| } | ||
|
|
||
| private void ApplySearchFilter(string text) | ||
| { | ||
| if (_window == null) | ||
| return; | ||
|
|
||
| foreach (var child in _window.PhonesList.Children) | ||
| { | ||
| if (child is Button button) | ||
| button.Visible = string.IsNullOrEmpty(text) || | ||
| button.Text?.Contains(text, StringComparison.OrdinalIgnoreCase) == true; | ||
| } | ||
| } | ||
|
|
||
| private void Refresh() | ||
| { | ||
| if (_window is not { IsOpen: true } || State is not ADTPhoneBuiState state) | ||
| return; | ||
|
|
||
| _doNotDisturb = state.DoNotDisturb; | ||
|
|
||
| _window.PhonesList.DisposeAllChildren(); | ||
|
|
||
| if (state.Phones.Count == 0) | ||
| { | ||
| _window.PhonesList.AddChild(new Label | ||
| { | ||
| Text = Loc.GetString("adt-phone-no-phones"), | ||
| HorizontalAlignment = Control.HAlignment.Center, | ||
| Margin = new Thickness(0, 8), | ||
| }); | ||
| } | ||
|
|
||
| foreach (var phone in state.Phones) | ||
| { | ||
| var button = new Button | ||
| { | ||
| Text = phone.Name, | ||
| HorizontalExpand = true, | ||
| StyleClasses = { "OpenBoth" }, | ||
| }; | ||
| var id = phone.Id; | ||
| button.OnPressed += _ => SendMessage(new ADTPhoneCallMsg(id)); | ||
| _window.PhonesList.AddChild(button); | ||
| } | ||
|
|
||
| ApplySearchFilter(_window.SearchBar.Text); | ||
|
|
||
| _window.AnswerButton.Visible = state.Ringing; | ||
| _window.HangUpButton.Visible = state.Engaged; | ||
| _window.DoNotDisturbButton.Text = Loc.GetString(state.DoNotDisturb ? "adt-phone-do-not-disturb-on" : "adt-phone-do-not-disturb-off"); | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| <DefaultWindow xmlns="https://spacestation14.io" | ||
| Title="{Loc 'adt-phone-window-title'}" | ||
| SetSize="320 420" | ||
| MinSize="280 320"> | ||
| <BoxContainer Orientation="Vertical" Margin="4"> | ||
| <LineEdit Name="SearchBar" | ||
| Access="Public" | ||
| PlaceHolder="{Loc 'adt-phone-search'}" | ||
| HorizontalExpand="True" | ||
| MinSize="0 32"/> | ||
| <ScrollContainer HScrollEnabled="False" | ||
| VerticalExpand="True" | ||
| MinSize="0 200" | ||
| Margin="0 4"> | ||
| <BoxContainer Name="PhonesList" | ||
| Access="Public" | ||
| Orientation="Vertical" | ||
| HorizontalExpand="True"/> | ||
| </ScrollContainer> | ||
| <BoxContainer Orientation="Horizontal"> | ||
| <Button Name="AnswerButton" | ||
| Access="Public" | ||
| Text="{Loc 'adt-phone-answer'}" | ||
| HorizontalExpand="True" | ||
| StyleClasses="OpenRight"/> | ||
| <Button Name="HangUpButton" | ||
| Access="Public" | ||
| Text="{Loc 'adt-phone-hang-up'}" | ||
| HorizontalExpand="True" | ||
| StyleClasses="OpenBoth"/> | ||
| </BoxContainer> | ||
| <Button Name="DoNotDisturbButton" | ||
| Access="Public" | ||
| Text="{Loc 'adt-phone-do-not-disturb-off'}" | ||
| HorizontalExpand="True" | ||
| Margin="0 4 0 0"/> | ||
| </BoxContainer> | ||
| </DefaultWindow> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| using Robust.Client.AutoGenerated; | ||
| using Robust.Client.UserInterface.Controls; | ||
| using Robust.Client.UserInterface.CustomControls; | ||
| using Robust.Client.UserInterface.XAML; | ||
|
|
||
| namespace Content.Client.ADT.Telephone; | ||
|
|
||
| [GenerateTypedNameReferences] | ||
| public sealed partial class ADTPhoneWindow : DefaultWindow | ||
| { | ||
| public ADTPhoneWindow() | ||
| { | ||
| RobustXamlLoader.Load(this); | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.