Disable chat effects when reduce motion preferred
Some users prefer reduced motion, so this disables chat effects when such a preference is set in the browser or OS.
This commit is contained in:
parent
d643f06ff0
commit
10e25f306f
2 changed files with 47 additions and 0 deletions
45
src/settings/controllers/ReducedMotionController.ts
Normal file
45
src/settings/controllers/ReducedMotionController.ts
Normal file
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
Copyright 2021 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 SettingController from "./SettingController";
|
||||
import { SettingLevel } from "../SettingLevel";
|
||||
|
||||
/**
|
||||
* For animation-like settings, this controller checks whether the user has
|
||||
* indicated they prefer reduced motion via browser or OS level settings.
|
||||
* If they have, this forces the setting value to false.
|
||||
*/
|
||||
export default class ReducedMotionController extends SettingController {
|
||||
public getValueOverride(
|
||||
level: SettingLevel,
|
||||
roomId: string,
|
||||
calculatedValue: any,
|
||||
calculatedAtLevel: SettingLevel,
|
||||
): any {
|
||||
if (this.prefersReducedMotion()) {
|
||||
return false;
|
||||
}
|
||||
return null; // no override
|
||||
}
|
||||
|
||||
public get settingDisabled(): boolean {
|
||||
return this.prefersReducedMotion();
|
||||
}
|
||||
|
||||
private prefersReducedMotion(): boolean {
|
||||
return window.matchMedia("(prefers-reduced-motion: reduce)").matches;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue