[SSE] Refactoring TabColor
This commit is contained in:
parent
4f92a75911
commit
ad71560b8d
|
@ -71,7 +71,6 @@ const StatusbarController = inject('sheets', 'storeFocusObjects', 'users')(obser
|
||||||
sheets.setActiveWorksheet(index);
|
sheets.setActiveWorksheet(index);
|
||||||
Common.Notifications.trigger('sheet:active', index);
|
Common.Notifications.trigger('sheet:active', index);
|
||||||
}
|
}
|
||||||
onApiSheetsChanged();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const onApiHideTabContextMenu = () => {
|
const onApiHideTabContextMenu = () => {
|
||||||
|
@ -375,10 +374,11 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(observer(props =>
|
||||||
|
|
||||||
const onSetWorkSheetColor = (color) => {
|
const onSetWorkSheetColor = (color) => {
|
||||||
const api = Common.EditorApi.get();
|
const api = Common.EditorApi.get();
|
||||||
let arrIndex = [];
|
const active_index = api.asc_getActiveWorksheetIndex();
|
||||||
|
const arrIndex = [];
|
||||||
|
|
||||||
if (api) {
|
if (api) {
|
||||||
arrIndex.push(api.asc_getActiveWorksheetIndex());
|
arrIndex.push(active_index);
|
||||||
if (arrIndex) {
|
if (arrIndex) {
|
||||||
if(color === 'transparent') {
|
if(color === 'transparent') {
|
||||||
api.asc_setWorksheetTabColor(null, arrIndex);
|
api.asc_setWorksheetTabColor(null, arrIndex);
|
||||||
|
@ -392,6 +392,7 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(observer(props =>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
sheets.sheets[active_index].color = api.asc_getWorksheetTabColor(active_index);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -81,8 +81,7 @@ const PageCustomTabColor = inject("storePalette")(observer (props => {
|
||||||
|
|
||||||
const PageTabColor = inject("storePalette")(observer(props => {
|
const PageTabColor = inject("storePalette")(observer(props => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const {sheets} = props;
|
const {sheets, allSheets = sheets.sheets} = props;
|
||||||
const allSheets = sheets.sheets;
|
|
||||||
const storePalette = props.storePalette;
|
const storePalette = props.storePalette;
|
||||||
const customColors = storePalette.customColors;
|
const customColors = storePalette.customColors;
|
||||||
const activeIndex = sheets.activeWorksheet;
|
const activeIndex = sheets.activeWorksheet;
|
||||||
|
@ -96,7 +95,7 @@ const PageTabColor = inject("storePalette")(observer(props => {
|
||||||
sheets.changeTabColor('transparent');
|
sheets.changeTabColor('transparent');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, [allSheets])
|
}, [activeIndex]);
|
||||||
|
|
||||||
const changeColor = (color, effectId, effectValue) => {
|
const changeColor = (color, effectId, effectValue) => {
|
||||||
if (color !== 'empty') {
|
if (color !== 'empty') {
|
||||||
|
|
Loading…
Reference in a new issue