mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Initial in-app survey implementation Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Add surveyId fetching and store integration Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Add empty line Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Fix typos Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Use async version of machineId + refactoring Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Update preferences hint text Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> Co-authored-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
22 lines
688 B
TypeScript
22 lines
688 B
TypeScript
import { LensRendererExtension } from "@k8slens/extensions";
|
|
import { survey } from "./src/survey";
|
|
import { SurveyPreferenceHint, SurveyPreferenceInput } from "./src/survey-preference";
|
|
import { surveyPreferencesStore } from "./src/survey-preferences-store";
|
|
import React from "react";
|
|
|
|
export default class SurveyRendererExtension extends LensRendererExtension {
|
|
appPreferences = [
|
|
{
|
|
title: "In-App Surveys",
|
|
components: {
|
|
Hint: () => <SurveyPreferenceHint/>,
|
|
Input: () => <SurveyPreferenceInput survey={surveyPreferencesStore}/>
|
|
}
|
|
}
|
|
];
|
|
async onActivate() {
|
|
await surveyPreferencesStore.loadExtension(this);
|
|
survey.start();
|
|
}
|
|
}
|