shoshber
(Shoshana Berleant)
Março 26, 2018, 8:30pm
1
I need to modify a javascript controller (create-account). If I were writing it from scratch, I’d add a mixin called something like (FooValidation), the same way the mixins PasswordValidation and UsernameValidation are applied (discourse/app/assets/javascripts/discourse/controllers/create-account.js.es6 at f03b6bd8c925163b41b9e33b39484d102dbaee44 · discourse/discourse · GitHub ). I can’t figure out how, though.
I could just add the relevant properties/methods to the create account controller using PluginApi.modifyClass, but that doesn’t feel right, especially seeing as I’ll want to reuse the mixin.
What’s the best way to achieve this?
Osama
Março 26, 2018, 9:57pm
2
I believe the modifyClass method accepts a mixin as an argument, so I’d try something like this:
api.modifyClass("controller:create-account", FooValidation);
shoshber
(Shoshana Berleant)
Março 27, 2018, 8:11pm
3
Ah you’re right, modifyClass calls Ember’s reopen, which can take mixins as an argument. I couldn’t get it to work at first but I got it! Thanks!
Dev_Work
(Aleksandr)
Dezembro 17, 2019, 8:32pm
4
Você pode compartilhar algum código de exemplo?
merefield
(Robert)
Dezembro 17, 2019, 10:03pm
5
Faço isso em Pré-visualizações da Lista de Tópicos: https://github.com/paviliondev/discourse-topic-previews/blob/master/assets/javascripts/discourse/initializers/preview-edits.js.es6
Exemplo específico: api.modifyClass('component:topic-list', Settings);
Fiz isso para extrair código compartilhado que, caso contrário, seria repetido e quase uma cópia e colagem.