This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 833
Apply strictNullChecks
to src/components/views/spaces/*
#10517
Merged
Merged
Changes from 19 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
fd1f7ad
Apply to
weeman1337 8208286
Update translations
weeman1337 92bbddd
Fix types
weeman1337 4bba118
Add QuickSettingsButton-test
weeman1337 bec51d1
Fix QuickSettingsButton-test
weeman1337 85a0375
Use settings hook
weeman1337 25eca97
Inline dev tools button
weeman1337 fee96ec
Roll back theme.ts changes
weeman1337 3e4c7e0
Now really roll back theme.ts changes
weeman1337 93740b2
Fix custom themes default
weeman1337 5d48964
Merge branch 'develop' into weeman1337/strictify-spaces-views
weeman1337 173c1fc
Fix custom_themes default value
weeman1337 5dfcb54
Merge branch 'develop' into weeman1337/strictify-spaces-views
weeman1337 477ea21
Merge branch 'develop' into weeman1337/strictify-spaces-views
weeman1337 84d9c1c
Extend theme test
weeman1337 51ab2ca
Merge branch 'develop' into weeman1337/strictify-spaces-views
weeman1337 8adab89
Merge branch 'develop' into weeman1337/strictify-spaces-views
weeman1337 aed4abe
Merge branch 'develop' into weeman1337/strictify-spaces-views
weeman1337 f1f6f34
Extend and use ICustomTheme interface
weeman1337 2ad3177
Update i18n files
weeman1337 a0def30
Make CustomTheme a type; use more generic type in settings
weeman1337 ab57131
Merge branch 'develop' into weeman1337/strictify-spaces-views
t3chguy 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 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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,96 @@ | ||
/* | ||
Copyright 2023 The Matrix.org Foundation C.I.C. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
import React from "react"; | ||
import { render, screen } from "@testing-library/react"; | ||
import userEvent from "@testing-library/user-event"; | ||
import { mocked } from "jest-mock"; | ||
|
||
import QuickSettingsButton from "../../../../src/components/views/spaces/QuickSettingsButton"; | ||
import SettingsStore from "../../../../src/settings/SettingsStore"; | ||
import { SdkContextClass } from "../../../../src/contexts/SDKContext"; | ||
|
||
describe("QuickSettingsButton", () => { | ||
const roomId = "!room:example.com"; | ||
|
||
const renderQuickSettingsButton = () => { | ||
render(<QuickSettingsButton isPanelCollapsed={true} />); | ||
}; | ||
|
||
const getQuickSettingsButton = () => { | ||
return screen.getByRole("button", { name: "Quick settings" }); | ||
}; | ||
|
||
const openQuickSettings = async () => { | ||
await userEvent.click(getQuickSettingsButton()); | ||
await screen.findByText("Quick settings"); | ||
}; | ||
|
||
it("should render the quick settings button", () => { | ||
renderQuickSettingsButton(); | ||
expect(getQuickSettingsButton()).toBeInTheDocument(); | ||
}); | ||
|
||
describe("when the quick settings are open", () => { | ||
beforeEach(async () => { | ||
renderQuickSettingsButton(); | ||
await openQuickSettings(); | ||
}); | ||
|
||
it("should not render the »Developer tools« button", () => { | ||
renderQuickSettingsButton(); | ||
expect(screen.queryByText("Developer tools")).not.toBeInTheDocument(); | ||
}); | ||
}); | ||
|
||
describe("when developer mode is enabled", () => { | ||
beforeEach(() => { | ||
jest.spyOn(SettingsStore, "getValue").mockImplementation((setting) => setting === "developerMode"); | ||
renderQuickSettingsButton(); | ||
}); | ||
|
||
afterEach(() => { | ||
mocked(SettingsStore.getValue).mockRestore(); | ||
}); | ||
|
||
describe("and no room is viewed", () => { | ||
it("should not render the »Developer tools« button", () => { | ||
renderQuickSettingsButton(); | ||
expect(screen.queryByText("Developer tools")).not.toBeInTheDocument(); | ||
}); | ||
}); | ||
|
||
describe("and a room is viewed", () => { | ||
beforeEach(() => { | ||
jest.spyOn(SdkContextClass.instance.roomViewStore, "getRoomId").mockReturnValue(roomId); | ||
}); | ||
|
||
afterEach(() => { | ||
mocked(SdkContextClass.instance.roomViewStore.getRoomId).mockRestore(); | ||
}); | ||
|
||
describe("and the quick settings are open", () => { | ||
beforeEach(async () => { | ||
await openQuickSettings(); | ||
}); | ||
|
||
it("should render the »Developer tools« button", () => { | ||
expect(screen.getByRole("button", { name: "Developer tools" })).toBeInTheDocument(); | ||
}); | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if this interests you, but there's now a
Typeguards.ts
file that has anisNotUndefined
helper typeguard for situations like this.