2020-02-28 07:01:48 -08:00
|
|
|
import UserCardContents from "discourse/components/user-card-contents";
|
2023-07-13 15:47:03 -07:00
|
|
|
import { action } from "@ember/object";
|
2020-02-28 07:01:48 -08:00
|
|
|
|
|
|
|
export default UserCardContents.extend({
|
|
|
|
layoutName: "components/user-card-contents",
|
|
|
|
elementId: null,
|
|
|
|
// Overriding functions which cause the user card to show/hide based on mouse/keyboard events:
|
|
|
|
cleanUp() {},
|
|
|
|
didInsertElement() {},
|
|
|
|
willDestroyElement() {},
|
2022-06-18 07:52:34 -07:00
|
|
|
keyUp() {},
|
2023-07-13 15:47:03 -07:00
|
|
|
|
|
|
|
// need to override this to work with the loading slider
|
|
|
|
@action
|
|
|
|
handleShowUser() {
|
|
|
|
return;
|
|
|
|
},
|
2020-02-28 07:01:48 -08:00
|
|
|
});
|